From 99d848b394aceb251f6aca2887c779d9a9dd19ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zo=C3=AB?= Date: Sun, 10 Jul 2022 16:45:51 -0700 Subject: [PATCH 001/136] UX tweaks to biome config --- .../java/com/dfsek/terra/mod/ModPlatform.java | 3 +-- .../terra/mod/config/SpawnGroupTemplate.java | 18 ------------------ .../mod/config/SpawnSettingsTemplate.java | 7 ++++++- .../terra/mod/config/SpawnTypeConfig.java | 8 +++++--- 4 files changed, 12 insertions(+), 24 deletions(-) delete mode 100644 platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnGroupTemplate.java diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/ModPlatform.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/ModPlatform.java index 161bdf33c..54d3b0bb6 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/ModPlatform.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/ModPlatform.java @@ -50,7 +50,6 @@ import com.dfsek.terra.mod.config.ProtoPlatformBiome; import com.dfsek.terra.mod.config.SoundEventTemplate; import com.dfsek.terra.mod.config.SpawnCostConfig; import com.dfsek.terra.mod.config.SpawnEntryTemplate; -import com.dfsek.terra.mod.config.SpawnGroupTemplate; import com.dfsek.terra.mod.config.SpawnSettingsTemplate; import com.dfsek.terra.mod.config.SpawnTypeConfig; import com.dfsek.terra.mod.config.VillagerTypeTemplate; @@ -88,6 +87,7 @@ public abstract class ModPlatform extends AbstractPlatform { .registerLoader(GrassColorModifier.class, (type, o, loader, depthTracker) -> TemperatureModifier.valueOf(((String) o).toUpperCase( Locale.ROOT))) + .registerLoader(SpawnGroup.class,(type, o, loader, depthTracker) -> SpawnGroup.valueOf((String) o)) .registerLoader(BiomeParticleConfig.class, BiomeParticleConfigTemplate::new) .registerLoader(SoundEvent.class, SoundEventTemplate::new) .registerLoader(BiomeMoodSound.class, BiomeMoodSoundTemplate::new) @@ -96,7 +96,6 @@ public abstract class ModPlatform extends AbstractPlatform { .registerLoader(EntityType.class, EntityTypeTemplate::new) .registerLoader(SpawnCostConfig.class, SpawnCostConfig::new) .registerLoader(SpawnEntry.class, SpawnEntryTemplate::new) - .registerLoader(SpawnGroup.class, SpawnGroupTemplate::new) .registerLoader(SpawnTypeConfig.class, SpawnTypeConfig::new) .registerLoader(SpawnSettings.class, SpawnSettingsTemplate::new) .registerLoader(VillagerType.class, VillagerTypeTemplate::new); diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnGroupTemplate.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnGroupTemplate.java deleted file mode 100644 index e6a9143d1..000000000 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnGroupTemplate.java +++ /dev/null @@ -1,18 +0,0 @@ -package com.dfsek.terra.mod.config; - -import com.dfsek.tectonic.api.config.template.annotations.Default; -import com.dfsek.tectonic.api.config.template.annotations.Value; -import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; -import net.minecraft.entity.SpawnGroup; - - -public class SpawnGroupTemplate implements ObjectTemplate { - @Value("group") - @Default - private String group = null; - - @Override - public SpawnGroup get() { - return SpawnGroup.valueOf(group); - } -} diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java index 9b72e579c..dbb8dd037 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java @@ -3,7 +3,9 @@ package com.dfsek.terra.mod.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; +import net.minecraft.entity.SpawnGroup; import net.minecraft.world.biome.SpawnSettings; +import net.minecraft.world.biome.SpawnSettings.SpawnEntry; import java.util.List; @@ -25,7 +27,10 @@ public class SpawnSettingsTemplate implements ObjectTemplate { public SpawnSettings get() { SpawnSettings.Builder builder = new SpawnSettings.Builder(); for(SpawnTypeConfig spawn : spawns) { - builder.spawn(spawn.getGroup(), spawn.getEntry()); + SpawnGroup group = spawn.getGroup(); + for (SpawnEntry entry : spawn.getEntry()) { + builder.spawn(group, entry); + } } for(SpawnCostConfig cost : costs) { builder.spawnCost(cost.getType(), cost.getMass(), cost.getGravity()); diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnTypeConfig.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnTypeConfig.java index 0f1eff6b5..02ee2bf60 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnTypeConfig.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnTypeConfig.java @@ -6,21 +6,23 @@ import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; import net.minecraft.entity.SpawnGroup; import net.minecraft.world.biome.SpawnSettings.SpawnEntry; +import java.util.List; + public class SpawnTypeConfig implements ObjectTemplate { @Value("group") @Default private SpawnGroup group = null; - @Value("entry") + @Value("entries") @Default - private SpawnEntry entry = null; + private List entry = null; public SpawnGroup getGroup() { return group; } - public SpawnEntry getEntry() { + public List getEntry() { return entry; } From e9b145b6c3942cf294f94fad4d742eaa3e42b05d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zo=C3=AB=20Gidiere?= Date: Sat, 30 Sep 2023 11:50:15 -0600 Subject: [PATCH 002/136] unbreaking via deprecation --- .../terra/mod/config/SpawnSettingsTemplate.java | 8 ++++++-- .../dfsek/terra/mod/config/SpawnTypeConfig.java | 15 +++++++++++++-- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java index dbb8dd037..4a81deecd 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java @@ -28,8 +28,12 @@ public class SpawnSettingsTemplate implements ObjectTemplate { SpawnSettings.Builder builder = new SpawnSettings.Builder(); for(SpawnTypeConfig spawn : spawns) { SpawnGroup group = spawn.getGroup(); - for (SpawnEntry entry : spawn.getEntry()) { - builder.spawn(group, entry); + if (spawn.getEntries() != null) { + for (SpawnEntry entry : spawn.getEntries()) { + builder.spawn(group, entry); + } + } else if (spawn.getEntry() != null) { + builder.spawn(group, spawn.getEntry()); } } for(SpawnCostConfig cost : costs) { diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnTypeConfig.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnTypeConfig.java index 02ee2bf60..d2470dad6 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnTypeConfig.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnTypeConfig.java @@ -16,13 +16,24 @@ public class SpawnTypeConfig implements ObjectTemplate { @Value("entries") @Default - private List entry = null; + private List entries = null; + + + @Value("entry") + @Default + @Deprecated + private SpawnEntry entry = null; public SpawnGroup getGroup() { return group; } - public List getEntry() { + public List getEntries() { + return entries; + } + + @Deprecated + public SpawnEntry getEntry() { return entry; } From 70b1c3bbf3b5b638b1fb10600c6c23a5ae33b564 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zo=C3=AB=20Gidiere?= Date: Sat, 30 Sep 2023 12:06:21 -0600 Subject: [PATCH 003/136] warning --- .../dfsek/terra/mod/config/SpawnSettingsTemplate.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java index 4a81deecd..321a2312a 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java @@ -6,11 +6,16 @@ import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; import net.minecraft.entity.SpawnGroup; import net.minecraft.world.biome.SpawnSettings; import net.minecraft.world.biome.SpawnSettings.SpawnEntry; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import java.util.List; public class SpawnSettingsTemplate implements ObjectTemplate { + + private static final Logger logger = LoggerFactory.getLogger(SpawnTypeConfig.class); + private static boolean used = false; @Value("spawns") @Default private List spawns = null; @@ -33,6 +38,11 @@ public class SpawnSettingsTemplate implements ObjectTemplate { builder.spawn(group, entry); } } else if (spawn.getEntry() != null) { + if(!used) { + logger.warn("The entry sub-field of spawns is deprecated. " + + "It is recommended to use the entries sub-field instead "); + used = true; + } builder.spawn(group, spawn.getEntry()); } } From f86d4bae329b58ece5c9bdd0c3a2e19fd2c8d6da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zo=C3=AB=20Gidiere?= Date: Fri, 17 Nov 2023 13:22:10 -0700 Subject: [PATCH 004/136] remove old bukkit versions --- platforms/bukkit/build.gradle.kts | 5 - .../bukkit/nms/v1_18_R2/build.gradle.kts | 17 - .../bukkit/nms/v1_18_R2/AwfulBukkitHacks.java | 115 ------- .../bukkit/nms/v1_18_R2/NMSBiomeInfo.java | 10 - .../bukkit/nms/v1_18_R2/NMSBiomeInjector.java | 79 ----- .../bukkit/nms/v1_18_R2/NMSBiomeProvider.java | 49 --- .../v1_18_R2/NMSChunkGeneratorDelegate.java | 254 --------------- .../bukkit/nms/v1_18_R2/NMSInitializer.java | 15 - .../nms/v1_18_R2/NMSInjectListener.java | 53 ---- .../nms/v1_18_R2/NMSWorldProperties.java | 36 --- .../terra/bukkit/nms/v1_18_R2/Reflection.java | 38 --- .../terra/bukkit/nms/v1_18_R2/Registries.java | 30 -- .../bukkit/nms/v1_19_R1/build.gradle.kts | 17 - .../bukkit/nms/v1_19_R1/AwfulBukkitHacks.java | 116 ------- .../bukkit/nms/v1_19_R1/NMSBiomeInfo.java | 10 - .../bukkit/nms/v1_19_R1/NMSBiomeInjector.java | 79 ----- .../bukkit/nms/v1_19_R1/NMSBiomeProvider.java | 42 --- .../v1_19_R1/NMSChunkGeneratorDelegate.java | 291 ------------------ .../bukkit/nms/v1_19_R1/NMSInitializer.java | 15 - .../nms/v1_19_R1/NMSInjectListener.java | 51 --- .../nms/v1_19_R1/NMSWorldProperties.java | 36 --- .../terra/bukkit/nms/v1_19_R1/Reflection.java | 39 --- .../terra/bukkit/nms/v1_19_R1/Registries.java | 30 -- .../bukkit/nms/v1_19_R2/build.gradle.kts | 17 - .../bukkit/nms/v1_19_R2/AwfulBukkitHacks.java | 100 ------ .../bukkit/nms/v1_19_R2/NMSBiomeInfo.java | 10 - .../bukkit/nms/v1_19_R2/NMSBiomeInjector.java | 79 ----- .../bukkit/nms/v1_19_R2/NMSBiomeProvider.java | 42 --- .../v1_19_R2/NMSChunkGeneratorDelegate.java | 174 ----------- .../bukkit/nms/v1_19_R2/NMSInitializer.java | 15 - .../nms/v1_19_R2/NMSInjectListener.java | 48 --- .../nms/v1_19_R2/NMSWorldProperties.java | 36 --- .../terra/bukkit/nms/v1_19_R2/Reflection.java | 52 ---- .../bukkit/nms/v1_19_R2/RegistryFetcher.java | 24 -- .../bukkit/nms/v1_19_R3/build.gradle.kts | 17 - .../bukkit/nms/v1_19_R3/AwfulBukkitHacks.java | 101 ------ .../bukkit/nms/v1_19_R3/NMSBiomeInfo.java | 10 - .../bukkit/nms/v1_19_R3/NMSBiomeInjector.java | 78 ----- .../bukkit/nms/v1_19_R3/NMSBiomeProvider.java | 49 --- .../v1_19_R3/NMSChunkGeneratorDelegate.java | 171 ---------- .../bukkit/nms/v1_19_R3/NMSInitializer.java | 15 - .../nms/v1_19_R3/NMSInjectListener.java | 48 --- .../nms/v1_19_R3/NMSWorldProperties.java | 36 --- .../terra/bukkit/nms/v1_19_R3/Reflection.java | 52 ---- .../bukkit/nms/v1_19_R3/RegistryFetcher.java | 24 -- .../bukkit/nms/v1_20_R1/build.gradle.kts | 17 - .../bukkit/nms/v1_20_R1/AwfulBukkitHacks.java | 101 ------ .../bukkit/nms/v1_20_R1/NMSBiomeInfo.java | 10 - .../bukkit/nms/v1_20_R1/NMSBiomeInjector.java | 78 ----- .../bukkit/nms/v1_20_R1/NMSBiomeProvider.java | 49 --- .../v1_20_R1/NMSChunkGeneratorDelegate.java | 171 ---------- .../bukkit/nms/v1_20_R1/NMSInitializer.java | 15 - .../nms/v1_20_R1/NMSInjectListener.java | 48 --- .../nms/v1_20_R1/NMSWorldProperties.java | 36 --- .../terra/bukkit/nms/v1_20_R1/Reflection.java | 52 ---- .../bukkit/nms/v1_20_R1/RegistryFetcher.java | 24 -- 56 files changed, 3226 deletions(-) delete mode 100644 platforms/bukkit/nms/v1_18_R2/build.gradle.kts delete mode 100644 platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/AwfulBukkitHacks.java delete mode 100644 platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSBiomeInfo.java delete mode 100644 platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSBiomeInjector.java delete mode 100644 platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSBiomeProvider.java delete mode 100644 platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSChunkGeneratorDelegate.java delete mode 100644 platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSInitializer.java delete mode 100644 platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSInjectListener.java delete mode 100644 platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSWorldProperties.java delete mode 100644 platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/Reflection.java delete mode 100644 platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/Registries.java delete mode 100644 platforms/bukkit/nms/v1_19_R1/build.gradle.kts delete mode 100644 platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/AwfulBukkitHacks.java delete mode 100644 platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSBiomeInfo.java delete mode 100644 platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSBiomeInjector.java delete mode 100644 platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSBiomeProvider.java delete mode 100644 platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSChunkGeneratorDelegate.java delete mode 100644 platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSInitializer.java delete mode 100644 platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSInjectListener.java delete mode 100644 platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSWorldProperties.java delete mode 100644 platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/Reflection.java delete mode 100644 platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/Registries.java delete mode 100644 platforms/bukkit/nms/v1_19_R2/build.gradle.kts delete mode 100644 platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/AwfulBukkitHacks.java delete mode 100644 platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSBiomeInfo.java delete mode 100644 platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSBiomeInjector.java delete mode 100644 platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSBiomeProvider.java delete mode 100644 platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSChunkGeneratorDelegate.java delete mode 100644 platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSInitializer.java delete mode 100644 platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSInjectListener.java delete mode 100644 platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSWorldProperties.java delete mode 100644 platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/Reflection.java delete mode 100644 platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/RegistryFetcher.java delete mode 100644 platforms/bukkit/nms/v1_19_R3/build.gradle.kts delete mode 100644 platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/AwfulBukkitHacks.java delete mode 100644 platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSBiomeInfo.java delete mode 100644 platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSBiomeInjector.java delete mode 100644 platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSBiomeProvider.java delete mode 100644 platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSChunkGeneratorDelegate.java delete mode 100644 platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSInitializer.java delete mode 100644 platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSInjectListener.java delete mode 100644 platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSWorldProperties.java delete mode 100644 platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/Reflection.java delete mode 100644 platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/RegistryFetcher.java delete mode 100644 platforms/bukkit/nms/v1_20_R1/build.gradle.kts delete mode 100644 platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/AwfulBukkitHacks.java delete mode 100644 platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSBiomeInfo.java delete mode 100644 platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSBiomeInjector.java delete mode 100644 platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSBiomeProvider.java delete mode 100644 platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSChunkGeneratorDelegate.java delete mode 100644 platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSInitializer.java delete mode 100644 platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSInjectListener.java delete mode 100644 platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSWorldProperties.java delete mode 100644 platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/Reflection.java delete mode 100644 platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/RegistryFetcher.java diff --git a/platforms/bukkit/build.gradle.kts b/platforms/bukkit/build.gradle.kts index 89df67efc..68f981e1e 100644 --- a/platforms/bukkit/build.gradle.kts +++ b/platforms/bukkit/build.gradle.kts @@ -10,11 +10,6 @@ repositories { dependencies { shaded(project(":platforms:bukkit:common")) - shaded(project(":platforms:bukkit:nms:v1_18_R2", configuration = "reobf")) - shaded(project(":platforms:bukkit:nms:v1_19_R1", configuration = "reobf")) - shaded(project(":platforms:bukkit:nms:v1_19_R2", configuration = "reobf")) - shaded(project(":platforms:bukkit:nms:v1_19_R3", configuration = "reobf")) - shaded(project(":platforms:bukkit:nms:v1_20_R1", configuration = "reobf")) shaded(project(":platforms:bukkit:nms:v1_20_R2", configuration = "reobf")) shaded("xyz.jpenilla", "reflection-remapper", Versions.Bukkit.reflectionRemapper) } diff --git a/platforms/bukkit/nms/v1_18_R2/build.gradle.kts b/platforms/bukkit/nms/v1_18_R2/build.gradle.kts deleted file mode 100644 index e3fc99195..000000000 --- a/platforms/bukkit/nms/v1_18_R2/build.gradle.kts +++ /dev/null @@ -1,17 +0,0 @@ -apply(plugin = "io.papermc.paperweight.userdev") - -repositories { - maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") -} - -dependencies { - api(project(":platforms:bukkit:common")) - paperDevBundle("1.18.2-R0.1-SNAPSHOT") - implementation("xyz.jpenilla", "reflection-remapper", Versions.Bukkit.reflectionRemapper) -} - -tasks { - assemble { - dependsOn("reobfJar") - } -} \ No newline at end of file diff --git a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/AwfulBukkitHacks.java b/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/AwfulBukkitHacks.java deleted file mode 100644 index bbfae8b2c..000000000 --- a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/AwfulBukkitHacks.java +++ /dev/null @@ -1,115 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_18_R2; - -import com.google.common.collect.ImmutableMap; -import com.mojang.serialization.Lifecycle; -import net.minecraft.core.Holder; -import net.minecraft.core.MappedRegistry; -import net.minecraft.core.Registry; -import net.minecraft.core.WritableRegistry; -import net.minecraft.data.BuiltinRegistries; -import net.minecraft.resources.ResourceKey; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.tags.TagKey; -import net.minecraft.world.level.biome.Biome; -import org.bukkit.NamespacedKey; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import com.dfsek.terra.bukkit.world.BukkitPlatformBiome; -import com.dfsek.terra.registry.master.ConfigRegistry; - - -public class AwfulBukkitHacks { - private static final Logger LOGGER = LoggerFactory.getLogger(NMSBiomeInjector.class); - private static final Map> terraBiomeMap = new HashMap<>(); - - - public static void registerBiomes(ConfigRegistry configRegistry) { - try { - LOGGER.info("Hacking biome registry..."); - WritableRegistry biomeRegistry = (WritableRegistry) Registries.biomeRegistry(); - - Reflection.MAPPED_REGISTRY.setFrozen((MappedRegistry) biomeRegistry, false); - - configRegistry.forEach(pack -> pack.getRegistry(com.dfsek.terra.api.world.biome.Biome.class).forEach((key, biome) -> { - try { - BukkitPlatformBiome platformBiome = (BukkitPlatformBiome) biome.getPlatformBiome(); - NamespacedKey vanillaBukkitKey = platformBiome.getHandle().getKey(); - ResourceLocation vanillaMinecraftKey = new ResourceLocation(vanillaBukkitKey.getNamespace(), vanillaBukkitKey.getKey()); - Biome platform = NMSBiomeInjector.createBiome( - biome, - biomeRegistry.get(vanillaMinecraftKey) // get - ); - - ResourceKey delegateKey = ResourceKey.create(Registry.BIOME_REGISTRY, new ResourceLocation("terra", - NMSBiomeInjector.createBiomeID( - pack, key))); - - BuiltinRegistries.register(BuiltinRegistries.BIOME, delegateKey, platform); - biomeRegistry.register(delegateKey, platform, Lifecycle.stable()); - platformBiome.getContext().put(new NMSBiomeInfo(delegateKey)); - - terraBiomeMap.computeIfAbsent(vanillaMinecraftKey, i -> new ArrayList<>()).add(delegateKey.location()); - - LOGGER.debug("Registered biome: " + delegateKey); - } catch(NoSuchFieldException | SecurityException | IllegalArgumentException | IllegalAccessException e) { - throw new RuntimeException(e); - } - })); - - Reflection.MAPPED_REGISTRY.setFrozen((MappedRegistry) biomeRegistry, true); // freeze registry again :) - - LOGGER.info("Doing tag garbage...."); - Map, List>> collect = biomeRegistry - .getTags() // streamKeysAndEntries - .collect(HashMap::new, - (map, pair) -> - map.put(pair.getFirst(), new ArrayList<>(pair.getSecond().stream().toList())), - HashMap::putAll); - - terraBiomeMap - .forEach((vb, terraBiomes) -> - NMSBiomeInjector.getEntry(biomeRegistry, vb) - .ifPresentOrElse( - vanilla -> terraBiomes - .forEach(tb -> NMSBiomeInjector.getEntry(biomeRegistry, tb) - .ifPresentOrElse( - terra -> { - LOGGER.debug( - vanilla.unwrapKey() - .orElseThrow() - .location() + - " (vanilla for " + - terra.unwrapKey() - .orElseThrow() - .location() + - ": " + - vanilla.tags() - .toList()); - - vanilla.tags() - .forEach( - tag -> collect - .computeIfAbsent( - tag, - t -> new ArrayList<>()) - .add(terra)); - }, - () -> LOGGER.error( - "No such biome: {}", - tb))), - () -> LOGGER.error("No vanilla biome: {}", vb))); - - biomeRegistry.resetTags(); // clearTags - biomeRegistry.bindTags(ImmutableMap.copyOf(collect)); // populateTags - - } catch(SecurityException | IllegalArgumentException exception) { - throw new RuntimeException(exception); - } - } -} diff --git a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSBiomeInfo.java b/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSBiomeInfo.java deleted file mode 100644 index 7e04ef178..000000000 --- a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSBiomeInfo.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_18_R2; - -import net.minecraft.resources.ResourceKey; -import net.minecraft.world.level.biome.Biome; - -import com.dfsek.terra.api.properties.Properties; - - -public record NMSBiomeInfo(ResourceKey biomeKey) implements Properties { -} diff --git a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSBiomeInjector.java b/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSBiomeInjector.java deleted file mode 100644 index f56c32b5b..000000000 --- a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSBiomeInjector.java +++ /dev/null @@ -1,79 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_18_R2; - -import net.minecraft.core.Holder; -import net.minecraft.core.Registry; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.biome.BiomeSpecialEffects; - -import java.util.Locale; -import java.util.Objects; -import java.util.Optional; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.bukkit.config.VanillaBiomeProperties; - - -public class NMSBiomeInjector { - - public static Optional> getEntry(Registry registry, ResourceLocation identifier) { - return registry.getOptional(identifier) - .flatMap(registry::getResourceKey) - .map(registry::getOrCreateHolder); - } - - public static Biome createBiome(com.dfsek.terra.api.world.biome.Biome biome, Biome vanilla) - throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException { - Biome.BiomeBuilder builder = new Biome.BiomeBuilder(); // Builder - - - builder.biomeCategory(Reflection.BIOME.getBiomeCategory(vanilla)) - .precipitation(vanilla.getPrecipitation()) // getPrecipitation - .mobSpawnSettings(vanilla.getMobSettings()) - .generationSettings(vanilla.getGenerationSettings()) - .temperature(vanilla.getBaseTemperature()) - .downfall(vanilla.getDownfall()); - - - BiomeSpecialEffects.Builder effects = new BiomeSpecialEffects.Builder(); - - effects.grassColorModifier(vanilla.getSpecialEffects().getGrassColorModifier()); - - VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); - - effects.fogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFogColor(), vanilla.getFogColor())) - - .waterColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterColor(), vanilla.getWaterColor())) - - .waterFogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterFogColor(), vanilla.getWaterFogColor())) - - .skyColor(Objects.requireNonNullElse(vanillaBiomeProperties.getSkyColor(), vanilla.getSkyColor())); - - if(vanillaBiomeProperties.getFoliageColor() == null) { - vanilla.getSpecialEffects().getFoliageColorOverride().ifPresent(effects::foliageColorOverride); - } else { - effects.foliageColorOverride(vanillaBiomeProperties.getFoliageColor()); - } - - if(vanillaBiomeProperties.getGrassColor() == null) { - vanilla.getSpecialEffects().getGrassColorOverride().ifPresent(effects::grassColorOverride); - } else { - effects.grassColorOverride(vanillaBiomeProperties.getGrassColor()); - } - - vanilla.getAmbientLoop().ifPresent(effects::ambientLoopSound); - vanilla.getAmbientAdditions().ifPresent(effects::ambientAdditionsSound); - vanilla.getAmbientMood().ifPresent(effects::ambientMoodSound); - vanilla.getBackgroundMusic().ifPresent(effects::backgroundMusic); - vanilla.getAmbientParticle().ifPresent(effects::ambientParticle); - - builder.specialEffects(effects.build()); - - return builder.build(); // build() - } - - public static String createBiomeID(ConfigPack pack, com.dfsek.terra.api.registry.key.RegistryKey biomeID) { - return pack.getID() - .toLowerCase() + "/" + biomeID.getNamespace().toLowerCase(Locale.ROOT) + "/" + biomeID.getID().toLowerCase(Locale.ROOT); - } -} diff --git a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSBiomeProvider.java b/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSBiomeProvider.java deleted file mode 100644 index 9fb99f13f..000000000 --- a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSBiomeProvider.java +++ /dev/null @@ -1,49 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_18_R2; - -import com.mojang.serialization.Codec; -import net.minecraft.core.Holder; -import net.minecraft.core.Registry; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.biome.BiomeSource; -import net.minecraft.world.level.biome.Climate.Sampler; -import org.jetbrains.annotations.NotNull; - -import com.dfsek.terra.api.world.biome.generation.BiomeProvider; -import com.dfsek.terra.bukkit.world.BukkitPlatformBiome; - - -public class NMSBiomeProvider extends BiomeSource { - private final BiomeProvider delegate; - private final BiomeSource vanilla; - private final long seed; - private final Registry biomeRegistry = Registries.biomeRegistry(); - - public NMSBiomeProvider(BiomeProvider delegate, BiomeSource vanilla, long seed) { - super(delegate.stream() - .map(biome -> Registries.biomeRegistry() - .getOrCreateHolder(((BukkitPlatformBiome) biome.getPlatformBiome()).getContext() - .get(NMSBiomeInfo.class) - .biomeKey()))); - this.delegate = delegate; - this.vanilla = vanilla; - this.seed = seed; - } - - @Override - protected Codec codec() { - return BiomeSource.CODEC; - } - - @Override - public @NotNull BiomeSource withSeed(long seed) { - return new NMSBiomeProvider(delegate, vanilla, seed); - } - - @Override - public @NotNull Holder getNoiseBiome(int x, int y, int z, @NotNull Sampler sampler) { - return biomeRegistry.getOrCreateHolder(((BukkitPlatformBiome) delegate.getBiome(x << 2, y << 2, z << 2, seed).getPlatformBiome()) - .getContext() - .get(NMSBiomeInfo.class) - .biomeKey()); - } -} diff --git a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSChunkGeneratorDelegate.java b/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSChunkGeneratorDelegate.java deleted file mode 100644 index 905867b62..000000000 --- a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSChunkGeneratorDelegate.java +++ /dev/null @@ -1,254 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_18_R2; - -import com.mojang.datafixers.util.Pair; -import com.mojang.serialization.Codec; -import it.unimi.dsi.fastutil.objects.Object2ObjectArrayMap; -import net.minecraft.core.BlockPos; -import net.minecraft.core.Holder; -import net.minecraft.core.SectionPos; -import net.minecraft.server.level.WorldGenRegion; -import net.minecraft.world.level.ChunkPos; -import net.minecraft.world.level.LevelHeightAccessor; -import net.minecraft.world.level.NoiseColumn; -import net.minecraft.world.level.StructureFeatureManager; -import net.minecraft.world.level.WorldGenLevel; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.biome.BiomeManager; -import net.minecraft.world.level.biome.Climate; -import net.minecraft.world.level.biome.Climate.Sampler; -import net.minecraft.world.level.chunk.ChunkAccess; -import net.minecraft.world.level.chunk.ChunkGenerator; -import net.minecraft.world.level.levelgen.GenerationStep; -import net.minecraft.world.level.levelgen.Heightmap; -import net.minecraft.world.level.levelgen.blending.Blender; -import net.minecraft.world.level.levelgen.structure.StructureSet; -import net.minecraft.world.level.levelgen.structure.placement.ConcentricRingsStructurePlacement; -import net.minecraft.world.level.levelgen.structure.placement.StructurePlacement; -import org.bukkit.craftbukkit.v1_18_R2.block.data.CraftBlockData; -import org.jetbrains.annotations.NotNull; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import javax.annotation.Nullable; -import java.util.ArrayList; -import java.util.List; -import java.util.Map; -import java.util.Objects; -import java.util.Optional; -import java.util.Random; -import java.util.Set; -import java.util.concurrent.CompletableFuture; -import java.util.concurrent.Executor; -import java.util.stream.Collectors; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.api.util.MathUtil; -import com.dfsek.terra.api.util.generic.Lazy; -import com.dfsek.terra.api.world.biome.generation.BiomeProvider; -import com.dfsek.terra.api.world.info.WorldProperties; - - -public class NMSChunkGeneratorDelegate extends ChunkGenerator { - private static final Logger LOGGER = LoggerFactory.getLogger(NMSChunkGeneratorDelegate.class); - private static final Lazy> EMPTY = Lazy.lazy(List::of); - private final NMSBiomeProvider biomeSource; - private final com.dfsek.terra.api.world.chunk.generation.ChunkGenerator delegate; - private final ChunkGenerator vanilla; - private final ConfigPack pack; - private final long seed; - private final Map>> ringPositions = new Object2ObjectArrayMap<>(); - private volatile boolean rings = false; - - public NMSChunkGeneratorDelegate(ChunkGenerator vanilla, ConfigPack pack, NMSBiomeProvider biomeProvider, long seed) { - super(Registries.structureSet(), Optional.empty(), biomeProvider, biomeProvider, seed); - this.delegate = pack.getGeneratorProvider().newInstance(pack); - this.vanilla = vanilla; - this.biomeSource = biomeProvider; - this.pack = pack; - this.seed = seed; - } - - @Override - public void applyCarvers(@NotNull WorldGenRegion chunkRegion, long seed, @NotNull BiomeManager biomeAccess, - @NotNull StructureFeatureManager structureAccessor, - @NotNull ChunkAccess chunk, GenerationStep.@NotNull Carving generationStep) { - // no-op - } - - @Override - public void applyBiomeDecoration(@NotNull WorldGenLevel world, @NotNull ChunkAccess chunk, - @NotNull StructureFeatureManager structureAccessor) { - vanilla.applyBiomeDecoration(world, chunk, structureAccessor); - } - - @Override - public int getSeaLevel() { - return vanilla.getSeaLevel(); - } - - @Override - public @NotNull CompletableFuture fillFromNoise(@NotNull Executor executor, @NotNull Blender blender, - @NotNull StructureFeatureManager structureAccessor, - @NotNull ChunkAccess chunk) { - return vanilla.fillFromNoise(executor, blender, structureAccessor, chunk); - } - - @Override - public void buildSurface(@NotNull WorldGenRegion region, @NotNull StructureFeatureManager structures, @NotNull ChunkAccess chunk) { - // no-op - } - - @Override - protected @NotNull Codec codec() { - return ChunkGenerator.CODEC; - } - - @Override - public @NotNull NoiseColumn getBaseColumn(int x, int z, LevelHeightAccessor height) { - /* - BlockState[] array = new BlockState[height.getHeight()]; - WorldProperties properties = new NMSWorldProperties(seed, height); - BiomeProvider biomeProvider = pack.getBiomeProvider().caching(properties); - for(int y = properties.getMaxHeight() - 1; y >= properties.getMinHeight(); y--) { - array[y - properties.getMinHeight()] = ((CraftBlockData) delegate.getBlock(properties, x, y, z, biomeProvider) - .getHandle()).getState(); - } - return new NoiseColumn(getMinY(), array); - */ - return vanilla.getBaseColumn(x, z, height); - } - - @Override // withSeed - public @NotNull ChunkGenerator withSeed(long seed) { - return new NMSChunkGeneratorDelegate(vanilla, pack, biomeSource, seed); - } - - @Override - public void spawnOriginalMobs(@NotNull WorldGenRegion regionlimitedworldaccess) { - vanilla.spawnOriginalMobs(regionlimitedworldaccess); - } - - @Override - public int getGenDepth() { - return vanilla.getGenDepth(); - } - - @Override - public @NotNull Sampler climateSampler() { - return Climate.empty(); - } - - @Override - public int getMinY() { - return vanilla.getMinY(); - } - - @Override - public int getBaseHeight(int x, int z, Heightmap.@NotNull Types heightmap, @NotNull LevelHeightAccessor world) { - WorldProperties properties = new NMSWorldProperties(seed, world); - int y = properties.getMaxHeight(); - BiomeProvider biomeProvider = pack.getBiomeProvider(); - while(y >= getMinY() && !heightmap.isOpaque().test( - ((CraftBlockData) delegate.getBlock(properties, x, y - 1, z, biomeProvider).getHandle()).getState())) { - y--; - } - return y; - } - - @Nullable - @Override - public List getRingPositionsFor(@NotNull ConcentricRingsStructurePlacement concentricringsstructureplacement) { - ensureStructuresGenerated(); - return ringPositions.getOrDefault(concentricringsstructureplacement, EMPTY).value(); - } - - @Override - public synchronized void ensureStructuresGenerated() { - if(!this.rings) { - super.ensureStructuresGenerated(); - this.populateStrongholdData(); - this.rings = true; - } - } - - private void populateStrongholdData() { - LOGGER.info("Generating safe stronghold data. This may take up to a minute."); - Set> set = this.runtimeBiomeSource.possibleBiomes(); - possibleStructureSets().map(Holder::value).forEach((holder) -> { // we dont need the spigot crap because it doesnt touch concentric. - StructurePlacement structureplacement = holder.placement(); - if(structureplacement instanceof ConcentricRingsStructurePlacement concentricringsstructureplacement) { - if(holder.structures().stream().anyMatch((structureset_a1) -> structureset_a1.generatesInMatchingBiome(set::contains))) { - this.ringPositions.put(concentricringsstructureplacement, - Lazy.lazy(() -> this.generateRingPositions(holder, concentricringsstructureplacement))); - } - } - }); - } - - private List generateRingPositions(StructureSet holder, - ConcentricRingsStructurePlacement concentricringsstructureplacement) { // Spigot - if(concentricringsstructureplacement.count() == 0) { - return List.of(); - } - - List list = new ArrayList<>(); - Set> set = holder - .structures() - .stream() - .flatMap((structureset_a) -> structureset_a.structure().value().biomes().stream()) - .collect(Collectors.toSet()); - int i = concentricringsstructureplacement.distance(); - int j = concentricringsstructureplacement.count(); - int k = concentricringsstructureplacement.spread(); - Random random = new Random(); - - // Paper start - if(this.conf.strongholdSeed != null && this.structureSets.getResourceKey(holder).orElse(null) == - net.minecraft.world.level.levelgen.structure.BuiltinStructureSets.STRONGHOLDS) { - random.setSeed(this.conf.strongholdSeed); - } else { - // Paper end - random.setSeed(this.ringPlacementSeed); - } // Paper - double d0 = random.nextDouble() * 3.141592653589793D * 2.0D; - int l = 0; - int i1 = 0; - - for(int j1 = 0; j1 < j; ++j1) { - double d1 = (double) (4 * i + i * i1 * 6) + (random.nextDouble() - 0.5D) * (double) i * 2.5D; - int k1 = (int) Math.round(MathUtil.cos(d0) * d1); - int l1 = (int) Math.round(MathUtil.sin(d0) * d1); - int i2 = SectionPos.sectionToBlockCoord(k1, 8); - int j2 = SectionPos.sectionToBlockCoord(l1, 8); - - Objects.requireNonNull(set); - Pair> pair = this.biomeSource.findBiomeHorizontal(i2, 0, j2, 112, set::contains, random, - this.climateSampler()); - - if(pair != null) { - BlockPos blockposition = pair.getFirst(); - - k1 = SectionPos.blockToSectionCoord(blockposition.getX()); - l1 = SectionPos.blockToSectionCoord(blockposition.getZ()); - } - - list.add(new ChunkPos(k1, l1)); - d0 += 6.283185307179586D / (double) k; - ++l; - if(l == k) { - ++i1; - l = 0; - k += 2 * k / (i1 + 1); - k = Math.min(k, j - j1); - d0 += random.nextDouble() * 3.141592653589793D * 2.0D; - } - } - - return list; - } - - @Override - public void addDebugScreenInfo(@NotNull List arg0, @NotNull BlockPos arg1) { - - } -} diff --git a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSInitializer.java b/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSInitializer.java deleted file mode 100644 index f724b89f0..000000000 --- a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSInitializer.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_18_R2; - -import org.bukkit.Bukkit; - -import com.dfsek.terra.bukkit.PlatformImpl; -import com.dfsek.terra.bukkit.nms.Initializer; - - -public class NMSInitializer implements Initializer { - @Override - public void initialize(PlatformImpl platform) { - AwfulBukkitHacks.registerBiomes(platform.getRawConfigRegistry()); - Bukkit.getPluginManager().registerEvents(new NMSInjectListener(), platform.getPlugin()); - } -} diff --git a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSInjectListener.java b/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSInjectListener.java deleted file mode 100644 index 9e055524a..000000000 --- a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSInjectListener.java +++ /dev/null @@ -1,53 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_18_R2; - -import net.minecraft.server.level.ServerLevel; -import net.minecraft.world.level.chunk.ChunkGenerator; -import org.bukkit.World; -import org.bukkit.craftbukkit.v1_18_R2.CraftWorld; -import org.bukkit.event.EventHandler; -import org.bukkit.event.Listener; -import org.bukkit.event.world.WorldInitEvent; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.HashSet; -import java.util.Set; -import java.util.concurrent.locks.ReentrantLock; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.bukkit.generator.BukkitChunkGeneratorWrapper; - - -public class NMSInjectListener implements Listener { - private static final Logger LOGGER = LoggerFactory.getLogger(NMSInjectListener.class); - private static final Set INJECTED = new HashSet<>(); - private static final ReentrantLock INJECT_LOCK = new ReentrantLock(); - - @EventHandler - public void onWorldInit(WorldInitEvent event) { - if(!INJECTED.contains(event.getWorld()) && - event.getWorld().getGenerator() instanceof BukkitChunkGeneratorWrapper bukkitChunkGeneratorWrapper) { - INJECT_LOCK.lock(); - INJECTED.add(event.getWorld()); - LOGGER.info("Preparing to take over the world: {}", event.getWorld().getName()); - CraftWorld craftWorld = (CraftWorld) event.getWorld(); - ServerLevel serverWorld = craftWorld.getHandle(); - - ConfigPack pack = bukkitChunkGeneratorWrapper.getPack(); - - ChunkGenerator vanilla = serverWorld.getChunkSource().getGenerator(); - NMSBiomeProvider provider = new NMSBiomeProvider(pack.getBiomeProvider(), vanilla.getBiomeSource(), craftWorld.getSeed()); - NMSChunkGeneratorDelegate custom = new NMSChunkGeneratorDelegate(vanilla, pack, provider, craftWorld.getSeed()); - - custom.conf = vanilla.conf; // world config from Spigot - - serverWorld.getChunkSource().chunkMap.generator = custom; - - LOGGER.info("Successfully injected into world."); - - serverWorld.getChunkSource().chunkMap.generator.ensureStructuresGenerated(); // generate stronghold data now - - INJECT_LOCK.unlock(); - } - } -} diff --git a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSWorldProperties.java b/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSWorldProperties.java deleted file mode 100644 index 875dc0330..000000000 --- a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/NMSWorldProperties.java +++ /dev/null @@ -1,36 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_18_R2; - -import net.minecraft.world.level.LevelHeightAccessor; - -import com.dfsek.terra.api.world.info.WorldProperties; - - -public class NMSWorldProperties implements WorldProperties { - private final long seed; - private final LevelHeightAccessor height; - - public NMSWorldProperties(long seed, LevelHeightAccessor height) { - this.seed = seed; - this.height = height; - } - - @Override - public Object getHandle() { - return height; - } - - @Override - public long getSeed() { - return seed; - } - - @Override - public int getMaxHeight() { - return height.getMaxBuildHeight(); - } - - @Override - public int getMinHeight() { - return height.getMinBuildHeight(); - } -} diff --git a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/Reflection.java b/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/Reflection.java deleted file mode 100644 index c6e3351a1..000000000 --- a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/Reflection.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_18_R2; - -import net.minecraft.core.MappedRegistry; -import net.minecraft.world.level.biome.Biome; -import xyz.jpenilla.reflectionremapper.ReflectionRemapper; -import xyz.jpenilla.reflectionremapper.proxy.ReflectionProxyFactory; -import xyz.jpenilla.reflectionremapper.proxy.annotation.FieldGetter; -import xyz.jpenilla.reflectionremapper.proxy.annotation.FieldSetter; -import xyz.jpenilla.reflectionremapper.proxy.annotation.Proxies; - - -public class Reflection { - public static final MappedRegistryProxy MAPPED_REGISTRY; - public static final BiomeProxy BIOME; - - static { - ReflectionRemapper reflectionRemapper = ReflectionRemapper.forReobfMappingsInPaperJar(); - ReflectionProxyFactory reflectionProxyFactory = ReflectionProxyFactory.create(reflectionRemapper, - Reflection.class.getClassLoader()); - - MAPPED_REGISTRY = reflectionProxyFactory.reflectionProxy(MappedRegistryProxy.class); - BIOME = reflectionProxyFactory.reflectionProxy(BiomeProxy.class); - } - - - @Proxies(MappedRegistry.class) - public interface MappedRegistryProxy { - @FieldSetter("frozen") - void setFrozen(MappedRegistry instance, boolean frozen); - } - - - @Proxies(Biome.class) - public interface BiomeProxy { - @FieldGetter("biomeCategory") - Biome.BiomeCategory getBiomeCategory(Biome instance); - } -} diff --git a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/Registries.java b/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/Registries.java deleted file mode 100644 index 652d77cab..000000000 --- a/platforms/bukkit/nms/v1_18_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_18_R2/Registries.java +++ /dev/null @@ -1,30 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_18_R2; - -import net.minecraft.core.Registry; -import net.minecraft.resources.ResourceKey; -import net.minecraft.server.dedicated.DedicatedServer; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.levelgen.structure.StructureSet; -import org.bukkit.Bukkit; -import org.bukkit.craftbukkit.v1_18_R2.CraftServer; - - -public class Registries { - private static Registry getRegistry(ResourceKey> key) { - CraftServer craftserver = (CraftServer) Bukkit.getServer(); - DedicatedServer dedicatedserver = craftserver.getServer(); - return dedicatedserver - .registryAccess() - .registryOrThrow( // getRegistry - key - ); - } - - public static Registry biomeRegistry() { - return getRegistry(Registry.BIOME_REGISTRY); - } - - public static Registry structureSet() { - return getRegistry(Registry.STRUCTURE_SET_REGISTRY); - } -} diff --git a/platforms/bukkit/nms/v1_19_R1/build.gradle.kts b/platforms/bukkit/nms/v1_19_R1/build.gradle.kts deleted file mode 100644 index 9b301aa70..000000000 --- a/platforms/bukkit/nms/v1_19_R1/build.gradle.kts +++ /dev/null @@ -1,17 +0,0 @@ -apply(plugin = "io.papermc.paperweight.userdev") - -repositories { - maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") -} - -dependencies { - api(project(":platforms:bukkit:common")) - paperDevBundle("1.19-R0.1-SNAPSHOT") - implementation("xyz.jpenilla", "reflection-remapper", Versions.Bukkit.reflectionRemapper) -} - -tasks { - assemble { - dependsOn("reobfJar") - } -} diff --git a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/AwfulBukkitHacks.java b/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/AwfulBukkitHacks.java deleted file mode 100644 index 92506d834..000000000 --- a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/AwfulBukkitHacks.java +++ /dev/null @@ -1,116 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R1; - -import com.google.common.collect.ImmutableMap; -import com.mojang.serialization.Lifecycle; -import net.minecraft.core.Holder; -import net.minecraft.core.MappedRegistry; -import net.minecraft.core.Registry; -import net.minecraft.core.WritableRegistry; -import net.minecraft.data.BuiltinRegistries; -import net.minecraft.resources.ResourceKey; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.tags.TagKey; -import net.minecraft.world.level.biome.Biome; -import org.bukkit.NamespacedKey; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Objects; - -import com.dfsek.terra.bukkit.world.BukkitPlatformBiome; -import com.dfsek.terra.registry.master.ConfigRegistry; - - -public class AwfulBukkitHacks { - private static final Logger LOGGER = LoggerFactory.getLogger(AwfulBukkitHacks.class); - - private static final Map> terraBiomeMap = new HashMap<>(); - - public static void registerBiomes(ConfigRegistry configRegistry) { - try { - LOGGER.info("Hacking biome registry..."); - WritableRegistry biomeRegistry = (WritableRegistry) Registries.biomeRegistry(); - - Reflection.MAPPED_REGISTRY.setFrozen((MappedRegistry) biomeRegistry, false); - - configRegistry.forEach(pack -> pack.getRegistry(com.dfsek.terra.api.world.biome.Biome.class).forEach((key, biome) -> { - try { - BukkitPlatformBiome platformBiome = (BukkitPlatformBiome) biome.getPlatformBiome(); - NamespacedKey vanillaBukkitKey = platformBiome.getHandle().getKey(); - ResourceLocation vanillaMinecraftKey = new ResourceLocation(vanillaBukkitKey.getNamespace(), vanillaBukkitKey.getKey()); - Biome platform = NMSBiomeInjector.createBiome( - biome, - Objects.requireNonNull(biomeRegistry.get(vanillaMinecraftKey)) // get - ); - - ResourceKey delegateKey = ResourceKey.create(Registry.BIOME_REGISTRY, - new ResourceLocation("terra", - NMSBiomeInjector.createBiomeID(pack, key))); - - BuiltinRegistries.register(BuiltinRegistries.BIOME, delegateKey, platform); - biomeRegistry.register(delegateKey, platform, Lifecycle.stable()); - platformBiome.getContext().put(new NMSBiomeInfo(delegateKey)); - - terraBiomeMap.computeIfAbsent(vanillaMinecraftKey, i -> new ArrayList<>()).add(delegateKey.location()); - - LOGGER.debug("Registered biome: " + delegateKey); - } catch(NoSuchFieldException | SecurityException | IllegalArgumentException | IllegalAccessException e) { - throw new RuntimeException(e); - } - })); - - Reflection.MAPPED_REGISTRY.setFrozen((MappedRegistry) biomeRegistry, true); // freeze registry again :) - - LOGGER.info("Doing tag garbage...."); - Map, List>> collect = biomeRegistry - .getTags() // streamKeysAndEntries - .collect(HashMap::new, - (map, pair) -> - map.put(pair.getFirst(), new ArrayList<>(pair.getSecond().stream().toList())), - HashMap::putAll); - - terraBiomeMap - .forEach((vb, terraBiomes) -> - NMSBiomeInjector.getEntry(biomeRegistry, vb) - .ifPresentOrElse( - vanilla -> terraBiomes - .forEach(tb -> NMSBiomeInjector.getEntry(biomeRegistry, tb) - .ifPresentOrElse( - terra -> { - LOGGER.debug( - vanilla.unwrapKey() - .orElseThrow() - .location() + - " (vanilla for " + - terra.unwrapKey() - .orElseThrow() - .location() + - ": " + - vanilla.tags() - .toList()); - - vanilla.tags() - .forEach( - tag -> collect - .computeIfAbsent( - tag, - t -> new ArrayList<>()) - .add(terra)); - }, - () -> LOGGER.error( - "No such biome: {}", - tb))), - () -> LOGGER.error("No vanilla biome: {}", vb))); - - biomeRegistry.resetTags(); - biomeRegistry.bindTags(ImmutableMap.copyOf(collect)); - - } catch(SecurityException | IllegalArgumentException exception) { - throw new RuntimeException(exception); - } - } -} diff --git a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSBiomeInfo.java b/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSBiomeInfo.java deleted file mode 100644 index 02e67dc8d..000000000 --- a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSBiomeInfo.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R1; - -import com.dfsek.terra.api.properties.Properties; - -import net.minecraft.resources.ResourceKey; -import net.minecraft.world.level.biome.Biome; - - -public record NMSBiomeInfo(ResourceKey biomeKey) implements Properties { -} diff --git a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSBiomeInjector.java b/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSBiomeInjector.java deleted file mode 100644 index 39a66e468..000000000 --- a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSBiomeInjector.java +++ /dev/null @@ -1,79 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R1; - -import net.minecraft.core.Holder; -import net.minecraft.core.Registry; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.biome.BiomeSpecialEffects; - -import java.util.Locale; -import java.util.Objects; -import java.util.Optional; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.bukkit.config.VanillaBiomeProperties; - - -public class NMSBiomeInjector { - - public static Optional> getEntry(Registry registry, ResourceLocation identifier) { - return registry.getOptional(identifier) - .flatMap(registry::getResourceKey) - .map(registry::getOrCreateHolderOrThrow); - } - - public static Biome createBiome(com.dfsek.terra.api.world.biome.Biome biome, Biome vanilla) - throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException { - Biome.BiomeBuilder builder = new Biome.BiomeBuilder(); - - builder - .precipitation(vanilla.getPrecipitation()) - .downfall(vanilla.getDownfall()) - .temperature(vanilla.getBaseTemperature()) - .mobSpawnSettings(vanilla.getMobSettings()) - .generationSettings(vanilla.getGenerationSettings()); - - - BiomeSpecialEffects.Builder effects = new BiomeSpecialEffects.Builder(); - - effects.grassColorModifier(vanilla.getSpecialEffects().getGrassColorModifier()); - - VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); - - effects.fogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFogColor(), vanilla.getFogColor())) - - .waterColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterColor(), vanilla.getWaterColor())) - - .waterFogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterFogColor(), vanilla.getWaterFogColor())) - - .skyColor(Objects.requireNonNullElse(vanillaBiomeProperties.getSkyColor(), vanilla.getSkyColor())); - - if(vanillaBiomeProperties.getFoliageColor() == null) { - vanilla.getSpecialEffects().getFoliageColorOverride().ifPresent(effects::foliageColorOverride); - } else { - effects.foliageColorOverride(vanillaBiomeProperties.getFoliageColor()); - } - - if(vanillaBiomeProperties.getGrassColor() == null) { - vanilla.getSpecialEffects().getGrassColorOverride().ifPresent(effects::grassColorOverride); - } else { - // grass - effects.grassColorOverride(vanillaBiomeProperties.getGrassColor()); - } - - vanilla.getAmbientLoop().ifPresent(effects::ambientLoopSound); - vanilla.getAmbientAdditions().ifPresent(effects::ambientAdditionsSound); - vanilla.getAmbientMood().ifPresent(effects::ambientMoodSound); - vanilla.getBackgroundMusic().ifPresent(effects::backgroundMusic); - vanilla.getAmbientParticle().ifPresent(effects::ambientParticle); - - builder.specialEffects(effects.build()); - - return builder.build(); - } - - public static String createBiomeID(ConfigPack pack, com.dfsek.terra.api.registry.key.RegistryKey biomeID) { - return pack.getID() - .toLowerCase() + "/" + biomeID.getNamespace().toLowerCase(Locale.ROOT) + "/" + biomeID.getID().toLowerCase(Locale.ROOT); - } -} diff --git a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSBiomeProvider.java b/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSBiomeProvider.java deleted file mode 100644 index ee7a05443..000000000 --- a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSBiomeProvider.java +++ /dev/null @@ -1,42 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R1; - -import com.mojang.serialization.Codec; -import net.minecraft.core.Holder; -import net.minecraft.core.Registry; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.biome.BiomeSource; -import net.minecraft.world.level.biome.Climate.Sampler; -import org.jetbrains.annotations.NotNull; - -import com.dfsek.terra.api.world.biome.generation.BiomeProvider; -import com.dfsek.terra.bukkit.world.BukkitPlatformBiome; - - -public class NMSBiomeProvider extends BiomeSource { - private final BiomeProvider delegate; - private final long seed; - private final Registry biomeRegistry = Registries.biomeRegistry(); - - public NMSBiomeProvider(BiomeProvider delegate, long seed) { - super(delegate.stream() - .map(biome -> Registries.biomeRegistry() - .getHolderOrThrow(((BukkitPlatformBiome) biome.getPlatformBiome()).getContext() - .get(NMSBiomeInfo.class) - .biomeKey()))); - this.delegate = delegate; - this.seed = seed; - } - - @Override - protected @NotNull Codec codec() { - return BiomeSource.CODEC; - } - - @Override - public @NotNull Holder getNoiseBiome(int x, int y, int z, @NotNull Sampler sampler) { - return biomeRegistry.getHolderOrThrow(((BukkitPlatformBiome) delegate.getBiome(x << 2, y << 2, z << 2, seed) - .getPlatformBiome()).getContext() - .get(NMSBiomeInfo.class) - .biomeKey()); - } -} diff --git a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSChunkGeneratorDelegate.java b/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSChunkGeneratorDelegate.java deleted file mode 100644 index 6e374ff8b..000000000 --- a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSChunkGeneratorDelegate.java +++ /dev/null @@ -1,291 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R1; - -import com.mojang.datafixers.util.Pair; -import com.mojang.serialization.Codec; -import it.unimi.dsi.fastutil.objects.Object2ObjectArrayMap; -import net.minecraft.core.BlockPos; -import net.minecraft.core.Holder; -import net.minecraft.core.HolderSet; -import net.minecraft.core.SectionPos; -import net.minecraft.server.level.WorldGenRegion; -import net.minecraft.util.RandomSource; -import net.minecraft.world.level.ChunkPos; -import net.minecraft.world.level.LevelAccessor; -import net.minecraft.world.level.LevelHeightAccessor; -import net.minecraft.world.level.NoiseColumn; -import net.minecraft.world.level.StructureManager; -import net.minecraft.world.level.WorldGenLevel; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.biome.BiomeManager; -import net.minecraft.world.level.block.Blocks; -import net.minecraft.world.level.chunk.ChunkAccess; -import net.minecraft.world.level.chunk.ChunkGenerator; -import net.minecraft.world.level.levelgen.Beardifier; -import net.minecraft.world.level.levelgen.DensityFunction.SinglePointContext; -import net.minecraft.world.level.levelgen.GenerationStep.Carving; -import net.minecraft.world.level.levelgen.Heightmap.Types; -import net.minecraft.world.level.levelgen.RandomState; -import net.minecraft.world.level.levelgen.blending.Blender; -import net.minecraft.world.level.levelgen.structure.Structure; -import net.minecraft.world.level.levelgen.structure.StructureSet; -import net.minecraft.world.level.levelgen.structure.StructureSet.StructureSelectionEntry; -import net.minecraft.world.level.levelgen.structure.placement.ConcentricRingsStructurePlacement; -import org.bukkit.craftbukkit.v1_19_R1.block.data.CraftBlockData; -import org.jetbrains.annotations.NotNull; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.ArrayList; -import java.util.List; -import java.util.Map; -import java.util.Objects; -import java.util.Optional; -import java.util.Set; -import java.util.concurrent.CompletableFuture; -import java.util.concurrent.Executor; -import java.util.stream.Stream; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.api.util.MathUtil; -import com.dfsek.terra.api.util.generic.Lazy; -import com.dfsek.terra.api.world.biome.generation.BiomeProvider; -import com.dfsek.terra.api.world.info.WorldProperties; -import com.dfsek.terra.bukkit.config.PreLoadCompatibilityOptions; -import com.dfsek.terra.bukkit.world.BukkitWorldProperties; -import com.dfsek.terra.bukkit.world.block.data.BukkitBlockState; - - -public class NMSChunkGeneratorDelegate extends ChunkGenerator { - private static final Logger LOGGER = LoggerFactory.getLogger(NMSChunkGeneratorDelegate.class); - private final com.dfsek.terra.api.world.chunk.generation.ChunkGenerator delegate; - - private final ChunkGenerator vanilla; - private final ConfigPack pack; - - private final long seed; - private final Map>> ringPositions = new Object2ObjectArrayMap<>(); - private volatile boolean rings = false; - - public NMSChunkGeneratorDelegate(ChunkGenerator vanilla, ConfigPack pack, NMSBiomeProvider biomeProvider, long seed) { - super(Registries.structureSet(), Optional.empty(), biomeProvider); - this.delegate = pack.getGeneratorProvider().newInstance(pack); - this.vanilla = vanilla; - this.pack = pack; - this.seed = seed; - } - - @Override - protected @NotNull Codec codec() { - return ChunkGenerator.CODEC; - } - - @Override - public void applyCarvers(@NotNull WorldGenRegion chunkRegion, long seed, @NotNull RandomState noiseConfig, @NotNull BiomeManager world, - @NotNull StructureManager structureAccessor, @NotNull ChunkAccess chunk, @NotNull Carving carverStep) { - // no-op - } - - @Override - public void buildSurface(@NotNull WorldGenRegion region, @NotNull StructureManager structures, @NotNull RandomState noiseConfig, - @NotNull ChunkAccess chunk) { - // no-op - } - - @Override - public void applyBiomeDecoration(@NotNull WorldGenLevel world, @NotNull ChunkAccess chunk, - @NotNull StructureManager structureAccessor) { - vanilla.applyBiomeDecoration(world, chunk, structureAccessor); - } - - @Override - public void spawnOriginalMobs(@NotNull WorldGenRegion region) { - vanilla.spawnOriginalMobs(region); - } - - @Override - public int getGenDepth() { - return vanilla.getGenDepth(); - } - - @Override - public @NotNull CompletableFuture fillFromNoise(@NotNull Executor executor, @NotNull Blender blender, - @NotNull RandomState noiseConfig, - @NotNull StructureManager structureAccessor, @NotNull ChunkAccess chunk) { - return vanilla.fillFromNoise(executor, blender, noiseConfig, structureAccessor, chunk) - .thenApply(c -> { - LevelAccessor level = Reflection.STRUCTURE_MANAGER.getLevel(structureAccessor); - BiomeProvider biomeProvider = pack.getBiomeProvider(); - PreLoadCompatibilityOptions compatibilityOptions = pack.getContext().get(PreLoadCompatibilityOptions.class); - if(compatibilityOptions.isBeard()) { - beard(structureAccessor, chunk, new BukkitWorldProperties(level.getMinecraftWorld().getWorld()), - biomeProvider, compatibilityOptions); - } - return c; - }); - } - - private void beard(StructureManager structureAccessor, ChunkAccess chunk, WorldProperties world, BiomeProvider biomeProvider, - PreLoadCompatibilityOptions compatibilityOptions) { - Beardifier structureWeightSampler = Beardifier.forStructuresInChunk(structureAccessor, chunk.getPos()); - double threshold = compatibilityOptions.getBeardThreshold(); - double airThreshold = compatibilityOptions.getAirThreshold(); - int xi = chunk.getPos().x << 4; - int zi = chunk.getPos().z << 4; - for(int x = 0; x < 16; x++) { - for(int z = 0; z < 16; z++) { - int depth = 0; - for(int y = world.getMaxHeight(); y >= world.getMinHeight(); y--) { - double noise = structureWeightSampler.compute(new SinglePointContext(x + xi, y, z + zi)); - if(noise > threshold) { - chunk.setBlockState(new BlockPos(x, y, z), ((CraftBlockData) ((BukkitBlockState) delegate - .getPalette(x + xi, y, z + zi, world, biomeProvider) - .get(depth, x + xi, y, z + zi, world.getSeed())).getHandle()).getState(), false); - depth++; - } else if(noise < airThreshold) { - chunk.setBlockState(new BlockPos(x, y, z), Blocks.AIR.defaultBlockState(), false); - } else { - depth = 0; - } - } - } - } - } - - @Override - public int getSeaLevel() { - return vanilla.getSeaLevel(); - } - - @Override - public int getMinY() { - return vanilla.getMinY(); - } - - @Override - public int getBaseHeight(int x, int z, @NotNull Types heightmap, @NotNull LevelHeightAccessor world, @NotNull RandomState noiseConfig) { - WorldProperties properties = new NMSWorldProperties(seed, world); - int y = properties.getMaxHeight(); - BiomeProvider biomeProvider = pack.getBiomeProvider(); - while(y >= getMinY() && !heightmap.isOpaque().test( - ((CraftBlockData) delegate.getBlock(properties, x, y - 1, z, biomeProvider).getHandle()).getState())) { - y--; - } - return y; - } - - @Override - public @NotNull NoiseColumn getBaseColumn(int x, int z, @NotNull LevelHeightAccessor world, @NotNull RandomState noiseConfig) { - /* - BlockState[] array = new BlockState[world.getHeight()]; - WorldProperties properties = new NMSWorldProperties(seed, world); - BiomeProvider biomeProvider = pack.getBiomeProvider().caching(properties); - for(int y = properties.getMaxHeight() - 1; y >= properties.getMinHeight(); y--) { - array[y - properties.getMinHeight()] = ((CraftBlockData) delegate.getBlock(properties, x, y, z, biomeProvider) - .getHandle()).getState(); - } - return new NoiseColumn(getMinY(), array); - - */ - return vanilla.getBaseColumn(x, z, world, noiseConfig); - } - - @Override - public void addDebugScreenInfo(@NotNull List text, @NotNull RandomState noiseConfig, @NotNull BlockPos pos) { - - } - - @Override - public void ensureStructuresGenerated(@NotNull RandomState noiseConfig) { - if(!this.rings) { - super.ensureStructuresGenerated(noiseConfig); - this.populateStrongholdData(noiseConfig); - this.rings = true; - } - - } - - @Override - public List getRingPositionsFor(@NotNull ConcentricRingsStructurePlacement structurePlacement, - @NotNull RandomState noiseConfig) { - ensureStructuresGenerated(noiseConfig); - return ringPositions.get(structurePlacement).value(); - } - - private void populateStrongholdData(RandomState noiseConfig) { - LOGGER.info("Generating safe stronghold data. This may take up to a minute."); - Set> set = this.biomeSource.possibleBiomes(); - possibleStructureSets().map(Holder::value).forEach((holder) -> { - boolean match = false; - for(StructureSelectionEntry structureset_a : holder.structures()) { - Structure structure = structureset_a.structure().value(); - Stream> stream = structure.biomes().stream(); - if(stream.anyMatch(set::contains)) { - match = true; - } - } - - if(match) { - if(holder.placement() instanceof ConcentricRingsStructurePlacement concentricringsstructureplacement) { - this.ringPositions.put(concentricringsstructureplacement, Lazy.lazy( - () -> this.generateRingPositions(holder, noiseConfig, concentricringsstructureplacement))); - } - } - }); - } - - private List generateRingPositions(StructureSet holder, RandomState randomstate, - ConcentricRingsStructurePlacement concentricringsstructureplacement) { // Spigot - if(concentricringsstructureplacement.count() == 0) { - return List.of(); - } - - List list = new ArrayList<>(); - int i = concentricringsstructureplacement.distance(); - int j = concentricringsstructureplacement.count(); - int k = concentricringsstructureplacement.spread(); - HolderSet holderset = concentricringsstructureplacement.preferredBiomes(); - RandomSource randomsource = RandomSource.create(); - - if(this.conf.strongholdSeed != null && this.structureSets.getResourceKey(holder).orElse(null) == - net.minecraft.world.level.levelgen.structure.BuiltinStructureSets.STRONGHOLDS) { - randomsource.setSeed(this.conf.strongholdSeed); - } else { - randomsource.setSeed(randomstate.legacyLevelSeed()); - } - double d0 = randomsource.nextDouble() * 3.141592653589793D * 2.0D; - int l = 0; - int i1 = 0; - - for(int j1 = 0; j1 < j; ++j1) { - double d1 = (double) (4 * i + i * i1 * 6) + (randomsource.nextDouble() - 0.5D) * (double) i * 2.5D; - int k1 = (int) Math.round(MathUtil.cos(d0) * d1); - int l1 = (int) Math.round(MathUtil.sin(d0) * d1); - int i2 = SectionPos.sectionToBlockCoord(k1, 8); - int j2 = SectionPos.sectionToBlockCoord(l1, 8); - - Objects.requireNonNull(holderset); - Pair> pair = this.biomeSource.findBiomeHorizontal(i2, 0, j2, 112, holderset::contains, randomsource, - randomstate.sampler()); - - if(pair != null) { - BlockPos blockposition = pair.getFirst(); - - k1 = SectionPos.blockToSectionCoord(blockposition.getX()); - l1 = SectionPos.blockToSectionCoord(blockposition.getZ()); - } - - list.add(new ChunkPos(k1, l1)); - d0 += 6.283185307179586D / (double) k; - ++l; - if(l == k) { - ++i1; - l = 0; - k += 2 * k / (i1 + 1); - k = Math.min(k, j - j1); - d0 += randomsource.nextDouble() * 3.141592653589793D * 2.0D; - } - } - - return list; - } -} diff --git a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSInitializer.java b/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSInitializer.java deleted file mode 100644 index 82a293cd1..000000000 --- a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSInitializer.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R1; - -import org.bukkit.Bukkit; - -import com.dfsek.terra.bukkit.PlatformImpl; -import com.dfsek.terra.bukkit.nms.Initializer; - - -public class NMSInitializer implements Initializer { - @Override - public void initialize(PlatformImpl platform) { - AwfulBukkitHacks.registerBiomes(platform.getRawConfigRegistry()); - Bukkit.getPluginManager().registerEvents(new NMSInjectListener(), platform.getPlugin()); - } -} diff --git a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSInjectListener.java b/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSInjectListener.java deleted file mode 100644 index 0f11f700d..000000000 --- a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSInjectListener.java +++ /dev/null @@ -1,51 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R1; - -import net.minecraft.server.level.ServerLevel; -import net.minecraft.world.level.chunk.ChunkGenerator; -import org.bukkit.World; -import org.bukkit.craftbukkit.v1_19_R1.CraftWorld; -import org.bukkit.event.EventHandler; -import org.bukkit.event.Listener; -import org.bukkit.event.world.WorldInitEvent; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.HashSet; -import java.util.Set; -import java.util.concurrent.locks.ReentrantLock; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.bukkit.generator.BukkitChunkGeneratorWrapper; - - -public class NMSInjectListener implements Listener { - private static final Logger LOGGER = LoggerFactory.getLogger(NMSInjectListener.class); - private static final Set INJECTED = new HashSet<>(); - private static final ReentrantLock INJECT_LOCK = new ReentrantLock(); - - @EventHandler - public void onWorldInit(WorldInitEvent event) { - if(!INJECTED.contains(event.getWorld()) && - event.getWorld().getGenerator() instanceof BukkitChunkGeneratorWrapper bukkitChunkGeneratorWrapper) { - INJECT_LOCK.lock(); - INJECTED.add(event.getWorld()); - LOGGER.info("Preparing to take over the world: {}", event.getWorld().getName()); - CraftWorld craftWorld = (CraftWorld) event.getWorld(); - ServerLevel serverWorld = craftWorld.getHandle(); - - ConfigPack pack = bukkitChunkGeneratorWrapper.getPack(); - - ChunkGenerator vanilla = serverWorld.getChunkSource().getGenerator(); - NMSBiomeProvider provider = new NMSBiomeProvider(pack.getBiomeProvider(), craftWorld.getSeed()); - NMSChunkGeneratorDelegate custom = new NMSChunkGeneratorDelegate(vanilla, pack, provider, craftWorld.getSeed()); - - custom.conf = vanilla.conf; // world config from Spigot - - serverWorld.getChunkSource().chunkMap.generator = custom; - - LOGGER.info("Successfully injected into world."); - - INJECT_LOCK.unlock(); - } - } -} diff --git a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSWorldProperties.java b/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSWorldProperties.java deleted file mode 100644 index 9348ca047..000000000 --- a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/NMSWorldProperties.java +++ /dev/null @@ -1,36 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R1; - -import net.minecraft.world.level.LevelHeightAccessor; - -import com.dfsek.terra.api.world.info.WorldProperties; - - -public class NMSWorldProperties implements WorldProperties { - private final long seed; - private final LevelHeightAccessor height; - - public NMSWorldProperties(long seed, LevelHeightAccessor height) { - this.seed = seed; - this.height = height; - } - - @Override - public Object getHandle() { - return height; - } - - @Override - public long getSeed() { - return seed; - } - - @Override - public int getMaxHeight() { - return height.getMaxBuildHeight(); - } - - @Override - public int getMinHeight() { - return height.getMinBuildHeight(); - } -} diff --git a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/Reflection.java b/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/Reflection.java deleted file mode 100644 index 84263a667..000000000 --- a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/Reflection.java +++ /dev/null @@ -1,39 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R1; - -import net.minecraft.core.MappedRegistry; -import net.minecraft.world.level.LevelAccessor; -import net.minecraft.world.level.StructureManager; -import xyz.jpenilla.reflectionremapper.ReflectionRemapper; -import xyz.jpenilla.reflectionremapper.proxy.ReflectionProxyFactory; -import xyz.jpenilla.reflectionremapper.proxy.annotation.FieldGetter; -import xyz.jpenilla.reflectionremapper.proxy.annotation.FieldSetter; -import xyz.jpenilla.reflectionremapper.proxy.annotation.Proxies; - - -public class Reflection { - public static final MappedRegistryProxy MAPPED_REGISTRY; - public static final StructureManagerProxy STRUCTURE_MANAGER; - - static { - ReflectionRemapper reflectionRemapper = ReflectionRemapper.forReobfMappingsInPaperJar(); - ReflectionProxyFactory reflectionProxyFactory = ReflectionProxyFactory.create(reflectionRemapper, - Reflection.class.getClassLoader()); - - MAPPED_REGISTRY = reflectionProxyFactory.reflectionProxy(MappedRegistryProxy.class); - STRUCTURE_MANAGER = reflectionProxyFactory.reflectionProxy(StructureManagerProxy.class); - } - - - @Proxies(MappedRegistry.class) - public interface MappedRegistryProxy { - @FieldSetter("frozen") - void setFrozen(MappedRegistry instance, boolean frozen); - } - - - @Proxies(StructureManager.class) - public interface StructureManagerProxy { - @FieldGetter("level") - LevelAccessor getLevel(StructureManager instance); - } -} diff --git a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/Registries.java b/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/Registries.java deleted file mode 100644 index 1ff964106..000000000 --- a/platforms/bukkit/nms/v1_19_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R1/Registries.java +++ /dev/null @@ -1,30 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R1; - -import net.minecraft.core.Registry; -import net.minecraft.resources.ResourceKey; -import net.minecraft.server.dedicated.DedicatedServer; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.levelgen.structure.StructureSet; -import org.bukkit.Bukkit; -import org.bukkit.craftbukkit.v1_19_R1.CraftServer; - - -public class Registries { - private static Registry getRegistry(ResourceKey> key) { - CraftServer craftserver = (CraftServer) Bukkit.getServer(); - DedicatedServer dedicatedserver = craftserver.getServer(); - return dedicatedserver - .registryAccess() - .registryOrThrow( // getRegistry - key - ); - } - - public static Registry biomeRegistry() { - return getRegistry(Registry.BIOME_REGISTRY); - } - - public static Registry structureSet() { - return getRegistry(Registry.STRUCTURE_SET_REGISTRY); - } -} diff --git a/platforms/bukkit/nms/v1_19_R2/build.gradle.kts b/platforms/bukkit/nms/v1_19_R2/build.gradle.kts deleted file mode 100644 index c6f6d8205..000000000 --- a/platforms/bukkit/nms/v1_19_R2/build.gradle.kts +++ /dev/null @@ -1,17 +0,0 @@ -apply(plugin = "io.papermc.paperweight.userdev") - -repositories { - maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") -} - -dependencies { - api(project(":platforms:bukkit:common")) - paperDevBundle("1.19.3-R0.1-SNAPSHOT") - implementation("xyz.jpenilla", "reflection-remapper", Versions.Bukkit.reflectionRemapper) -} - -tasks { - assemble { - dependsOn("reobfJar") - } -} \ No newline at end of file diff --git a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/AwfulBukkitHacks.java b/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/AwfulBukkitHacks.java deleted file mode 100644 index 725f2fb1a..000000000 --- a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/AwfulBukkitHacks.java +++ /dev/null @@ -1,100 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R2; - -import com.google.common.collect.ImmutableMap; -import com.mojang.serialization.Lifecycle; -import net.minecraft.core.Holder; -import net.minecraft.core.Holder.Reference; -import net.minecraft.core.MappedRegistry; -import net.minecraft.core.WritableRegistry; -import net.minecraft.core.registries.Registries; -import net.minecraft.resources.ResourceKey; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.tags.TagKey; -import net.minecraft.world.level.biome.Biome; -import org.bukkit.NamespacedKey; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Objects; - -import com.dfsek.terra.bukkit.world.BukkitPlatformBiome; -import com.dfsek.terra.registry.master.ConfigRegistry; - - -public class AwfulBukkitHacks { - private static final Logger LOGGER = LoggerFactory.getLogger(AwfulBukkitHacks.class); - - private static final Map> terraBiomeMap = new HashMap<>(); - - public static void registerBiomes(ConfigRegistry configRegistry) { - try { - LOGGER.info("Hacking biome registry..."); - WritableRegistry biomeRegistry = (WritableRegistry) RegistryFetcher.biomeRegistry(); - - Reflection.MAPPED_REGISTRY.setFrozen((MappedRegistry) biomeRegistry, false); - - configRegistry.forEach(pack -> pack.getRegistry(com.dfsek.terra.api.world.biome.Biome.class).forEach((key, biome) -> { - try { - BukkitPlatformBiome platformBiome = (BukkitPlatformBiome) biome.getPlatformBiome(); - NamespacedKey vanillaBukkitKey = platformBiome.getHandle().getKey(); - ResourceLocation vanillaMinecraftKey = new ResourceLocation(vanillaBukkitKey.getNamespace(), vanillaBukkitKey.getKey()); - Biome platform = NMSBiomeInjector.createBiome(biome, Objects.requireNonNull(biomeRegistry.get(vanillaMinecraftKey))); - - ResourceKey delegateKey = ResourceKey.create( - Registries.BIOME, - new ResourceLocation("terra", NMSBiomeInjector.createBiomeID(pack, key)) - ); - - Reference holder = biomeRegistry.register(delegateKey, platform, Lifecycle.stable()); - Reflection.REFERENCE.invokeBindValue(holder, platform); // IMPORTANT: bind holder. - - platformBiome.getContext().put(new NMSBiomeInfo(delegateKey)); - - terraBiomeMap.computeIfAbsent(vanillaMinecraftKey, i -> new ArrayList<>()).add(delegateKey.location()); - - LOGGER.debug("Registered biome: " + delegateKey); - } catch(NoSuchFieldException | SecurityException | IllegalArgumentException | IllegalAccessException e) { - throw new RuntimeException(e); - } - })); - - Reflection.MAPPED_REGISTRY.setFrozen((MappedRegistry) biomeRegistry, true); // freeze registry again :) - - LOGGER.info("Doing tag garbage...."); - Map, List>> collect = biomeRegistry - .getTags() // streamKeysAndEntries - .collect(HashMap::new, - (map, pair) -> - map.put(pair.getFirst(), new ArrayList<>(pair.getSecond().stream().toList())), - HashMap::putAll); - - terraBiomeMap - .forEach((vb, terraBiomes) -> - NMSBiomeInjector.getEntry(biomeRegistry, vb).ifPresentOrElse( - vanilla -> terraBiomes.forEach( - tb -> NMSBiomeInjector.getEntry(biomeRegistry, tb).ifPresentOrElse( - terra -> { - LOGGER.debug("{} (vanilla for {}): {}", - vanilla.unwrapKey().orElseThrow().location(), - terra.unwrapKey().orElseThrow().location(), - vanilla.tags().toList()); - vanilla.tags() - .forEach(tag -> collect - .computeIfAbsent(tag, t -> new ArrayList<>()) - .add(terra)); - }, - () -> LOGGER.error("No such biome: {}", tb))), - () -> LOGGER.error("No vanilla biome: {}", vb))); - - biomeRegistry.resetTags(); - biomeRegistry.bindTags(ImmutableMap.copyOf(collect)); - - } catch(SecurityException | IllegalArgumentException exception) { - throw new RuntimeException(exception); - } - } -} diff --git a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSBiomeInfo.java b/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSBiomeInfo.java deleted file mode 100644 index 639c9eaed..000000000 --- a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSBiomeInfo.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R2; - -import net.minecraft.resources.ResourceKey; -import net.minecraft.world.level.biome.Biome; - -import com.dfsek.terra.api.properties.Properties; - - -public record NMSBiomeInfo(ResourceKey biomeKey) implements Properties { -} diff --git a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSBiomeInjector.java b/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSBiomeInjector.java deleted file mode 100644 index 0b8c36a50..000000000 --- a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSBiomeInjector.java +++ /dev/null @@ -1,79 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R2; - -import net.minecraft.core.Holder; -import net.minecraft.core.Registry; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.biome.BiomeSpecialEffects; - -import java.util.Locale; -import java.util.Objects; -import java.util.Optional; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.bukkit.config.VanillaBiomeProperties; - - -public class NMSBiomeInjector { - - public static Optional> getEntry(Registry registry, ResourceLocation identifier) { - return registry.getOptional(identifier) - .flatMap(registry::getResourceKey) - .flatMap(registry::getHolder); - } - - public static Biome createBiome(com.dfsek.terra.api.world.biome.Biome biome, Biome vanilla) - throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException { - Biome.BiomeBuilder builder = new Biome.BiomeBuilder(); - - builder - .precipitation(vanilla.getPrecipitation()) - .downfall(vanilla.getDownfall()) - .temperature(vanilla.getBaseTemperature()) - .mobSpawnSettings(vanilla.getMobSettings()) - .generationSettings(vanilla.getGenerationSettings()); - - - BiomeSpecialEffects.Builder effects = new BiomeSpecialEffects.Builder(); - - effects.grassColorModifier(vanilla.getSpecialEffects().getGrassColorModifier()); - - VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); - - effects.fogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFogColor(), vanilla.getFogColor())) - - .waterColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterColor(), vanilla.getWaterColor())) - - .waterFogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterFogColor(), vanilla.getWaterFogColor())) - - .skyColor(Objects.requireNonNullElse(vanillaBiomeProperties.getSkyColor(), vanilla.getSkyColor())); - - if(vanillaBiomeProperties.getFoliageColor() == null) { - vanilla.getSpecialEffects().getFoliageColorOverride().ifPresent(effects::foliageColorOverride); - } else { - effects.foliageColorOverride(vanillaBiomeProperties.getFoliageColor()); - } - - if(vanillaBiomeProperties.getGrassColor() == null) { - vanilla.getSpecialEffects().getGrassColorOverride().ifPresent(effects::grassColorOverride); - } else { - // grass - effects.grassColorOverride(vanillaBiomeProperties.getGrassColor()); - } - - vanilla.getAmbientLoop().ifPresent(effects::ambientLoopSound); - vanilla.getAmbientAdditions().ifPresent(effects::ambientAdditionsSound); - vanilla.getAmbientMood().ifPresent(effects::ambientMoodSound); - vanilla.getBackgroundMusic().ifPresent(effects::backgroundMusic); - vanilla.getAmbientParticle().ifPresent(effects::ambientParticle); - - builder.specialEffects(effects.build()); - - return builder.build(); - } - - public static String createBiomeID(ConfigPack pack, com.dfsek.terra.api.registry.key.RegistryKey biomeID) { - return pack.getID() - .toLowerCase() + "/" + biomeID.getNamespace().toLowerCase(Locale.ROOT) + "/" + biomeID.getID().toLowerCase(Locale.ROOT); - } -} diff --git a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSBiomeProvider.java b/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSBiomeProvider.java deleted file mode 100644 index 4e4b9f1c5..000000000 --- a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSBiomeProvider.java +++ /dev/null @@ -1,42 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R2; - -import com.mojang.serialization.Codec; -import net.minecraft.core.Holder; -import net.minecraft.core.Registry; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.biome.BiomeSource; -import net.minecraft.world.level.biome.Climate.Sampler; -import org.jetbrains.annotations.NotNull; - -import com.dfsek.terra.api.world.biome.generation.BiomeProvider; -import com.dfsek.terra.bukkit.world.BukkitPlatformBiome; - - -public class NMSBiomeProvider extends BiomeSource { - private final BiomeProvider delegate; - private final long seed; - private final Registry biomeRegistry = RegistryFetcher.biomeRegistry(); - - public NMSBiomeProvider(BiomeProvider delegate, long seed) { - super(delegate.stream() - .map(biome -> RegistryFetcher.biomeRegistry() - .getHolderOrThrow(((BukkitPlatformBiome) biome.getPlatformBiome()).getContext() - .get(NMSBiomeInfo.class) - .biomeKey()))); - this.delegate = delegate; - this.seed = seed; - } - - @Override - protected @NotNull Codec codec() { - return BiomeSource.CODEC; - } - - @Override - public @NotNull Holder getNoiseBiome(int x, int y, int z, @NotNull Sampler sampler) { - return biomeRegistry.getHolderOrThrow(((BukkitPlatformBiome) delegate.getBiome(x << 2, y << 2, z << 2, seed) - .getPlatformBiome()).getContext() - .get(NMSBiomeInfo.class) - .biomeKey()); - } -} diff --git a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSChunkGeneratorDelegate.java b/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSChunkGeneratorDelegate.java deleted file mode 100644 index 9059326ca..000000000 --- a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSChunkGeneratorDelegate.java +++ /dev/null @@ -1,174 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R2; - -import com.mojang.serialization.Codec; -import net.minecraft.core.BlockPos; -import net.minecraft.server.level.WorldGenRegion; -import net.minecraft.world.level.LevelAccessor; -import net.minecraft.world.level.LevelHeightAccessor; -import net.minecraft.world.level.NoiseColumn; -import net.minecraft.world.level.StructureManager; -import net.minecraft.world.level.WorldGenLevel; -import net.minecraft.world.level.biome.BiomeManager; -import net.minecraft.world.level.block.Blocks; -import net.minecraft.world.level.chunk.ChunkAccess; -import net.minecraft.world.level.chunk.ChunkGenerator; -import net.minecraft.world.level.levelgen.Beardifier; -import net.minecraft.world.level.levelgen.DensityFunction.SinglePointContext; -import net.minecraft.world.level.levelgen.GenerationStep.Carving; -import net.minecraft.world.level.levelgen.Heightmap.Types; -import net.minecraft.world.level.levelgen.RandomState; -import net.minecraft.world.level.levelgen.blending.Blender; -import org.bukkit.craftbukkit.v1_19_R2.block.data.CraftBlockData; -import org.jetbrains.annotations.NotNull; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.List; -import java.util.concurrent.CompletableFuture; -import java.util.concurrent.Executor; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.api.world.biome.generation.BiomeProvider; -import com.dfsek.terra.api.world.info.WorldProperties; -import com.dfsek.terra.bukkit.config.PreLoadCompatibilityOptions; -import com.dfsek.terra.bukkit.world.BukkitWorldProperties; -import com.dfsek.terra.bukkit.world.block.data.BukkitBlockState; - - -public class NMSChunkGeneratorDelegate extends ChunkGenerator { - private static final Logger LOGGER = LoggerFactory.getLogger(NMSChunkGeneratorDelegate.class); - private final com.dfsek.terra.api.world.chunk.generation.ChunkGenerator delegate; - - private final ChunkGenerator vanilla; - private final ConfigPack pack; - - private final long seed; - - public NMSChunkGeneratorDelegate(ChunkGenerator vanilla, ConfigPack pack, NMSBiomeProvider biomeProvider, long seed) { - super(biomeProvider); - this.delegate = pack.getGeneratorProvider().newInstance(pack); - this.vanilla = vanilla; - this.pack = pack; - this.seed = seed; - } - - @Override - protected @NotNull Codec codec() { - return ChunkGenerator.CODEC; - } - - @Override - public void applyCarvers(@NotNull WorldGenRegion chunkRegion, long seed, @NotNull RandomState noiseConfig, @NotNull BiomeManager world, - @NotNull StructureManager structureAccessor, @NotNull ChunkAccess chunk, @NotNull Carving carverStep) { - // no-op - } - - @Override - public void buildSurface(@NotNull WorldGenRegion region, @NotNull StructureManager structures, @NotNull RandomState noiseConfig, - @NotNull ChunkAccess chunk) { - // no-op - } - - @Override - public void applyBiomeDecoration(@NotNull WorldGenLevel world, @NotNull ChunkAccess chunk, - @NotNull StructureManager structureAccessor) { - vanilla.applyBiomeDecoration(world, chunk, structureAccessor); - } - - @Override - public void spawnOriginalMobs(@NotNull WorldGenRegion region) { - vanilla.spawnOriginalMobs(region); - } - - @Override - public int getGenDepth() { - return vanilla.getGenDepth(); - } - - @Override - public @NotNull CompletableFuture fillFromNoise(@NotNull Executor executor, @NotNull Blender blender, - @NotNull RandomState noiseConfig, - @NotNull StructureManager structureAccessor, @NotNull ChunkAccess chunk) { - return vanilla.fillFromNoise(executor, blender, noiseConfig, structureAccessor, chunk) - .thenApply(c -> { - LevelAccessor level = Reflection.STRUCTURE_MANAGER.getLevel(structureAccessor); - BiomeProvider biomeProvider = pack.getBiomeProvider(); - PreLoadCompatibilityOptions compatibilityOptions = pack.getContext().get(PreLoadCompatibilityOptions.class); - if(compatibilityOptions.isBeard()) { - beard(structureAccessor, chunk, new BukkitWorldProperties(level.getMinecraftWorld().getWorld()), - biomeProvider, compatibilityOptions); - } - return c; - }); - } - - private void beard(StructureManager structureAccessor, ChunkAccess chunk, WorldProperties world, BiomeProvider biomeProvider, - PreLoadCompatibilityOptions compatibilityOptions) { - Beardifier structureWeightSampler = Beardifier.forStructuresInChunk(structureAccessor, chunk.getPos()); - double threshold = compatibilityOptions.getBeardThreshold(); - double airThreshold = compatibilityOptions.getAirThreshold(); - int xi = chunk.getPos().x << 4; - int zi = chunk.getPos().z << 4; - for(int x = 0; x < 16; x++) { - for(int z = 0; z < 16; z++) { - int depth = 0; - for(int y = world.getMaxHeight(); y >= world.getMinHeight(); y--) { - double noise = structureWeightSampler.compute(new SinglePointContext(x + xi, y, z + zi)); - if(noise > threshold) { - chunk.setBlockState(new BlockPos(x, y, z), ((CraftBlockData) ((BukkitBlockState) delegate - .getPalette(x + xi, y, z + zi, world, biomeProvider) - .get(depth, x + xi, y, z + zi, world.getSeed())).getHandle()).getState(), false); - depth++; - } else if(noise < airThreshold) { - chunk.setBlockState(new BlockPos(x, y, z), Blocks.AIR.defaultBlockState(), false); - } else { - depth = 0; - } - } - } - } - } - - @Override - public int getSeaLevel() { - return vanilla.getSeaLevel(); - } - - @Override - public int getMinY() { - return vanilla.getMinY(); - } - - @Override - public int getBaseHeight(int x, int z, @NotNull Types heightmap, @NotNull LevelHeightAccessor world, @NotNull RandomState noiseConfig) { - WorldProperties properties = new NMSWorldProperties(seed, world); - int y = properties.getMaxHeight(); - BiomeProvider biomeProvider = pack.getBiomeProvider(); - while(y >= getMinY() && !heightmap.isOpaque().test( - ((CraftBlockData) delegate.getBlock(properties, x, y - 1, z, biomeProvider).getHandle()).getState())) { - y--; - } - return y; - } - - @Override - public @NotNull NoiseColumn getBaseColumn(int x, int z, @NotNull LevelHeightAccessor world, @NotNull RandomState noiseConfig) { - /* - BlockState[] array = new BlockState[world.getHeight()]; - WorldProperties properties = new NMSWorldProperties(seed, world); - BiomeProvider biomeProvider = pack.getBiomeProvider().caching(properties); - for(int y = properties.getMaxHeight() - 1; y >= properties.getMinHeight(); y--) { - array[y - properties.getMinHeight()] = ((CraftBlockData) delegate.getBlock(properties, x, y, z, biomeProvider) - .getHandle()).getState(); - } - return new NoiseColumn(getMinY(), array); - - */ - return vanilla.getBaseColumn(x, z, world, noiseConfig); - } - - @Override - public void addDebugScreenInfo(@NotNull List text, @NotNull RandomState noiseConfig, @NotNull BlockPos pos) { - - } -} diff --git a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSInitializer.java b/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSInitializer.java deleted file mode 100644 index 05814cfd4..000000000 --- a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSInitializer.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R2; - -import org.bukkit.Bukkit; - -import com.dfsek.terra.bukkit.PlatformImpl; -import com.dfsek.terra.bukkit.nms.Initializer; - - -public class NMSInitializer implements Initializer { - @Override - public void initialize(PlatformImpl platform) { - AwfulBukkitHacks.registerBiomes(platform.getRawConfigRegistry()); - Bukkit.getPluginManager().registerEvents(new NMSInjectListener(), platform.getPlugin()); - } -} diff --git a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSInjectListener.java b/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSInjectListener.java deleted file mode 100644 index 6ce184da0..000000000 --- a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSInjectListener.java +++ /dev/null @@ -1,48 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R2; - -import net.minecraft.server.level.ServerLevel; -import net.minecraft.world.level.chunk.ChunkGenerator; -import org.bukkit.World; -import org.bukkit.craftbukkit.v1_19_R2.CraftWorld; -import org.bukkit.event.EventHandler; -import org.bukkit.event.Listener; -import org.bukkit.event.world.WorldInitEvent; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.HashSet; -import java.util.Set; -import java.util.concurrent.locks.ReentrantLock; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.bukkit.generator.BukkitChunkGeneratorWrapper; - - -public class NMSInjectListener implements Listener { - private static final Logger LOGGER = LoggerFactory.getLogger(NMSInjectListener.class); - private static final Set INJECTED = new HashSet<>(); - private static final ReentrantLock INJECT_LOCK = new ReentrantLock(); - - @EventHandler - public void onWorldInit(WorldInitEvent event) { - if(!INJECTED.contains(event.getWorld()) && - event.getWorld().getGenerator() instanceof BukkitChunkGeneratorWrapper bukkitChunkGeneratorWrapper) { - INJECT_LOCK.lock(); - INJECTED.add(event.getWorld()); - LOGGER.info("Preparing to take over the world: {}", event.getWorld().getName()); - CraftWorld craftWorld = (CraftWorld) event.getWorld(); - ServerLevel serverWorld = craftWorld.getHandle(); - - ConfigPack pack = bukkitChunkGeneratorWrapper.getPack(); - - ChunkGenerator vanilla = serverWorld.getChunkSource().getGenerator(); - NMSBiomeProvider provider = new NMSBiomeProvider(pack.getBiomeProvider(), craftWorld.getSeed()); - - serverWorld.getChunkSource().chunkMap.generator = new NMSChunkGeneratorDelegate(vanilla, pack, provider, craftWorld.getSeed()); - - LOGGER.info("Successfully injected into world."); - - INJECT_LOCK.unlock(); - } - } -} diff --git a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSWorldProperties.java b/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSWorldProperties.java deleted file mode 100644 index 9e1989451..000000000 --- a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/NMSWorldProperties.java +++ /dev/null @@ -1,36 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R2; - -import net.minecraft.world.level.LevelHeightAccessor; - -import com.dfsek.terra.api.world.info.WorldProperties; - - -public class NMSWorldProperties implements WorldProperties { - private final long seed; - private final LevelHeightAccessor height; - - public NMSWorldProperties(long seed, LevelHeightAccessor height) { - this.seed = seed; - this.height = height; - } - - @Override - public Object getHandle() { - return height; - } - - @Override - public long getSeed() { - return seed; - } - - @Override - public int getMaxHeight() { - return height.getMaxBuildHeight(); - } - - @Override - public int getMinHeight() { - return height.getMinBuildHeight(); - } -} diff --git a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/Reflection.java b/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/Reflection.java deleted file mode 100644 index d0f933258..000000000 --- a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/Reflection.java +++ /dev/null @@ -1,52 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R2; - -import net.minecraft.core.Holder; -import net.minecraft.core.Holder.Reference; -import net.minecraft.core.MappedRegistry; -import net.minecraft.world.level.LevelAccessor; -import net.minecraft.world.level.StructureManager; -import xyz.jpenilla.reflectionremapper.ReflectionRemapper; -import xyz.jpenilla.reflectionremapper.proxy.ReflectionProxyFactory; -import xyz.jpenilla.reflectionremapper.proxy.annotation.FieldGetter; -import xyz.jpenilla.reflectionremapper.proxy.annotation.FieldSetter; -import xyz.jpenilla.reflectionremapper.proxy.annotation.MethodName; -import xyz.jpenilla.reflectionremapper.proxy.annotation.Proxies; - - -public class Reflection { - public static final MappedRegistryProxy MAPPED_REGISTRY; - public static final StructureManagerProxy STRUCTURE_MANAGER; - - public static final ReferenceProxy REFERENCE; - - static { - ReflectionRemapper reflectionRemapper = ReflectionRemapper.forReobfMappingsInPaperJar(); - ReflectionProxyFactory reflectionProxyFactory = ReflectionProxyFactory.create(reflectionRemapper, - Reflection.class.getClassLoader()); - - MAPPED_REGISTRY = reflectionProxyFactory.reflectionProxy(MappedRegistryProxy.class); - STRUCTURE_MANAGER = reflectionProxyFactory.reflectionProxy(StructureManagerProxy.class); - REFERENCE = reflectionProxyFactory.reflectionProxy(ReferenceProxy.class); - } - - - @Proxies(MappedRegistry.class) - public interface MappedRegistryProxy { - @FieldSetter("frozen") - void setFrozen(MappedRegistry instance, boolean frozen); - } - - - @Proxies(StructureManager.class) - public interface StructureManagerProxy { - @FieldGetter("level") - LevelAccessor getLevel(StructureManager instance); - } - - - @Proxies(Holder.Reference.class) - public interface ReferenceProxy { - @MethodName("bindValue") - void invokeBindValue(Reference instance, T value); - } -} diff --git a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/RegistryFetcher.java b/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/RegistryFetcher.java deleted file mode 100644 index ed353eafc..000000000 --- a/platforms/bukkit/nms/v1_19_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R2/RegistryFetcher.java +++ /dev/null @@ -1,24 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R2; - -import net.minecraft.core.Registry; -import net.minecraft.core.registries.Registries; -import net.minecraft.resources.ResourceKey; -import net.minecraft.server.dedicated.DedicatedServer; -import net.minecraft.world.level.biome.Biome; -import org.bukkit.Bukkit; -import org.bukkit.craftbukkit.v1_19_R2.CraftServer; - - -public class RegistryFetcher { - private static Registry getRegistry(ResourceKey> key) { - CraftServer craftserver = (CraftServer) Bukkit.getServer(); - DedicatedServer dedicatedserver = craftserver.getServer(); - return dedicatedserver - .registryAccess() - .registryOrThrow(key); - } - - public static Registry biomeRegistry() { - return getRegistry(Registries.BIOME); - } -} diff --git a/platforms/bukkit/nms/v1_19_R3/build.gradle.kts b/platforms/bukkit/nms/v1_19_R3/build.gradle.kts deleted file mode 100644 index 4b2ad7d63..000000000 --- a/platforms/bukkit/nms/v1_19_R3/build.gradle.kts +++ /dev/null @@ -1,17 +0,0 @@ -apply(plugin = "io.papermc.paperweight.userdev") - -repositories { - maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") -} - -dependencies { - api(project(":platforms:bukkit:common")) - paperDevBundle("1.19.4-R0.1-SNAPSHOT") - implementation("xyz.jpenilla", "reflection-remapper", Versions.Bukkit.reflectionRemapper) -} - -tasks { - assemble { - dependsOn("reobfJar") - } -} \ No newline at end of file diff --git a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/AwfulBukkitHacks.java b/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/AwfulBukkitHacks.java deleted file mode 100644 index b2ac9d28b..000000000 --- a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/AwfulBukkitHacks.java +++ /dev/null @@ -1,101 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R3; - -import com.google.common.collect.ImmutableMap; -import com.mojang.serialization.Lifecycle; -import net.minecraft.core.Holder; -import net.minecraft.core.Holder.Reference; -import net.minecraft.core.MappedRegistry; -import net.minecraft.core.WritableRegistry; -import net.minecraft.core.registries.Registries; -import net.minecraft.resources.ResourceKey; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.tags.TagKey; -import net.minecraft.world.level.biome.Biome; -import org.bukkit.NamespacedKey; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Objects; - -import com.dfsek.terra.bukkit.world.BukkitPlatformBiome; -import com.dfsek.terra.registry.master.ConfigRegistry; - - -public class AwfulBukkitHacks { - private static final Logger LOGGER = LoggerFactory.getLogger(AwfulBukkitHacks.class); - - private static final Map> terraBiomeMap = new HashMap<>(); - - public static void registerBiomes(ConfigRegistry configRegistry) { - try { - LOGGER.info("Hacking biome registry..."); - WritableRegistry biomeRegistry = (WritableRegistry) RegistryFetcher.biomeRegistry(); - - Reflection.MAPPED_REGISTRY.setFrozen((MappedRegistry) biomeRegistry, false); - - configRegistry.forEach(pack -> pack.getRegistry(com.dfsek.terra.api.world.biome.Biome.class).forEach((key, biome) -> { - try { - BukkitPlatformBiome platformBiome = (BukkitPlatformBiome) biome.getPlatformBiome(); - NamespacedKey vanillaBukkitKey = platformBiome.getHandle().getKey(); - ResourceLocation vanillaMinecraftKey = new ResourceLocation(vanillaBukkitKey.getNamespace(), vanillaBukkitKey.getKey()); - Biome platform = NMSBiomeInjector.createBiome(biome, Objects.requireNonNull(biomeRegistry.get(vanillaMinecraftKey))); - - ResourceKey delegateKey = ResourceKey.create( - Registries.BIOME, - new ResourceLocation("terra", NMSBiomeInjector.createBiomeID(pack, key)) - ); - - Reference holder = biomeRegistry.register(delegateKey, platform, Lifecycle.stable()); - Reflection.REFERENCE.invokeBindValue(holder, platform); // IMPORTANT: bind holder. - - platformBiome.getContext().put(new NMSBiomeInfo(delegateKey)); - - terraBiomeMap.computeIfAbsent(vanillaMinecraftKey, i -> new ArrayList<>()).add(delegateKey.location()); - - LOGGER.debug("Registered biome: " + delegateKey); - } catch(NoSuchFieldException | SecurityException | IllegalArgumentException | IllegalAccessException e) { - throw new RuntimeException(e); - } - })); - - Reflection.MAPPED_REGISTRY.setFrozen((MappedRegistry) biomeRegistry, true); // freeze registry again :) - - LOGGER.info("Doing tag garbage...."); - Map, List>> collect = biomeRegistry - .getTags() // streamKeysAndEntries - .collect(HashMap::new, - (map, pair) -> - map.put(pair.getFirst(), new ArrayList<>(pair.getSecond().stream().toList())), - HashMap::putAll); - - terraBiomeMap - .forEach((vb, terraBiomes) -> - NMSBiomeInjector.getEntry(biomeRegistry, vb).ifPresentOrElse( - vanilla -> terraBiomes.forEach( - tb -> NMSBiomeInjector.getEntry(biomeRegistry, tb).ifPresentOrElse( - terra -> { - LOGGER.debug("{} (vanilla for {}): {}", - vanilla.unwrapKey().orElseThrow().location(), - terra.unwrapKey().orElseThrow().location(), - vanilla.tags().toList()); - vanilla.tags() - .forEach(tag -> collect - .computeIfAbsent(tag, t -> new ArrayList<>()) - .add(terra)); - }, - () -> LOGGER.error("No such biome: {}", tb))), - () -> LOGGER.error("No vanilla biome: {}", vb))); - - biomeRegistry.resetTags(); - biomeRegistry.bindTags(ImmutableMap.copyOf(collect)); - - } catch(SecurityException | IllegalArgumentException exception) { - throw new RuntimeException(exception); - } - } -} - diff --git a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSBiomeInfo.java b/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSBiomeInfo.java deleted file mode 100644 index 816d96068..000000000 --- a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSBiomeInfo.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R3; - -import net.minecraft.resources.ResourceKey; -import net.minecraft.world.level.biome.Biome; - -import com.dfsek.terra.api.properties.Properties; - - -public record NMSBiomeInfo(ResourceKey biomeKey) implements Properties { -} diff --git a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSBiomeInjector.java b/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSBiomeInjector.java deleted file mode 100644 index 733fd38f4..000000000 --- a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSBiomeInjector.java +++ /dev/null @@ -1,78 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R3; - -import net.minecraft.core.Holder; -import net.minecraft.core.Registry; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.biome.BiomeSpecialEffects; - -import java.util.Locale; -import java.util.Objects; -import java.util.Optional; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.bukkit.config.VanillaBiomeProperties; - - -public class NMSBiomeInjector { - - public static Optional> getEntry(Registry registry, ResourceLocation identifier) { - return registry.getOptional(identifier) - .flatMap(registry::getResourceKey) - .flatMap(registry::getHolder); - } - - public static Biome createBiome(com.dfsek.terra.api.world.biome.Biome biome, Biome vanilla) - throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException { - Biome.BiomeBuilder builder = new Biome.BiomeBuilder(); - - builder - .downfall(vanilla.climateSettings.downfall()) - .temperature(vanilla.getBaseTemperature()) - .mobSpawnSettings(vanilla.getMobSettings()) - .generationSettings(vanilla.getGenerationSettings()); - - - BiomeSpecialEffects.Builder effects = new BiomeSpecialEffects.Builder(); - - effects.grassColorModifier(vanilla.getSpecialEffects().getGrassColorModifier()); - - VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); - - effects.fogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFogColor(), vanilla.getFogColor())) - - .waterColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterColor(), vanilla.getWaterColor())) - - .waterFogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterFogColor(), vanilla.getWaterFogColor())) - - .skyColor(Objects.requireNonNullElse(vanillaBiomeProperties.getSkyColor(), vanilla.getSkyColor())); - - if(vanillaBiomeProperties.getFoliageColor() == null) { - vanilla.getSpecialEffects().getFoliageColorOverride().ifPresent(effects::foliageColorOverride); - } else { - effects.foliageColorOverride(vanillaBiomeProperties.getFoliageColor()); - } - - if(vanillaBiomeProperties.getGrassColor() == null) { - vanilla.getSpecialEffects().getGrassColorOverride().ifPresent(effects::grassColorOverride); - } else { - // grass - effects.grassColorOverride(vanillaBiomeProperties.getGrassColor()); - } - - vanilla.getAmbientLoop().ifPresent(effects::ambientLoopSound); - vanilla.getAmbientAdditions().ifPresent(effects::ambientAdditionsSound); - vanilla.getAmbientMood().ifPresent(effects::ambientMoodSound); - vanilla.getBackgroundMusic().ifPresent(effects::backgroundMusic); - vanilla.getAmbientParticle().ifPresent(effects::ambientParticle); - - builder.specialEffects(effects.build()); - - return builder.build(); - } - - public static String createBiomeID(ConfigPack pack, com.dfsek.terra.api.registry.key.RegistryKey biomeID) { - return pack.getID() - .toLowerCase() + "/" + biomeID.getNamespace().toLowerCase(Locale.ROOT) + "/" + biomeID.getID().toLowerCase(Locale.ROOT); - } -} diff --git a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSBiomeProvider.java b/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSBiomeProvider.java deleted file mode 100644 index ed5ea1589..000000000 --- a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSBiomeProvider.java +++ /dev/null @@ -1,49 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R3; - -import com.mojang.serialization.Codec; -import net.minecraft.core.Holder; -import net.minecraft.core.Registry; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.biome.BiomeSource; -import net.minecraft.world.level.biome.Climate.Sampler; -import org.jetbrains.annotations.NotNull; - -import java.util.stream.Stream; - -import com.dfsek.terra.api.world.biome.generation.BiomeProvider; -import com.dfsek.terra.bukkit.world.BukkitPlatformBiome; - - -public class NMSBiomeProvider extends BiomeSource { - private final BiomeProvider delegate; - private final long seed; - private final Registry biomeRegistry = RegistryFetcher.biomeRegistry(); - - public NMSBiomeProvider(BiomeProvider delegate, long seed) { - super(); - this.delegate = delegate; - this.seed = seed; - } - - @Override - protected Stream> collectPossibleBiomes() { - return delegate.stream() - .map(biome -> RegistryFetcher.biomeRegistry() - .getHolderOrThrow(((BukkitPlatformBiome) biome.getPlatformBiome()).getContext() - .get(NMSBiomeInfo.class) - .biomeKey())); - } - - @Override - protected @NotNull Codec codec() { - return BiomeSource.CODEC; - } - - @Override - public @NotNull Holder getNoiseBiome(int x, int y, int z, @NotNull Sampler sampler) { - return biomeRegistry.getHolderOrThrow(((BukkitPlatformBiome) delegate.getBiome(x << 2, y << 2, z << 2, seed) - .getPlatformBiome()).getContext() - .get(NMSBiomeInfo.class) - .biomeKey()); - } -} diff --git a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSChunkGeneratorDelegate.java b/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSChunkGeneratorDelegate.java deleted file mode 100644 index c697bd0c1..000000000 --- a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSChunkGeneratorDelegate.java +++ /dev/null @@ -1,171 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R3; - -import com.mojang.serialization.Codec; -import net.minecraft.core.BlockPos; -import net.minecraft.server.level.WorldGenRegion; -import net.minecraft.world.level.LevelAccessor; -import net.minecraft.world.level.LevelHeightAccessor; -import net.minecraft.world.level.NoiseColumn; -import net.minecraft.world.level.StructureManager; -import net.minecraft.world.level.WorldGenLevel; -import net.minecraft.world.level.biome.BiomeManager; -import net.minecraft.world.level.block.Blocks; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.chunk.ChunkAccess; -import net.minecraft.world.level.chunk.ChunkGenerator; -import net.minecraft.world.level.levelgen.Beardifier; -import net.minecraft.world.level.levelgen.DensityFunction.SinglePointContext; -import net.minecraft.world.level.levelgen.GenerationStep.Carving; -import net.minecraft.world.level.levelgen.Heightmap.Types; -import net.minecraft.world.level.levelgen.RandomState; -import net.minecraft.world.level.levelgen.blending.Blender; -import org.bukkit.craftbukkit.v1_19_R3.block.data.CraftBlockData; -import org.jetbrains.annotations.NotNull; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.List; -import java.util.concurrent.CompletableFuture; -import java.util.concurrent.Executor; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.api.world.biome.generation.BiomeProvider; -import com.dfsek.terra.api.world.info.WorldProperties; -import com.dfsek.terra.bukkit.config.PreLoadCompatibilityOptions; -import com.dfsek.terra.bukkit.world.BukkitWorldProperties; -import com.dfsek.terra.bukkit.world.block.data.BukkitBlockState; - - -public class NMSChunkGeneratorDelegate extends ChunkGenerator { - private static final Logger LOGGER = LoggerFactory.getLogger(NMSChunkGeneratorDelegate.class); - private final com.dfsek.terra.api.world.chunk.generation.ChunkGenerator delegate; - - private final ChunkGenerator vanilla; - private final ConfigPack pack; - - private final long seed; - - public NMSChunkGeneratorDelegate(ChunkGenerator vanilla, ConfigPack pack, NMSBiomeProvider biomeProvider, long seed) { - super(biomeProvider); - this.delegate = pack.getGeneratorProvider().newInstance(pack); - this.vanilla = vanilla; - this.pack = pack; - this.seed = seed; - } - - @Override - protected @NotNull Codec codec() { - return ChunkGenerator.CODEC; - } - - @Override - public void applyCarvers(@NotNull WorldGenRegion chunkRegion, long seed, @NotNull RandomState noiseConfig, @NotNull BiomeManager world, - @NotNull StructureManager structureAccessor, @NotNull ChunkAccess chunk, @NotNull Carving carverStep) { - // no-op - } - - @Override - public void buildSurface(@NotNull WorldGenRegion region, @NotNull StructureManager structures, @NotNull RandomState noiseConfig, - @NotNull ChunkAccess chunk) { - // no-op - } - - @Override - public void applyBiomeDecoration(@NotNull WorldGenLevel world, @NotNull ChunkAccess chunk, - @NotNull StructureManager structureAccessor) { - vanilla.applyBiomeDecoration(world, chunk, structureAccessor); - } - - @Override - public void spawnOriginalMobs(@NotNull WorldGenRegion region) { - vanilla.spawnOriginalMobs(region); - } - - @Override - public int getGenDepth() { - return vanilla.getGenDepth(); - } - - @Override - public @NotNull CompletableFuture fillFromNoise(@NotNull Executor executor, @NotNull Blender blender, - @NotNull RandomState noiseConfig, - @NotNull StructureManager structureAccessor, @NotNull ChunkAccess chunk) { - return vanilla.fillFromNoise(executor, blender, noiseConfig, structureAccessor, chunk) - .thenApply(c -> { - LevelAccessor level = Reflection.STRUCTURE_MANAGER.getLevel(structureAccessor); - BiomeProvider biomeProvider = pack.getBiomeProvider(); - PreLoadCompatibilityOptions compatibilityOptions = pack.getContext().get(PreLoadCompatibilityOptions.class); - if(compatibilityOptions.isBeard()) { - beard(structureAccessor, chunk, new BukkitWorldProperties(level.getMinecraftWorld().getWorld()), - biomeProvider, compatibilityOptions); - } - return c; - }); - } - - private void beard(StructureManager structureAccessor, ChunkAccess chunk, WorldProperties world, BiomeProvider biomeProvider, - PreLoadCompatibilityOptions compatibilityOptions) { - Beardifier structureWeightSampler = Beardifier.forStructuresInChunk(structureAccessor, chunk.getPos()); - double threshold = compatibilityOptions.getBeardThreshold(); - double airThreshold = compatibilityOptions.getAirThreshold(); - int xi = chunk.getPos().x << 4; - int zi = chunk.getPos().z << 4; - for(int x = 0; x < 16; x++) { - for(int z = 0; z < 16; z++) { - int depth = 0; - for(int y = world.getMaxHeight(); y >= world.getMinHeight(); y--) { - double noise = structureWeightSampler.compute(new SinglePointContext(x + xi, y, z + zi)); - if(noise > threshold) { - chunk.setBlockState(new BlockPos(x, y, z), ((CraftBlockData) ((BukkitBlockState) delegate - .getPalette(x + xi, y, z + zi, world, biomeProvider) - .get(depth, x + xi, y, z + zi, world.getSeed())).getHandle()).getState(), false); - depth++; - } else if(noise < airThreshold) { - chunk.setBlockState(new BlockPos(x, y, z), Blocks.AIR.defaultBlockState(), false); - } else { - depth = 0; - } - } - } - } - } - - @Override - public int getSeaLevel() { - return vanilla.getSeaLevel(); - } - - @Override - public int getMinY() { - return vanilla.getMinY(); - } - - @Override - public int getBaseHeight(int x, int z, @NotNull Types heightmap, @NotNull LevelHeightAccessor world, @NotNull RandomState noiseConfig) { - WorldProperties properties = new NMSWorldProperties(seed, world); - int y = properties.getMaxHeight(); - BiomeProvider biomeProvider = pack.getBiomeProvider(); - while(y >= getMinY() && !heightmap.isOpaque().test( - ((CraftBlockData) delegate.getBlock(properties, x, y - 1, z, biomeProvider).getHandle()).getState())) { - y--; - } - return y; - } - - @Override - public @NotNull NoiseColumn getBaseColumn(int x, int z, @NotNull LevelHeightAccessor world, @NotNull RandomState noiseConfig) { - BlockState[] array = new BlockState[world.getHeight()]; - WorldProperties properties = new NMSWorldProperties(seed, world); - BiomeProvider biomeProvider = pack.getBiomeProvider(); - for(int y = properties.getMaxHeight() - 1; y >= properties.getMinHeight(); y--) { - array[y - properties.getMinHeight()] = ((CraftBlockData) delegate.getBlock(properties, x, y, z, biomeProvider) - .getHandle()).getState(); - } - return new NoiseColumn(getMinY(), array); - } - - @Override - public void addDebugScreenInfo(@NotNull List text, @NotNull RandomState noiseConfig, @NotNull BlockPos pos) { - - } -} diff --git a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSInitializer.java b/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSInitializer.java deleted file mode 100644 index 99797e8ab..000000000 --- a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSInitializer.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R3; - -import org.bukkit.Bukkit; - -import com.dfsek.terra.bukkit.PlatformImpl; -import com.dfsek.terra.bukkit.nms.Initializer; - - -public class NMSInitializer implements Initializer { - @Override - public void initialize(PlatformImpl platform) { - AwfulBukkitHacks.registerBiomes(platform.getRawConfigRegistry()); - Bukkit.getPluginManager().registerEvents(new NMSInjectListener(), platform.getPlugin()); - } -} diff --git a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSInjectListener.java b/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSInjectListener.java deleted file mode 100644 index 78da74f65..000000000 --- a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSInjectListener.java +++ /dev/null @@ -1,48 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R3; - -import net.minecraft.server.level.ServerLevel; -import net.minecraft.world.level.chunk.ChunkGenerator; -import org.bukkit.World; -import org.bukkit.craftbukkit.v1_19_R3.CraftWorld; -import org.bukkit.event.EventHandler; -import org.bukkit.event.Listener; -import org.bukkit.event.world.WorldInitEvent; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.HashSet; -import java.util.Set; -import java.util.concurrent.locks.ReentrantLock; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.bukkit.generator.BukkitChunkGeneratorWrapper; - - -public class NMSInjectListener implements Listener { - private static final Logger LOGGER = LoggerFactory.getLogger(NMSInjectListener.class); - private static final Set INJECTED = new HashSet<>(); - private static final ReentrantLock INJECT_LOCK = new ReentrantLock(); - - @EventHandler - public void onWorldInit(WorldInitEvent event) { - if(!INJECTED.contains(event.getWorld()) && - event.getWorld().getGenerator() instanceof BukkitChunkGeneratorWrapper bukkitChunkGeneratorWrapper) { - INJECT_LOCK.lock(); - INJECTED.add(event.getWorld()); - LOGGER.info("Preparing to take over the world: {}", event.getWorld().getName()); - CraftWorld craftWorld = (CraftWorld) event.getWorld(); - ServerLevel serverWorld = craftWorld.getHandle(); - - ConfigPack pack = bukkitChunkGeneratorWrapper.getPack(); - - ChunkGenerator vanilla = serverWorld.getChunkSource().getGenerator(); - NMSBiomeProvider provider = new NMSBiomeProvider(pack.getBiomeProvider(), craftWorld.getSeed()); - - serverWorld.getChunkSource().chunkMap.generator = new NMSChunkGeneratorDelegate(vanilla, pack, provider, craftWorld.getSeed()); - - LOGGER.info("Successfully injected into world."); - - INJECT_LOCK.unlock(); - } - } -} diff --git a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSWorldProperties.java b/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSWorldProperties.java deleted file mode 100644 index 2cda90452..000000000 --- a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/NMSWorldProperties.java +++ /dev/null @@ -1,36 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R3; - -import net.minecraft.world.level.LevelHeightAccessor; - -import com.dfsek.terra.api.world.info.WorldProperties; - - -public class NMSWorldProperties implements WorldProperties { - private final long seed; - private final LevelHeightAccessor height; - - public NMSWorldProperties(long seed, LevelHeightAccessor height) { - this.seed = seed; - this.height = height; - } - - @Override - public Object getHandle() { - return height; - } - - @Override - public long getSeed() { - return seed; - } - - @Override - public int getMaxHeight() { - return height.getMaxBuildHeight(); - } - - @Override - public int getMinHeight() { - return height.getMinBuildHeight(); - } -} diff --git a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/Reflection.java b/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/Reflection.java deleted file mode 100644 index 43d362ee6..000000000 --- a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/Reflection.java +++ /dev/null @@ -1,52 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R3; - -import net.minecraft.core.Holder; -import net.minecraft.core.Holder.Reference; -import net.minecraft.core.MappedRegistry; -import net.minecraft.world.level.LevelAccessor; -import net.minecraft.world.level.StructureManager; -import xyz.jpenilla.reflectionremapper.ReflectionRemapper; -import xyz.jpenilla.reflectionremapper.proxy.ReflectionProxyFactory; -import xyz.jpenilla.reflectionremapper.proxy.annotation.FieldGetter; -import xyz.jpenilla.reflectionremapper.proxy.annotation.FieldSetter; -import xyz.jpenilla.reflectionremapper.proxy.annotation.MethodName; -import xyz.jpenilla.reflectionremapper.proxy.annotation.Proxies; - - -public class Reflection { - public static final MappedRegistryProxy MAPPED_REGISTRY; - public static final StructureManagerProxy STRUCTURE_MANAGER; - - public static final ReferenceProxy REFERENCE; - - static { - ReflectionRemapper reflectionRemapper = ReflectionRemapper.forReobfMappingsInPaperJar(); - ReflectionProxyFactory reflectionProxyFactory = ReflectionProxyFactory.create(reflectionRemapper, - Reflection.class.getClassLoader()); - - MAPPED_REGISTRY = reflectionProxyFactory.reflectionProxy(MappedRegistryProxy.class); - STRUCTURE_MANAGER = reflectionProxyFactory.reflectionProxy(StructureManagerProxy.class); - REFERENCE = reflectionProxyFactory.reflectionProxy(ReferenceProxy.class); - } - - - @Proxies(MappedRegistry.class) - public interface MappedRegistryProxy { - @FieldSetter("frozen") - void setFrozen(MappedRegistry instance, boolean frozen); - } - - - @Proxies(StructureManager.class) - public interface StructureManagerProxy { - @FieldGetter("level") - LevelAccessor getLevel(StructureManager instance); - } - - - @Proxies(Holder.Reference.class) - public interface ReferenceProxy { - @MethodName("bindValue") - void invokeBindValue(Reference instance, T value); - } -} diff --git a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/RegistryFetcher.java b/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/RegistryFetcher.java deleted file mode 100644 index e033491bb..000000000 --- a/platforms/bukkit/nms/v1_19_R3/src/main/java/com/dfsek/terra/bukkit/nms/v1_19_R3/RegistryFetcher.java +++ /dev/null @@ -1,24 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_19_R3; - -import net.minecraft.core.Registry; -import net.minecraft.core.registries.Registries; -import net.minecraft.resources.ResourceKey; -import net.minecraft.server.dedicated.DedicatedServer; -import net.minecraft.world.level.biome.Biome; -import org.bukkit.Bukkit; -import org.bukkit.craftbukkit.v1_19_R3.CraftServer; - - -public class RegistryFetcher { - private static Registry getRegistry(ResourceKey> key) { - CraftServer craftserver = (CraftServer) Bukkit.getServer(); - DedicatedServer dedicatedserver = craftserver.getServer(); - return dedicatedserver - .registryAccess() - .registryOrThrow(key); - } - - public static Registry biomeRegistry() { - return getRegistry(Registries.BIOME); - } -} diff --git a/platforms/bukkit/nms/v1_20_R1/build.gradle.kts b/platforms/bukkit/nms/v1_20_R1/build.gradle.kts deleted file mode 100644 index c3c0d9809..000000000 --- a/platforms/bukkit/nms/v1_20_R1/build.gradle.kts +++ /dev/null @@ -1,17 +0,0 @@ -apply(plugin = "io.papermc.paperweight.userdev") - -repositories { - maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") -} - -dependencies { - api(project(":platforms:bukkit:common")) - paperDevBundle("1.20.1-R0.1-SNAPSHOT") - implementation("xyz.jpenilla", "reflection-remapper", Versions.Bukkit.reflectionRemapper) -} - -tasks { - assemble { - dependsOn("reobfJar") - } -} \ No newline at end of file diff --git a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/AwfulBukkitHacks.java b/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/AwfulBukkitHacks.java deleted file mode 100644 index 7994a0074..000000000 --- a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/AwfulBukkitHacks.java +++ /dev/null @@ -1,101 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R1; - -import com.google.common.collect.ImmutableMap; -import com.mojang.serialization.Lifecycle; -import net.minecraft.core.Holder; -import net.minecraft.core.Holder.Reference; -import net.minecraft.core.MappedRegistry; -import net.minecraft.core.WritableRegistry; -import net.minecraft.core.registries.Registries; -import net.minecraft.resources.ResourceKey; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.tags.TagKey; -import net.minecraft.world.level.biome.Biome; -import org.bukkit.NamespacedKey; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Objects; - -import com.dfsek.terra.bukkit.world.BukkitPlatformBiome; -import com.dfsek.terra.registry.master.ConfigRegistry; - - -public class AwfulBukkitHacks { - private static final Logger LOGGER = LoggerFactory.getLogger(AwfulBukkitHacks.class); - - private static final Map> terraBiomeMap = new HashMap<>(); - - public static void registerBiomes(ConfigRegistry configRegistry) { - try { - LOGGER.info("Hacking biome registry..."); - WritableRegistry biomeRegistry = (WritableRegistry) RegistryFetcher.biomeRegistry(); - - Reflection.MAPPED_REGISTRY.setFrozen((MappedRegistry) biomeRegistry, false); - - configRegistry.forEach(pack -> pack.getRegistry(com.dfsek.terra.api.world.biome.Biome.class).forEach((key, biome) -> { - try { - BukkitPlatformBiome platformBiome = (BukkitPlatformBiome) biome.getPlatformBiome(); - NamespacedKey vanillaBukkitKey = platformBiome.getHandle().getKey(); - ResourceLocation vanillaMinecraftKey = new ResourceLocation(vanillaBukkitKey.getNamespace(), vanillaBukkitKey.getKey()); - Biome platform = NMSBiomeInjector.createBiome(biome, Objects.requireNonNull(biomeRegistry.get(vanillaMinecraftKey))); - - ResourceKey delegateKey = ResourceKey.create( - Registries.BIOME, - new ResourceLocation("terra", NMSBiomeInjector.createBiomeID(pack, key)) - ); - - Reference holder = biomeRegistry.register(delegateKey, platform, Lifecycle.stable()); - Reflection.REFERENCE.invokeBindValue(holder, platform); // IMPORTANT: bind holder. - - platformBiome.getContext().put(new NMSBiomeInfo(delegateKey)); - - terraBiomeMap.computeIfAbsent(vanillaMinecraftKey, i -> new ArrayList<>()).add(delegateKey.location()); - - LOGGER.debug("Registered biome: " + delegateKey); - } catch(NoSuchFieldException | SecurityException | IllegalArgumentException | IllegalAccessException e) { - throw new RuntimeException(e); - } - })); - - Reflection.MAPPED_REGISTRY.setFrozen((MappedRegistry) biomeRegistry, true); // freeze registry again :) - - LOGGER.info("Doing tag garbage...."); - Map, List>> collect = biomeRegistry - .getTags() // streamKeysAndEntries - .collect(HashMap::new, - (map, pair) -> - map.put(pair.getFirst(), new ArrayList<>(pair.getSecond().stream().toList())), - HashMap::putAll); - - terraBiomeMap - .forEach((vb, terraBiomes) -> - NMSBiomeInjector.getEntry(biomeRegistry, vb).ifPresentOrElse( - vanilla -> terraBiomes.forEach( - tb -> NMSBiomeInjector.getEntry(biomeRegistry, tb).ifPresentOrElse( - terra -> { - LOGGER.debug("{} (vanilla for {}): {}", - vanilla.unwrapKey().orElseThrow().location(), - terra.unwrapKey().orElseThrow().location(), - vanilla.tags().toList()); - vanilla.tags() - .forEach(tag -> collect - .computeIfAbsent(tag, t -> new ArrayList<>()) - .add(terra)); - }, - () -> LOGGER.error("No such biome: {}", tb))), - () -> LOGGER.error("No vanilla biome: {}", vb))); - - biomeRegistry.resetTags(); - biomeRegistry.bindTags(ImmutableMap.copyOf(collect)); - - } catch(SecurityException | IllegalArgumentException exception) { - throw new RuntimeException(exception); - } - } -} - diff --git a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSBiomeInfo.java b/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSBiomeInfo.java deleted file mode 100644 index 7d8203ce3..000000000 --- a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSBiomeInfo.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R1; - -import net.minecraft.resources.ResourceKey; -import net.minecraft.world.level.biome.Biome; - -import com.dfsek.terra.api.properties.Properties; - - -public record NMSBiomeInfo(ResourceKey biomeKey) implements Properties { -} diff --git a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSBiomeInjector.java b/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSBiomeInjector.java deleted file mode 100644 index 8c13d05b1..000000000 --- a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSBiomeInjector.java +++ /dev/null @@ -1,78 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R1; - -import net.minecraft.core.Holder; -import net.minecraft.core.Registry; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.biome.BiomeSpecialEffects; - -import java.util.Locale; -import java.util.Objects; -import java.util.Optional; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.bukkit.config.VanillaBiomeProperties; - - -public class NMSBiomeInjector { - - public static Optional> getEntry(Registry registry, ResourceLocation identifier) { - return registry.getOptional(identifier) - .flatMap(registry::getResourceKey) - .flatMap(registry::getHolder); - } - - public static Biome createBiome(com.dfsek.terra.api.world.biome.Biome biome, Biome vanilla) - throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException { - Biome.BiomeBuilder builder = new Biome.BiomeBuilder(); - - builder - .downfall(vanilla.climateSettings.downfall()) - .temperature(vanilla.getBaseTemperature()) - .mobSpawnSettings(vanilla.getMobSettings()) - .generationSettings(vanilla.getGenerationSettings()); - - - BiomeSpecialEffects.Builder effects = new BiomeSpecialEffects.Builder(); - - effects.grassColorModifier(vanilla.getSpecialEffects().getGrassColorModifier()); - - VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); - - effects.fogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFogColor(), vanilla.getFogColor())) - - .waterColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterColor(), vanilla.getWaterColor())) - - .waterFogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterFogColor(), vanilla.getWaterFogColor())) - - .skyColor(Objects.requireNonNullElse(vanillaBiomeProperties.getSkyColor(), vanilla.getSkyColor())); - - if(vanillaBiomeProperties.getFoliageColor() == null) { - vanilla.getSpecialEffects().getFoliageColorOverride().ifPresent(effects::foliageColorOverride); - } else { - effects.foliageColorOverride(vanillaBiomeProperties.getFoliageColor()); - } - - if(vanillaBiomeProperties.getGrassColor() == null) { - vanilla.getSpecialEffects().getGrassColorOverride().ifPresent(effects::grassColorOverride); - } else { - // grass - effects.grassColorOverride(vanillaBiomeProperties.getGrassColor()); - } - - vanilla.getAmbientLoop().ifPresent(effects::ambientLoopSound); - vanilla.getAmbientAdditions().ifPresent(effects::ambientAdditionsSound); - vanilla.getAmbientMood().ifPresent(effects::ambientMoodSound); - vanilla.getBackgroundMusic().ifPresent(effects::backgroundMusic); - vanilla.getAmbientParticle().ifPresent(effects::ambientParticle); - - builder.specialEffects(effects.build()); - - return builder.build(); - } - - public static String createBiomeID(ConfigPack pack, com.dfsek.terra.api.registry.key.RegistryKey biomeID) { - return pack.getID() - .toLowerCase() + "/" + biomeID.getNamespace().toLowerCase(Locale.ROOT) + "/" + biomeID.getID().toLowerCase(Locale.ROOT); - } -} diff --git a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSBiomeProvider.java b/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSBiomeProvider.java deleted file mode 100644 index 48f048318..000000000 --- a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSBiomeProvider.java +++ /dev/null @@ -1,49 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R1; - -import com.mojang.serialization.Codec; -import net.minecraft.core.Holder; -import net.minecraft.core.Registry; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.biome.BiomeSource; -import net.minecraft.world.level.biome.Climate.Sampler; -import org.jetbrains.annotations.NotNull; - -import java.util.stream.Stream; - -import com.dfsek.terra.api.world.biome.generation.BiomeProvider; -import com.dfsek.terra.bukkit.world.BukkitPlatformBiome; - - -public class NMSBiomeProvider extends BiomeSource { - private final BiomeProvider delegate; - private final long seed; - private final Registry biomeRegistry = RegistryFetcher.biomeRegistry(); - - public NMSBiomeProvider(BiomeProvider delegate, long seed) { - super(); - this.delegate = delegate; - this.seed = seed; - } - - @Override - protected Stream> collectPossibleBiomes() { - return delegate.stream() - .map(biome -> RegistryFetcher.biomeRegistry() - .getHolderOrThrow(((BukkitPlatformBiome) biome.getPlatformBiome()).getContext() - .get(NMSBiomeInfo.class) - .biomeKey())); - } - - @Override - protected @NotNull Codec codec() { - return BiomeSource.CODEC; - } - - @Override - public @NotNull Holder getNoiseBiome(int x, int y, int z, @NotNull Sampler sampler) { - return biomeRegistry.getHolderOrThrow(((BukkitPlatformBiome) delegate.getBiome(x << 2, y << 2, z << 2, seed) - .getPlatformBiome()).getContext() - .get(NMSBiomeInfo.class) - .biomeKey()); - } -} diff --git a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSChunkGeneratorDelegate.java b/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSChunkGeneratorDelegate.java deleted file mode 100644 index 565d0cbc4..000000000 --- a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSChunkGeneratorDelegate.java +++ /dev/null @@ -1,171 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R1; - -import com.mojang.serialization.Codec; -import net.minecraft.core.BlockPos; -import net.minecraft.server.level.WorldGenRegion; -import net.minecraft.world.level.LevelAccessor; -import net.minecraft.world.level.LevelHeightAccessor; -import net.minecraft.world.level.NoiseColumn; -import net.minecraft.world.level.StructureManager; -import net.minecraft.world.level.WorldGenLevel; -import net.minecraft.world.level.biome.BiomeManager; -import net.minecraft.world.level.block.Blocks; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.chunk.ChunkAccess; -import net.minecraft.world.level.chunk.ChunkGenerator; -import net.minecraft.world.level.levelgen.Beardifier; -import net.minecraft.world.level.levelgen.DensityFunction.SinglePointContext; -import net.minecraft.world.level.levelgen.GenerationStep.Carving; -import net.minecraft.world.level.levelgen.Heightmap.Types; -import net.minecraft.world.level.levelgen.RandomState; -import net.minecraft.world.level.levelgen.blending.Blender; -import org.bukkit.craftbukkit.v1_20_R1.block.data.CraftBlockData; -import org.jetbrains.annotations.NotNull; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.List; -import java.util.concurrent.CompletableFuture; -import java.util.concurrent.Executor; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.api.world.biome.generation.BiomeProvider; -import com.dfsek.terra.api.world.info.WorldProperties; -import com.dfsek.terra.bukkit.config.PreLoadCompatibilityOptions; -import com.dfsek.terra.bukkit.world.BukkitWorldProperties; -import com.dfsek.terra.bukkit.world.block.data.BukkitBlockState; - - -public class NMSChunkGeneratorDelegate extends ChunkGenerator { - private static final Logger LOGGER = LoggerFactory.getLogger(NMSChunkGeneratorDelegate.class); - private final com.dfsek.terra.api.world.chunk.generation.ChunkGenerator delegate; - - private final ChunkGenerator vanilla; - private final ConfigPack pack; - - private final long seed; - - public NMSChunkGeneratorDelegate(ChunkGenerator vanilla, ConfigPack pack, NMSBiomeProvider biomeProvider, long seed) { - super(biomeProvider); - this.delegate = pack.getGeneratorProvider().newInstance(pack); - this.vanilla = vanilla; - this.pack = pack; - this.seed = seed; - } - - @Override - protected @NotNull Codec codec() { - return ChunkGenerator.CODEC; - } - - @Override - public void applyCarvers(@NotNull WorldGenRegion chunkRegion, long seed, @NotNull RandomState noiseConfig, @NotNull BiomeManager world, - @NotNull StructureManager structureAccessor, @NotNull ChunkAccess chunk, @NotNull Carving carverStep) { - // no-op - } - - @Override - public void buildSurface(@NotNull WorldGenRegion region, @NotNull StructureManager structures, @NotNull RandomState noiseConfig, - @NotNull ChunkAccess chunk) { - // no-op - } - - @Override - public void applyBiomeDecoration(@NotNull WorldGenLevel world, @NotNull ChunkAccess chunk, - @NotNull StructureManager structureAccessor) { - vanilla.applyBiomeDecoration(world, chunk, structureAccessor); - } - - @Override - public void spawnOriginalMobs(@NotNull WorldGenRegion region) { - vanilla.spawnOriginalMobs(region); - } - - @Override - public int getGenDepth() { - return vanilla.getGenDepth(); - } - - @Override - public @NotNull CompletableFuture fillFromNoise(@NotNull Executor executor, @NotNull Blender blender, - @NotNull RandomState noiseConfig, - @NotNull StructureManager structureAccessor, @NotNull ChunkAccess chunk) { - return vanilla.fillFromNoise(executor, blender, noiseConfig, structureAccessor, chunk) - .thenApply(c -> { - LevelAccessor level = Reflection.STRUCTURE_MANAGER.getLevel(structureAccessor); - BiomeProvider biomeProvider = pack.getBiomeProvider(); - PreLoadCompatibilityOptions compatibilityOptions = pack.getContext().get(PreLoadCompatibilityOptions.class); - if(compatibilityOptions.isBeard()) { - beard(structureAccessor, chunk, new BukkitWorldProperties(level.getMinecraftWorld().getWorld()), - biomeProvider, compatibilityOptions); - } - return c; - }); - } - - private void beard(StructureManager structureAccessor, ChunkAccess chunk, WorldProperties world, BiomeProvider biomeProvider, - PreLoadCompatibilityOptions compatibilityOptions) { - Beardifier structureWeightSampler = Beardifier.forStructuresInChunk(structureAccessor, chunk.getPos()); - double threshold = compatibilityOptions.getBeardThreshold(); - double airThreshold = compatibilityOptions.getAirThreshold(); - int xi = chunk.getPos().x << 4; - int zi = chunk.getPos().z << 4; - for(int x = 0; x < 16; x++) { - for(int z = 0; z < 16; z++) { - int depth = 0; - for(int y = world.getMaxHeight(); y >= world.getMinHeight(); y--) { - double noise = structureWeightSampler.compute(new SinglePointContext(x + xi, y, z + zi)); - if(noise > threshold) { - chunk.setBlockState(new BlockPos(x, y, z), ((CraftBlockData) ((BukkitBlockState) delegate - .getPalette(x + xi, y, z + zi, world, biomeProvider) - .get(depth, x + xi, y, z + zi, world.getSeed())).getHandle()).getState(), false); - depth++; - } else if(noise < airThreshold) { - chunk.setBlockState(new BlockPos(x, y, z), Blocks.AIR.defaultBlockState(), false); - } else { - depth = 0; - } - } - } - } - } - - @Override - public int getSeaLevel() { - return vanilla.getSeaLevel(); - } - - @Override - public int getMinY() { - return vanilla.getMinY(); - } - - @Override - public int getBaseHeight(int x, int z, @NotNull Types heightmap, @NotNull LevelHeightAccessor world, @NotNull RandomState noiseConfig) { - WorldProperties properties = new NMSWorldProperties(seed, world); - int y = properties.getMaxHeight(); - BiomeProvider biomeProvider = pack.getBiomeProvider(); - while(y >= getMinY() && !heightmap.isOpaque().test( - ((CraftBlockData) delegate.getBlock(properties, x, y - 1, z, biomeProvider).getHandle()).getState())) { - y--; - } - return y; - } - - @Override - public @NotNull NoiseColumn getBaseColumn(int x, int z, @NotNull LevelHeightAccessor world, @NotNull RandomState noiseConfig) { - BlockState[] array = new BlockState[world.getHeight()]; - WorldProperties properties = new NMSWorldProperties(seed, world); - BiomeProvider biomeProvider = pack.getBiomeProvider(); - for(int y = properties.getMaxHeight() - 1; y >= properties.getMinHeight(); y--) { - array[y - properties.getMinHeight()] = ((CraftBlockData) delegate.getBlock(properties, x, y, z, biomeProvider) - .getHandle()).getState(); - } - return new NoiseColumn(getMinY(), array); - } - - @Override - public void addDebugScreenInfo(@NotNull List text, @NotNull RandomState noiseConfig, @NotNull BlockPos pos) { - - } -} diff --git a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSInitializer.java b/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSInitializer.java deleted file mode 100644 index 6fb689ee7..000000000 --- a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSInitializer.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R1; - -import org.bukkit.Bukkit; - -import com.dfsek.terra.bukkit.PlatformImpl; -import com.dfsek.terra.bukkit.nms.Initializer; - - -public class NMSInitializer implements Initializer { - @Override - public void initialize(PlatformImpl platform) { - AwfulBukkitHacks.registerBiomes(platform.getRawConfigRegistry()); - Bukkit.getPluginManager().registerEvents(new NMSInjectListener(), platform.getPlugin()); - } -} diff --git a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSInjectListener.java b/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSInjectListener.java deleted file mode 100644 index 3f7c9e060..000000000 --- a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSInjectListener.java +++ /dev/null @@ -1,48 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R1; - -import net.minecraft.server.level.ServerLevel; -import net.minecraft.world.level.chunk.ChunkGenerator; -import org.bukkit.World; -import org.bukkit.craftbukkit.v1_20_R1.CraftWorld; -import org.bukkit.event.EventHandler; -import org.bukkit.event.Listener; -import org.bukkit.event.world.WorldInitEvent; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.HashSet; -import java.util.Set; -import java.util.concurrent.locks.ReentrantLock; - -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.bukkit.generator.BukkitChunkGeneratorWrapper; - - -public class NMSInjectListener implements Listener { - private static final Logger LOGGER = LoggerFactory.getLogger(NMSInjectListener.class); - private static final Set INJECTED = new HashSet<>(); - private static final ReentrantLock INJECT_LOCK = new ReentrantLock(); - - @EventHandler - public void onWorldInit(WorldInitEvent event) { - if(!INJECTED.contains(event.getWorld()) && - event.getWorld().getGenerator() instanceof BukkitChunkGeneratorWrapper bukkitChunkGeneratorWrapper) { - INJECT_LOCK.lock(); - INJECTED.add(event.getWorld()); - LOGGER.info("Preparing to take over the world: {}", event.getWorld().getName()); - CraftWorld craftWorld = (CraftWorld) event.getWorld(); - ServerLevel serverWorld = craftWorld.getHandle(); - - ConfigPack pack = bukkitChunkGeneratorWrapper.getPack(); - - ChunkGenerator vanilla = serverWorld.getChunkSource().getGenerator(); - NMSBiomeProvider provider = new NMSBiomeProvider(pack.getBiomeProvider(), craftWorld.getSeed()); - - serverWorld.getChunkSource().chunkMap.generator = new NMSChunkGeneratorDelegate(vanilla, pack, provider, craftWorld.getSeed()); - - LOGGER.info("Successfully injected into world."); - - INJECT_LOCK.unlock(); - } - } -} diff --git a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSWorldProperties.java b/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSWorldProperties.java deleted file mode 100644 index 48effeb5f..000000000 --- a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/NMSWorldProperties.java +++ /dev/null @@ -1,36 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R1; - -import net.minecraft.world.level.LevelHeightAccessor; - -import com.dfsek.terra.api.world.info.WorldProperties; - - -public class NMSWorldProperties implements WorldProperties { - private final long seed; - private final LevelHeightAccessor height; - - public NMSWorldProperties(long seed, LevelHeightAccessor height) { - this.seed = seed; - this.height = height; - } - - @Override - public Object getHandle() { - return height; - } - - @Override - public long getSeed() { - return seed; - } - - @Override - public int getMaxHeight() { - return height.getMaxBuildHeight(); - } - - @Override - public int getMinHeight() { - return height.getMinBuildHeight(); - } -} diff --git a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/Reflection.java b/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/Reflection.java deleted file mode 100644 index a11dd1b15..000000000 --- a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/Reflection.java +++ /dev/null @@ -1,52 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R1; - -import net.minecraft.core.Holder; -import net.minecraft.core.Holder.Reference; -import net.minecraft.core.MappedRegistry; -import net.minecraft.world.level.LevelAccessor; -import net.minecraft.world.level.StructureManager; -import xyz.jpenilla.reflectionremapper.ReflectionRemapper; -import xyz.jpenilla.reflectionremapper.proxy.ReflectionProxyFactory; -import xyz.jpenilla.reflectionremapper.proxy.annotation.FieldGetter; -import xyz.jpenilla.reflectionremapper.proxy.annotation.FieldSetter; -import xyz.jpenilla.reflectionremapper.proxy.annotation.MethodName; -import xyz.jpenilla.reflectionremapper.proxy.annotation.Proxies; - - -public class Reflection { - public static final MappedRegistryProxy MAPPED_REGISTRY; - public static final StructureManagerProxy STRUCTURE_MANAGER; - - public static final ReferenceProxy REFERENCE; - - static { - ReflectionRemapper reflectionRemapper = ReflectionRemapper.forReobfMappingsInPaperJar(); - ReflectionProxyFactory reflectionProxyFactory = ReflectionProxyFactory.create(reflectionRemapper, - Reflection.class.getClassLoader()); - - MAPPED_REGISTRY = reflectionProxyFactory.reflectionProxy(MappedRegistryProxy.class); - STRUCTURE_MANAGER = reflectionProxyFactory.reflectionProxy(StructureManagerProxy.class); - REFERENCE = reflectionProxyFactory.reflectionProxy(ReferenceProxy.class); - } - - - @Proxies(MappedRegistry.class) - public interface MappedRegistryProxy { - @FieldSetter("frozen") - void setFrozen(MappedRegistry instance, boolean frozen); - } - - - @Proxies(StructureManager.class) - public interface StructureManagerProxy { - @FieldGetter("level") - LevelAccessor getLevel(StructureManager instance); - } - - - @Proxies(Holder.Reference.class) - public interface ReferenceProxy { - @MethodName("bindValue") - void invokeBindValue(Reference instance, T value); - } -} diff --git a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/RegistryFetcher.java b/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/RegistryFetcher.java deleted file mode 100644 index c7d77462d..000000000 --- a/platforms/bukkit/nms/v1_20_R1/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R1/RegistryFetcher.java +++ /dev/null @@ -1,24 +0,0 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R1; - -import net.minecraft.core.Registry; -import net.minecraft.core.registries.Registries; -import net.minecraft.resources.ResourceKey; -import net.minecraft.server.dedicated.DedicatedServer; -import net.minecraft.world.level.biome.Biome; -import org.bukkit.Bukkit; -import org.bukkit.craftbukkit.v1_20_R1.CraftServer; - - -public class RegistryFetcher { - private static Registry getRegistry(ResourceKey> key) { - CraftServer craftserver = (CraftServer) Bukkit.getServer(); - DedicatedServer dedicatedserver = craftserver.getServer(); - return dedicatedserver - .registryAccess() - .registryOrThrow(key); - } - - public static Registry biomeRegistry() { - return getRegistry(Registries.BIOME); - } -} From 94bf67d09dc062efeb14757c812e4e252b125725 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zo=C3=AB=20Gidiere?= Date: Fri, 17 Nov 2023 14:57:14 -0700 Subject: [PATCH 005/136] fix dev env by having fabric api at runtime --- platforms/fabric/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platforms/fabric/build.gradle.kts b/platforms/fabric/build.gradle.kts index 3b977d8af..3598ae92c 100644 --- a/platforms/fabric/build.gradle.kts +++ b/platforms/fabric/build.gradle.kts @@ -29,6 +29,8 @@ dependencies { modImplementation("cloud.commandframework", "cloud-fabric", Versions.Libraries.cloud) include("cloud.commandframework", "cloud-fabric", Versions.Libraries.cloud) + + modRuntimeOnly("net.fabricmc.fabric-api", "fabric-api", Versions.Fabric.fabricAPI) } loom { From 82fbf796da35a0ed0f2c8d5c4ad7f10fc8313311 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zo=C3=AB=20Gidiere?= Date: Fri, 17 Nov 2023 15:26:53 -0700 Subject: [PATCH 006/136] Refractor BiomeUtil --- .../com/dfsek/terra/forge/util/BiomeUtil.java | 6 +- .../java/com/dfsek/terra/mod/ModPlatform.java | 1 - .../com/dfsek/terra/mod/util/BiomeUtil.java | 108 ++++++++++++++++++ .../dfsek/terra/mod/util/MinecraftUtil.java | 89 +-------------- .../com/dfsek/terra/mod/util/TagUtil.java | 2 +- .../terra/lifecycle/LifecyclePlatform.java | 4 +- ...BiomeUtil.java => LifecycleBiomeUtil.java} | 14 ++- .../terra/lifecycle/util/LifecycleUtil.java | 2 +- 8 files changed, 124 insertions(+), 102 deletions(-) create mode 100644 platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/BiomeUtil.java rename platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/{BiomeUtil.java => LifecycleBiomeUtil.java} (86%) diff --git a/platforms/forge/src/main/java/com/dfsek/terra/forge/util/BiomeUtil.java b/platforms/forge/src/main/java/com/dfsek/terra/forge/util/BiomeUtil.java index 660c750af..57046330b 100644 --- a/platforms/forge/src/main/java/com/dfsek/terra/forge/util/BiomeUtil.java +++ b/platforms/forge/src/main/java/com/dfsek/terra/forge/util/BiomeUtil.java @@ -60,13 +60,13 @@ public final class BiomeUtil { } else { VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); - net.minecraft.world.biome.Biome minecraftBiome = MinecraftUtil.createBiome(biome, + net.minecraft.world.biome.Biome minecraftBiome = com.dfsek.terra.mod.util.BiomeUtil.createBiome(biome, ForgeRegistries.BIOMES.getDelegateOrThrow( vanilla.getKey().orElseThrow()) .value(), vanillaBiomeProperties); - Identifier identifier = new Identifier("terra", MinecraftUtil.createBiomeID(pack, id)); + Identifier identifier = new Identifier("terra", com.dfsek.terra.mod.util.BiomeUtil.createBiomeID(pack, id)); if(ForgeRegistries.BIOMES.containsKey(identifier)) { ((ProtoPlatformBiome) biome.getPlatformBiome()).setDelegate(ForgeRegistries.BIOMES.getHolder(identifier) @@ -83,7 +83,7 @@ public final class BiomeUtil { Objects.requireNonNullElse(vanillaBiomeProperties.getVillagerType(), villagerMap.getOrDefault(vanilla.getKey().orElseThrow(), VillagerType.PLAINS))); - MinecraftUtil.TERRA_BIOME_MAP.computeIfAbsent(vanilla.getKey().orElseThrow().getValue(), i -> new ArrayList<>()).add( + com.dfsek.terra.mod.util.BiomeUtil.TERRA_BIOME_MAP.computeIfAbsent(vanilla.getKey().orElseThrow().getValue(), i -> new ArrayList<>()).add( identifier); } } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/ModPlatform.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/ModPlatform.java index 3a86a05ac..bb4a68f75 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/ModPlatform.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/ModPlatform.java @@ -90,7 +90,6 @@ public abstract class ModPlatform extends AbstractPlatform { .registerLoader(EntityType.class, EntityTypeTemplate::new) .registerLoader(SpawnCostConfig.class, SpawnCostConfig::new) .registerLoader(SpawnEntry.class, SpawnEntryTemplate::new) - .registerLoader(SpawnGroup.class, SpawnGroupTemplate::new) .registerLoader(SpawnTypeConfig.class, SpawnTypeConfig::new) .registerLoader(SpawnSettings.class, SpawnSettingsTemplate::new) .registerLoader(VillagerType.class, VillagerTypeTemplate::new); diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/BiomeUtil.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/BiomeUtil.java new file mode 100644 index 000000000..0352e3089 --- /dev/null +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/BiomeUtil.java @@ -0,0 +1,108 @@ +package com.dfsek.terra.mod.util; + +import com.dfsek.terra.api.config.ConfigPack; +import com.dfsek.terra.mod.config.VanillaBiomeProperties; +import com.dfsek.terra.mod.mixin.access.BiomeAccessor; + +import net.minecraft.registry.Registries; +import net.minecraft.util.Identifier; +import net.minecraft.world.biome.Biome; +import net.minecraft.world.biome.Biome.Builder; +import net.minecraft.world.biome.BiomeEffects; +import net.minecraft.world.biome.GenerationSettings; + +import java.util.HashMap; +import java.util.List; +import java.util.Locale; +import java.util.Map; +import java.util.Objects; + + +public class BiomeUtil { + public static final Map> + TERRA_BIOME_MAP = new HashMap<>(); + public static Biome createBiome(com.dfsek.terra.api.world.biome.Biome biome, Biome vanilla, + VanillaBiomeProperties vanillaBiomeProperties) { + GenerationSettings.Builder generationSettings = new GenerationSettings.Builder(); + + BiomeEffects.Builder effects = new BiomeEffects.Builder(); + + net.minecraft.world.biome.Biome.Builder builder = new Builder(); + + effects.waterColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterColor(), vanilla.getWaterColor())) + .waterFogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterFogColor(), vanilla.getWaterFogColor())) + .fogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFogColor(), vanilla.getFogColor())) + .skyColor(Objects.requireNonNullElse(vanillaBiomeProperties.getSkyColor(), vanilla.getSkyColor())) + .grassColorModifier( + Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColorModifier(), + vanilla.getEffects().getGrassColorModifier())); + + if(vanillaBiomeProperties.getFoliageColor() == null) { + vanilla.getEffects().getFoliageColor().ifPresent(effects::foliageColor); + } else { + effects.foliageColor(vanillaBiomeProperties.getFoliageColor()); + } + + if(vanillaBiomeProperties.getGrassColor() == null) { + vanilla.getEffects().getGrassColor().ifPresent(effects::grassColor); + } else { + effects.grassColor(vanillaBiomeProperties.getGrassColor()); + } + + if(vanillaBiomeProperties.getParticleConfig() == null) { + vanilla.getEffects().getParticleConfig().ifPresent(effects::particleConfig); + } else { + effects.particleConfig(vanillaBiomeProperties.getParticleConfig()); + } + + if(vanillaBiomeProperties.getLoopSound() == null) { + vanilla.getEffects().getLoopSound().ifPresent(effects::loopSound); + } else { + effects.loopSound(Registries.SOUND_EVENT.getEntry(vanillaBiomeProperties.getLoopSound())); + } + + if(vanillaBiomeProperties.getMoodSound() == null) { + vanilla.getEffects().getMoodSound().ifPresent(effects::moodSound); + } else { + effects.moodSound(vanillaBiomeProperties.getMoodSound()); + } + + if(vanillaBiomeProperties.getAdditionsSound() == null) { + vanilla.getEffects().getAdditionsSound().ifPresent(effects::additionsSound); + } else { + effects.additionsSound(vanillaBiomeProperties.getAdditionsSound()); + } + + if(vanillaBiomeProperties.getMusic() == null) { + vanilla.getEffects().getMusic().ifPresent(effects::music); + } else { + effects.music(vanillaBiomeProperties.getMusic()); + } + + builder.precipitation(Objects.requireNonNullElse(vanillaBiomeProperties.getPrecipitation(), vanilla.hasPrecipitation())); + + builder.temperature(Objects.requireNonNullElse(vanillaBiomeProperties.getTemperature(), vanilla.getTemperature())); + + builder.downfall(Objects.requireNonNullElse(vanillaBiomeProperties.getDownfall(), + ((BiomeAccessor) ((Object) vanilla)).getWeather().downfall())); + + builder.temperatureModifier(Objects.requireNonNullElse(vanillaBiomeProperties.getTemperatureModifier(), + ((BiomeAccessor) ((Object) vanilla)).getWeather().temperatureModifier())); + + builder.spawnSettings(Objects.requireNonNullElse(vanillaBiomeProperties.getSpawnSettings(), vanilla.getSpawnSettings())); + + return builder + .effects(effects.build()) + .generationSettings(generationSettings.build()) + .build(); + } + + public static String createBiomeID(ConfigPack pack, com.dfsek.terra.api.registry.key.RegistryKey biomeID) { + return pack.getID() + .toLowerCase() + "/" + biomeID.getNamespace().toLowerCase(Locale.ROOT) + "/" + biomeID.getID().toLowerCase(Locale.ROOT); + } + + public static Map> getTerraBiomeMap() { + return Map.copyOf(TERRA_BIOME_MAP); + } +} diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java index 692d0da5a..674f5b5bb 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java @@ -38,8 +38,6 @@ import com.dfsek.terra.mod.mixin_ifaces.FloraFeatureHolder; public final class MinecraftUtil { public static final Logger logger = LoggerFactory.getLogger(MinecraftUtil.class); - public static final Map> - TERRA_BIOME_MAP = new HashMap<>(); private MinecraftUtil() { @@ -65,7 +63,7 @@ public final class MinecraftUtil { public static void registerFlora(Registry biomes) { logger.info("Injecting flora into Terra biomes..."); - TERRA_BIOME_MAP + BiomeUtil.TERRA_BIOME_MAP .forEach((vb, terraBiomes) -> biomes.getOrEmpty(vb) .ifPresentOrElse(vanilla -> terraBiomes @@ -88,92 +86,7 @@ public final class MinecraftUtil { } - public static Map> getTerraBiomeMap() { - return Map.copyOf(TERRA_BIOME_MAP); - } - public static RegistryKey registerKey(Identifier identifier) { return RegistryKey.of(RegistryKeys.BIOME, identifier); } - - public static Biome createBiome(com.dfsek.terra.api.world.biome.Biome biome, Biome vanilla, - VanillaBiomeProperties vanillaBiomeProperties) { - GenerationSettings.Builder generationSettings = new GenerationSettings.Builder(); - - BiomeEffects.Builder effects = new BiomeEffects.Builder(); - - net.minecraft.world.biome.Biome.Builder builder = new Builder(); - - effects.waterColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterColor(), vanilla.getWaterColor())) - .waterFogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterFogColor(), vanilla.getWaterFogColor())) - .fogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFogColor(), vanilla.getFogColor())) - .skyColor(Objects.requireNonNullElse(vanillaBiomeProperties.getSkyColor(), vanilla.getSkyColor())) - .grassColorModifier( - Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColorModifier(), - vanilla.getEffects().getGrassColorModifier())); - - if(vanillaBiomeProperties.getFoliageColor() == null) { - vanilla.getEffects().getFoliageColor().ifPresent(effects::foliageColor); - } else { - effects.foliageColor(vanillaBiomeProperties.getFoliageColor()); - } - - if(vanillaBiomeProperties.getGrassColor() == null) { - vanilla.getEffects().getGrassColor().ifPresent(effects::grassColor); - } else { - effects.grassColor(vanillaBiomeProperties.getGrassColor()); - } - - if(vanillaBiomeProperties.getParticleConfig() == null) { - vanilla.getEffects().getParticleConfig().ifPresent(effects::particleConfig); - } else { - effects.particleConfig(vanillaBiomeProperties.getParticleConfig()); - } - - if(vanillaBiomeProperties.getLoopSound() == null) { - vanilla.getEffects().getLoopSound().ifPresent(effects::loopSound); - } else { - effects.loopSound(Registries.SOUND_EVENT.getEntry(vanillaBiomeProperties.getLoopSound())); - } - - if(vanillaBiomeProperties.getMoodSound() == null) { - vanilla.getEffects().getMoodSound().ifPresent(effects::moodSound); - } else { - effects.moodSound(vanillaBiomeProperties.getMoodSound()); - } - - if(vanillaBiomeProperties.getAdditionsSound() == null) { - vanilla.getEffects().getAdditionsSound().ifPresent(effects::additionsSound); - } else { - effects.additionsSound(vanillaBiomeProperties.getAdditionsSound()); - } - - if(vanillaBiomeProperties.getMusic() == null) { - vanilla.getEffects().getMusic().ifPresent(effects::music); - } else { - effects.music(vanillaBiomeProperties.getMusic()); - } - - builder.precipitation(Objects.requireNonNullElse(vanillaBiomeProperties.getPrecipitation(), vanilla.hasPrecipitation())); - - builder.temperature(Objects.requireNonNullElse(vanillaBiomeProperties.getTemperature(), vanilla.getTemperature())); - - builder.downfall(Objects.requireNonNullElse(vanillaBiomeProperties.getDownfall(), - ((BiomeAccessor) ((Object) vanilla)).getWeather().downfall())); - - builder.temperatureModifier(Objects.requireNonNullElse(vanillaBiomeProperties.getTemperatureModifier(), - ((BiomeAccessor) ((Object) vanilla)).getWeather().temperatureModifier())); - - builder.spawnSettings(Objects.requireNonNullElse(vanillaBiomeProperties.getSpawnSettings(), vanilla.getSpawnSettings())); - - return builder - .effects(effects.build()) - .generationSettings(generationSettings.build()) - .build(); - } - - public static String createBiomeID(ConfigPack pack, com.dfsek.terra.api.registry.key.RegistryKey biomeID) { - return pack.getID() - .toLowerCase() + "/" + biomeID.getNamespace().toLowerCase(Locale.ROOT) + "/" + biomeID.getID().toLowerCase(Locale.ROOT); - } } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java index 36ed6afea..31cc3fb53 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java @@ -54,7 +54,7 @@ public final class TagUtil { logger.info("Doing biome tag garbage...."); Map, List>> collect = tagsToMutableMap(registry); - MinecraftUtil + BiomeUtil .getTerraBiomeMap() .forEach((vb, terraBiomes) -> MinecraftUtil diff --git a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java index be845eb19..0ef9a0ee3 100644 --- a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java +++ b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java @@ -22,7 +22,7 @@ import java.util.stream.Stream; import com.dfsek.terra.addon.EphemeralAddon; import com.dfsek.terra.api.addon.BaseAddon; -import com.dfsek.terra.lifecycle.util.BiomeUtil; +import com.dfsek.terra.lifecycle.util.LifecycleBiomeUtil; import com.dfsek.terra.mod.CommonPlatform; import com.dfsek.terra.mod.ModPlatform; import com.dfsek.terra.mod.generation.MinecraftChunkGeneratorWrapper; @@ -68,7 +68,7 @@ public abstract class LifecyclePlatform extends ModPlatform { if(server != null) { - BiomeUtil.registerBiomes(server.getRegistryManager().get(RegistryKeys.BIOME)); + LifecycleBiomeUtil.registerBiomes(server.getRegistryManager().get(RegistryKeys.BIOME)); server.reloadResources(server.getDataPackManager().getNames()).exceptionally(throwable -> { LOGGER.warn("Failed to execute reload", throwable); return null; diff --git a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/BiomeUtil.java b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/LifecycleBiomeUtil.java similarity index 86% rename from platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/BiomeUtil.java rename to platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/LifecycleBiomeUtil.java index 5d5ab11c0..da373795e 100644 --- a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/BiomeUtil.java +++ b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/LifecycleBiomeUtil.java @@ -1,5 +1,7 @@ package com.dfsek.terra.lifecycle.util; +import com.dfsek.terra.mod.util.BiomeUtil; + import net.minecraft.registry.Registry; import net.minecraft.registry.RegistryKey; import net.minecraft.registry.RegistryKeys; @@ -22,10 +24,10 @@ import com.dfsek.terra.mod.mixin.access.VillagerTypeAccessor; import com.dfsek.terra.mod.util.MinecraftUtil; -public final class BiomeUtil { - private static final Logger logger = LoggerFactory.getLogger(BiomeUtil.class); +public final class LifecycleBiomeUtil { + private static final Logger logger = LoggerFactory.getLogger(LifecycleBiomeUtil.class); - private BiomeUtil() { + private LifecycleBiomeUtil() { } @@ -55,10 +57,10 @@ public final class BiomeUtil { } else { VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); - net.minecraft.world.biome.Biome minecraftBiome = MinecraftUtil.createBiome(biome, Objects.requireNonNull(registry.get(vanilla)), + net.minecraft.world.biome.Biome minecraftBiome = BiomeUtil.createBiome(biome, Objects.requireNonNull(registry.get(vanilla)), vanillaBiomeProperties); - Identifier identifier = new Identifier("terra", MinecraftUtil.createBiomeID(pack, id)); + Identifier identifier = new Identifier("terra", BiomeUtil.createBiomeID(pack, id)); if(registry.containsId(identifier)) { ((ProtoPlatformBiome) biome.getPlatformBiome()).setDelegate(MinecraftUtil.getEntry(registry, identifier) @@ -76,7 +78,7 @@ public final class BiomeUtil { Objects.requireNonNullElse(vanillaBiomeProperties.getVillagerType(), villagerMap.getOrDefault(vanilla, VillagerType.PLAINS))); - MinecraftUtil.TERRA_BIOME_MAP.computeIfAbsent(vanilla.getValue(), i -> new ArrayList<>()).add(identifier); + BiomeUtil.TERRA_BIOME_MAP.computeIfAbsent(vanilla.getValue(), i -> new ArrayList<>()).add(identifier); } } diff --git a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/LifecycleUtil.java b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/LifecycleUtil.java index a251bedbd..f9427dfa5 100644 --- a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/LifecycleUtil.java +++ b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/LifecycleUtil.java @@ -18,7 +18,7 @@ public final class LifecycleUtil { public static void initialize(MutableRegistry biomeMutableRegistry, MutableRegistry worldPresetMutableRegistry) { CommonPlatform.get().getEventManager().callEvent(new PlatformInitializationEvent()); - BiomeUtil.registerBiomes(biomeMutableRegistry); + LifecycleBiomeUtil.registerBiomes(biomeMutableRegistry); CommonPlatform.get().registerWorldTypes( (id, preset) -> Registry.register(worldPresetMutableRegistry, RegistryKey.of(RegistryKeys.WORLD_PRESET, id), preset)); } From 0efb0916e6d060851988d4fea2acdd1a7e8ce027 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zo=C3=AB=20Gidiere?= Date: Fri, 17 Nov 2023 16:16:18 -0700 Subject: [PATCH 007/136] Initial Bukkit Biome Config --- .../config/BiomeAdditionsSoundTemplate.java | 28 +++ .../config/BiomeMoodSoundTemplate.java | 36 ++++ .../config/BiomeParticleConfigTemplate.java | 34 ++++ .../v1_20_R2/config/EntityTypeTemplate.java | 21 +++ .../v1_20_R2/config/MusicSoundTemplate.java | 36 ++++ .../v1_20_R2/config/SoundEventTemplate.java | 29 +++ .../nms/v1_20_R2/config/SpawnCostConfig.java | 38 ++++ .../v1_20_R2/config/SpawnEntryTemplate.java | 31 ++++ .../config/SpawnSettingsTemplate.java | 57 ++++++ .../nms/v1_20_R2/config/SpawnTypeConfig.java | 42 +++++ .../config/VanillaBiomeProperties.java | 174 ++++++++++++++++++ .../v1_20_R2/config/VillagerTypeTemplate.java | 23 +++ .../mod/config/SpawnSettingsTemplate.java | 1 + .../mod/config/VanillaBiomeProperties.java | 2 +- 14 files changed, 551 insertions(+), 1 deletion(-) create mode 100644 platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeAdditionsSoundTemplate.java create mode 100644 platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeMoodSoundTemplate.java create mode 100644 platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeParticleConfigTemplate.java create mode 100644 platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/EntityTypeTemplate.java create mode 100644 platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/MusicSoundTemplate.java create mode 100644 platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SoundEventTemplate.java create mode 100644 platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnCostConfig.java create mode 100644 platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnEntryTemplate.java create mode 100644 platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnSettingsTemplate.java create mode 100644 platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnTypeConfig.java create mode 100644 platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/VanillaBiomeProperties.java create mode 100644 platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/VillagerTypeTemplate.java diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeAdditionsSoundTemplate.java b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeAdditionsSoundTemplate.java new file mode 100644 index 000000000..7a7ab41e3 --- /dev/null +++ b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeAdditionsSoundTemplate.java @@ -0,0 +1,28 @@ +package com.dfsek.terra.bukkit.nms.v1_20_R2.config; + +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; +import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; +import net.minecraft.core.registries.BuiltInRegistries; +import net.minecraft.sounds.SoundEvent; +import net.minecraft.world.level.biome.AmbientAdditionsSettings; + + +public class BiomeAdditionsSoundTemplate implements ObjectTemplate { + @Value("sound") + @Default + private SoundEvent sound = null; + + @Value("sound-chance") + @Default + private Double soundChance = null; + + @Override + public AmbientAdditionsSettings get() { + if(sound == null || soundChance == null) { + return null; + } else { + return new AmbientAdditionsSettings(BuiltInRegistries.SOUND_EVENT.wrapAsHolder(sound), soundChance); + } + } +} diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeMoodSoundTemplate.java b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeMoodSoundTemplate.java new file mode 100644 index 000000000..6740f8d4d --- /dev/null +++ b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeMoodSoundTemplate.java @@ -0,0 +1,36 @@ +package com.dfsek.terra.bukkit.nms.v1_20_R2.config; + +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; +import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; +import net.minecraft.core.registries.BuiltInRegistries; +import net.minecraft.sounds.SoundEvent; +import net.minecraft.world.level.biome.AmbientMoodSettings; + + +public class BiomeMoodSoundTemplate implements ObjectTemplate { + @Value("sound") + @Default + private SoundEvent sound = null; + + @Value("cultivation-ticks") + @Default + private Integer soundCultivationTicks = null; + + @Value("spawn-range") + @Default + private Integer soundSpawnRange = null; + + @Value("extra-distance") + @Default + private Double soundExtraDistance = null; + + @Override + public AmbientMoodSettings get() { + if(sound == null || soundCultivationTicks == null || soundSpawnRange == null || soundExtraDistance == null) { + return null; + } else { + return new AmbientMoodSettings(BuiltInRegistries.SOUND_EVENT.wrapAsHolder(sound), soundCultivationTicks, soundSpawnRange, soundExtraDistance); + } + } +} diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeParticleConfigTemplate.java b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeParticleConfigTemplate.java new file mode 100644 index 000000000..458ce5630 --- /dev/null +++ b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeParticleConfigTemplate.java @@ -0,0 +1,34 @@ +package com.dfsek.terra.bukkit.nms.v1_20_R2.config; + +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; +import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; +import com.mojang.brigadier.StringReader; +import com.mojang.brigadier.exceptions.CommandSyntaxException; +import net.minecraft.commands.arguments.ParticleArgument; +import net.minecraft.core.registries.BuiltInRegistries; +import net.minecraft.world.level.biome.AmbientParticleSettings; + + +public class BiomeParticleConfigTemplate implements ObjectTemplate { + @Value("particle") + @Default + private String particle = null; + + @Value("probability") + @Default + private Integer probability = null; + + @Override + public AmbientParticleSettings get() { + if(particle == null || probability == null) { + return null; + } + + try { + return new AmbientParticleSettings(ParticleArgument.readParticle(new StringReader(particle), BuiltInRegistries.PARTICLE_TYPE.asLookup()), probability); + } catch(CommandSyntaxException e) { + throw new RuntimeException(e); + } + } +} diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/EntityTypeTemplate.java b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/EntityTypeTemplate.java new file mode 100644 index 000000000..4d62dea6d --- /dev/null +++ b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/EntityTypeTemplate.java @@ -0,0 +1,21 @@ +package com.dfsek.terra.bukkit.nms.v1_20_R2.config; + +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; +import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; +import net.minecraft.core.Registry; +import net.minecraft.core.registries.BuiltInRegistries; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.entity.EntityType; + + +public class EntityTypeTemplate implements ObjectTemplate> { + @Value("id") + @Default + private ResourceLocation id = null; + + @Override + public EntityType get() { + return BuiltInRegistries.ENTITY_TYPE.get(id); + } +} diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/MusicSoundTemplate.java b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/MusicSoundTemplate.java new file mode 100644 index 000000000..2ce9d5461 --- /dev/null +++ b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/MusicSoundTemplate.java @@ -0,0 +1,36 @@ +package com.dfsek.terra.bukkit.nms.v1_20_R2.config; + +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; +import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; +import net.minecraft.core.registries.BuiltInRegistries; +import net.minecraft.sounds.Music; +import net.minecraft.sounds.SoundEvent; + + +public class MusicSoundTemplate implements ObjectTemplate { + @Value("sound") + @Default + private SoundEvent sound = null; + + @Value("min-delay") + @Default + private Integer minDelay = null; + + @Value("max-delay") + @Default + private Integer maxDelay = null; + + @Value("replace-current-music") + @Default + private Boolean replaceCurrentMusic = null; + + @Override + public Music get() { + if(sound == null || minDelay == null || maxDelay == null || replaceCurrentMusic == null) { + return null; + } else { + return new Music(BuiltInRegistries.SOUND_EVENT.wrapAsHolder(sound), minDelay, maxDelay, replaceCurrentMusic); + } + } +} diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SoundEventTemplate.java b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SoundEventTemplate.java new file mode 100644 index 000000000..259932499 --- /dev/null +++ b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SoundEventTemplate.java @@ -0,0 +1,29 @@ +package com.dfsek.terra.bukkit.nms.v1_20_R2.config; + +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; +import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.sounds.SoundEvent; + + +public class SoundEventTemplate implements ObjectTemplate { + @Value("id") + @Default + private ResourceLocation id = null; + + @Value("distance-to-travel") + @Default + private Float distanceToTravel = null; + + @Override + public SoundEvent get() { + if(id == null) { + return null; + } else if(distanceToTravel == null) { + return SoundEvent.createVariableRangeEvent(id); + } else { + return SoundEvent.createFixedRangeEvent(id, distanceToTravel); + } + } +} diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnCostConfig.java b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnCostConfig.java new file mode 100644 index 000000000..68bc92fa7 --- /dev/null +++ b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnCostConfig.java @@ -0,0 +1,38 @@ +package com.dfsek.terra.bukkit.nms.v1_20_R2.config; + +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; +import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; +import net.minecraft.world.entity.EntityType; + + +public class SpawnCostConfig implements ObjectTemplate { + @Value("type") + @Default + private EntityType type = null; + + @Value("mass") + @Default + private Double mass = null; + + @Value("gravity") + @Default + private Double gravity = null; + + public EntityType getType() { + return type; + } + + public Double getMass() { + return mass; + } + + public Double getGravity() { + return gravity; + } + + @Override + public SpawnCostConfig get() { + return this; + } +} diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnEntryTemplate.java b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnEntryTemplate.java new file mode 100644 index 000000000..9671c5798 --- /dev/null +++ b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnEntryTemplate.java @@ -0,0 +1,31 @@ +package com.dfsek.terra.bukkit.nms.v1_20_R2.config; + +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; +import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; +import net.minecraft.world.entity.EntityType; +import net.minecraft.world.level.biome.MobSpawnSettings.SpawnerData; + + +public class SpawnEntryTemplate implements ObjectTemplate { + @Value("type") + @Default + private EntityType type = null; + + @Value("weight") + @Default + private Integer weight = null; + + @Value("min-group-size") + @Default + private Integer minGroupSize = null; + + @Value("max-group-size") + @Default + private Integer maxGroupSize = null; + + @Override + public SpawnerData get() { + return new SpawnerData(type, weight, minGroupSize, maxGroupSize); + } +} diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnSettingsTemplate.java b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnSettingsTemplate.java new file mode 100644 index 000000000..9895d385a --- /dev/null +++ b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnSettingsTemplate.java @@ -0,0 +1,57 @@ +package com.dfsek.terra.bukkit.nms.v1_20_R2.config; + +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; +import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; +import java.util.List; +import net.minecraft.world.entity.MobCategory; +import net.minecraft.world.level.biome.MobSpawnSettings; +import net.minecraft.world.level.biome.MobSpawnSettings.SpawnerData; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + + +public class SpawnSettingsTemplate implements ObjectTemplate { + + private static final Logger logger = LoggerFactory.getLogger(SpawnTypeConfig.class); + private static boolean used = false; + + @Value("spawns") + @Default + private List spawns = null; + + @Value("costs") + @Default + private List costs = null; + + @Value("probability") + @Default + private Float probability = null; + + @Override + public MobSpawnSettings get() { + MobSpawnSettings.Builder builder = new MobSpawnSettings.Builder(); + for(SpawnTypeConfig spawn : spawns) { + MobCategory group = spawn.getGroup(); + if (spawn.getEntries() != null) { + for(SpawnerData entry : spawn.getEntries()) { + builder.addSpawn(group, entry); + } + } else if (spawn.getEntry() != null) { + if(!used) { + logger.warn("The entry sub-field of spawns is deprecated. " + + "It is recommended to use the entries sub-field instead."); + used = true; + } + } + } + for(SpawnCostConfig cost : costs) { + builder.addMobCharge(cost.getType(), cost.getMass(), cost.getGravity()); + } + if(probability != null) { + builder.creatureGenerationProbability(probability); + } + + return builder.build(); + } +} diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnTypeConfig.java b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnTypeConfig.java new file mode 100644 index 000000000..78c986805 --- /dev/null +++ b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnTypeConfig.java @@ -0,0 +1,42 @@ +package com.dfsek.terra.bukkit.nms.v1_20_R2.config; + +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; +import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; +import java.util.List; +import net.minecraft.world.entity.MobCategory; +import net.minecraft.world.level.biome.MobSpawnSettings.SpawnerData; + + +public class SpawnTypeConfig implements ObjectTemplate { + @Value("group") + @Default + private MobCategory group = null; + + @Value("entries") + @Default + private List entries = null; + + @Value("entry") + @Default + @Deprecated + private SpawnerData entry = null; + + public MobCategory getGroup() { + return group; + } + + public List getEntries() { + return entries; + } + + @Deprecated + public SpawnerData getEntry() { + return entry; + } + + @Override + public SpawnTypeConfig get() { + return this; + } +} \ No newline at end of file diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/VanillaBiomeProperties.java b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/VanillaBiomeProperties.java new file mode 100644 index 000000000..6cd9618ff --- /dev/null +++ b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/VanillaBiomeProperties.java @@ -0,0 +1,174 @@ +package com.dfsek.terra.bukkit.nms.v1_20_R2.config; + +import com.dfsek.tectonic.api.config.template.ConfigTemplate; +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; +import java.util.List; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.sounds.Music; +import net.minecraft.sounds.SoundEvent; +import net.minecraft.world.entity.npc.VillagerType; +import net.minecraft.world.level.biome.AmbientAdditionsSettings; +import net.minecraft.world.level.biome.AmbientMoodSettings; +import net.minecraft.world.level.biome.AmbientParticleSettings; +import net.minecraft.world.level.biome.Biome.Precipitation; +import net.minecraft.world.level.biome.Biome.TemperatureModifier; +import net.minecraft.world.level.biome.BiomeSpecialEffects.GrassColorModifier; +import net.minecraft.world.level.biome.MobSpawnSettings; +import com.dfsek.terra.api.properties.Properties; + + +public class VanillaBiomeProperties implements ConfigTemplate, Properties { + + @Value("tags") + @Default + private List tags = null; + + @Value("colors.grass") + @Default + private Integer grassColor = null; + + @Value("colors.fog") + @Default + private Integer fogColor = null; + + @Value("colors.water") + @Default + private Integer waterColor = null; + + @Value("colors.water-fog") + @Default + private Integer waterFogColor = null; + + @Value("colors.foliage") + @Default + private Integer foliageColor = null; + + @Value("colors.sky") + @Default + private Integer skyColor = null; + + @Value("colors.modifier") + @Default + private GrassColorModifier grassColorModifier = null; + + @Value("particles") + @Default + private AmbientParticleSettings particleConfig = null; + + @Value("climate.precipitation") + @Default + private Boolean precipitation = null; + + @Value("climate.temperature") + @Default + private Float temperature = null; + + @Value("climate.temperature-modifier") + @Default + private TemperatureModifier temperatureModifier = null; + + @Value("climate.downfall") + @Default + private Float downfall = null; + + @Value("sound.loop-sound.sound") + @Default + private SoundEvent loopSound = null; + + @Value("sound.mood-sound") + @Default + private AmbientMoodSettings moodSound = null; + + @Value("sound.additions-sound") + @Default + private AmbientAdditionsSettings additionsSound = null; + + @Value("sound.music") + @Default + private Music music = null; + + @Value("spawning") + @Default + private MobSpawnSettings spawnSettings = null; + + @Value("villager-type") + @Default + private VillagerType villagerType = null; + + public List getTags() { + return tags; + } + + public Integer getGrassColor() { + return grassColor; + } + + public Integer getFogColor() { + return fogColor; + } + + public Integer getWaterColor() { + return waterColor; + } + + public Integer getWaterFogColor() { + return waterFogColor; + } + + public Integer getFoliageColor() { + return foliageColor; + } + + public Integer getSkyColor() { + return skyColor; + } + + public GrassColorModifier getGrassColorModifier() { + return grassColorModifier; + } + + public AmbientParticleSettings getParticleConfig() { + return particleConfig; + } + + public Boolean getPrecipitation() { + return precipitation; + } + + public Float getTemperature() { + return temperature; + } + + public TemperatureModifier getTemperatureModifier() { + return temperatureModifier; + } + + public Float getDownfall() { + return downfall; + } + + public SoundEvent getLoopSound() { + return loopSound; + } + + public AmbientMoodSettings getMoodSound() { + return moodSound; + } + + public AmbientAdditionsSettings getAdditionsSound() { + return additionsSound; + } + + public Music getMusic() { + return music; + } + + public MobSpawnSettings getSpawnSettings() { + return spawnSettings; + } + + public VillagerType getVillagerType() { + return villagerType; + } +} diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/VillagerTypeTemplate.java b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/VillagerTypeTemplate.java new file mode 100644 index 000000000..6e022851d --- /dev/null +++ b/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/VillagerTypeTemplate.java @@ -0,0 +1,23 @@ +package com.dfsek.terra.bukkit.nms.v1_20_R2.config; + +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; +import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; +import net.minecraft.core.Registry; +import net.minecraft.core.RegistryCodecs; +import net.minecraft.core.registries.BuiltInRegistries; +import net.minecraft.core.registries.Registries; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.entity.npc.VillagerType; + + +public class VillagerTypeTemplate implements ObjectTemplate { + @Value("id") + @Default + private ResourceLocation id = null; + + @Override + public VillagerType get() { + return BuiltInRegistries.VILLAGER_TYPE.get(id); + } +} diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java index d05a84834..919f60d38 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java @@ -16,6 +16,7 @@ public class SpawnSettingsTemplate implements ObjectTemplate { private static final Logger logger = LoggerFactory.getLogger(SpawnTypeConfig.class); private static boolean used = false; + @Value("spawns") @Default private List spawns = null; diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/VanillaBiomeProperties.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/VanillaBiomeProperties.java index 5c49c4d29..68f059335 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/VanillaBiomeProperties.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/VanillaBiomeProperties.java @@ -51,7 +51,7 @@ public class VanillaBiomeProperties implements ConfigTemplate, Properties { @Value("climate.precipitation") @Default - private Boolean precipitation = true; + private Boolean precipitation = null; @Value("climate.temperature") @Default From 02a7363f010c1cb423b6a97fffbcc544de5500cc Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 16 Jun 2024 00:07:52 +0800 Subject: [PATCH 008/136] feat: init work on allay --- platforms/allay/build.gradle.kts | 12 ++++++ .../allaymc/terra/allay/AllayPlatform.java | 43 +++++++++++++++++++ .../allaymc/terra/allay/TerraAllayPlugin.java | 34 +++++++++++++++ .../allay/src/main/resources/plugin.json | 9 ++++ 4 files changed, 98 insertions(+) create mode 100644 platforms/allay/build.gradle.kts create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java create mode 100644 platforms/allay/src/main/resources/plugin.json diff --git a/platforms/allay/build.gradle.kts b/platforms/allay/build.gradle.kts new file mode 100644 index 000000000..0749708bc --- /dev/null +++ b/platforms/allay/build.gradle.kts @@ -0,0 +1,12 @@ +repositories { + mavenLocal() +} + +dependencies { + shadedApi(project(":common:implementation:base")) + + compileOnly("org.projectlombok:lombok:1.18.32") + compileOnly("org.allaymc", "Allay-API", "1.0.0") + + annotationProcessor("org.projectlombok:lombok:1.18.32") +} \ No newline at end of file diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java new file mode 100644 index 000000000..ee1f39c76 --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java @@ -0,0 +1,43 @@ +package org.allaymc.terra.allay; + +import com.dfsek.terra.AbstractPlatform; +import com.dfsek.terra.api.handle.ItemHandle; +import com.dfsek.terra.api.handle.WorldHandle; + +import org.jetbrains.annotations.NotNull; + +import java.io.File; + + +/** + * Terra Project 2024/6/15 + * + * @author daoge_cmd + */ +public class AllayPlatform extends AbstractPlatform { + + @Override + public boolean reload() { + return false; + } + + @Override + public @NotNull String platformName() { + return "Allay"; + } + + @Override + public @NotNull WorldHandle getWorldHandle() { + // TODO + } + + @Override + public @NotNull File getDataFolder() { + return TerraAllayPlugin.INSTANCE.getPluginContainer().dataFolder().toFile(); + } + + @Override + public @NotNull ItemHandle getItemHandle() { + // TODO + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java new file mode 100644 index 000000000..c8378a455 --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java @@ -0,0 +1,34 @@ +package org.allaymc.terra.allay; + +import com.dfsek.terra.api.event.events.platform.PlatformInitializationEvent; + +import lombok.extern.slf4j.Slf4j; +import org.allaymc.api.plugin.Plugin; + + +/** + * Terra Project 2024/6/15 + * + * @author daoge_cmd + */ +@Slf4j +public class TerraAllayPlugin extends Plugin { + + public static TerraAllayPlugin INSTANCE; + + { + INSTANCE = this; + } + + @Override + public void onEnable() { + log.info("Starting Terra..."); + + var platform = new AllayPlatform(); + platform.getEventManager().callEvent(new PlatformInitializationEvent()); + + // TODO: Adapt command manager + + + } +} diff --git a/platforms/allay/src/main/resources/plugin.json b/platforms/allay/src/main/resources/plugin.json new file mode 100644 index 000000000..56cbf7dd8 --- /dev/null +++ b/platforms/allay/src/main/resources/plugin.json @@ -0,0 +1,9 @@ +{ + "entrance": "org.allaymc.terra.allay.TerraAllayPlugin", + "name": "Terra", + "authors": [ + "daoge_cmd" + ], + "version": "1.0.0", + "order": "START_UP" +} \ No newline at end of file From b29ba2db70934229dac32fc6e52d789f8e3dfaf6 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 16 Jun 2024 01:33:46 +0800 Subject: [PATCH 009/136] feat: more works --- .../allaymc/terra/allay/AllayPlatform.java | 2 + .../org/allaymc/terra/allay/JeBlockState.java | 42 ++++++++++ .../java/org/allaymc/terra/allay/Mapping.java | 31 +++++++ .../allaymc/terra/allay/TerraAllayPlugin.java | 2 +- .../terra/allay/delegate/AllayBiome.java | 17 ++++ .../terra/allay/delegate/AllayBlockState.java | 62 ++++++++++++++ .../terra/allay/delegate/AllayBlockType.java | 35 ++++++++ .../terra/allay/delegate/AllayChunk.java | 47 +++++++++++ .../allay/delegate/AllayEnchantment.java | 40 +++++++++ .../allay/delegate/AllayEntityTypeHandle.java | 18 ++++ .../terra/allay/delegate/AllayItemMeta.java | 39 +++++++++ .../terra/allay/delegate/AllayItemStack.java | 52 ++++++++++++ .../terra/allay/delegate/AllayItemType.java | 41 ++++++++++ .../terra/allay/delegate/AllayProtoChunk.java | 37 +++++++++ .../terra/allay/delegate/AllayProtoWorld.java | 82 +++++++++++++++++++ .../allay/delegate/AllayServerWorld.java | 12 +++ .../terra/allay/handle/AllayWorldHandle.java | 36 ++++++++ 17 files changed, 594 insertions(+), 1 deletion(-) create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEntityTypeHandle.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java index ee1f39c76..e9dc4dbb6 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java @@ -29,6 +29,7 @@ public class AllayPlatform extends AbstractPlatform { @Override public @NotNull WorldHandle getWorldHandle() { // TODO + return null; } @Override @@ -39,5 +40,6 @@ public class AllayPlatform extends AbstractPlatform { @Override public @NotNull ItemHandle getItemHandle() { // TODO + return null; } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java new file mode 100644 index 000000000..1e8750e5f --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java @@ -0,0 +1,42 @@ +package org.allaymc.terra.allay; + +import org.allaymc.api.utils.Identifier; + +import java.util.Map; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public class JeBlockState { + protected final Identifier identifier; + protected final Map properties; + + public static JeBlockState fromString(String data) { + // TODO + return null; + } + + public JeBlockState(Identifier identifier, Map properties) { + this.identifier = identifier; + this.properties = properties; + } + + public String toString(boolean includeProperties) { + if(!includeProperties) return identifier.toString(); + StringBuilder builder = new StringBuilder(identifier.toString()).append(";"); + properties.forEach((k, v) -> builder.append(k).append("=").append(v).append(";")); + return builder.toString(); + } + + public boolean hasProperty(String name) { + return properties.containsKey(name); + } + + @Override + public String toString() { + return toString(true); + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java new file mode 100644 index 000000000..11923de90 --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -0,0 +1,31 @@ +package org.allaymc.terra.allay; + +import org.allaymc.api.block.type.BlockState; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public final class Mapping { + + public static void init() { + // TODO + } + + public static JeBlockState blockStateBeToJe(BlockState blockState) { + // TODO + return null; + } + + public static BlockState blockStateJeToBe(JeBlockState jeBlockState) { + // TODO + return null; + } + + public static String enchantmentIdBeToJe(String beEnchantmentId) { + // TODO + return null; + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java index c8378a455..a69cc09f5 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java @@ -29,6 +29,6 @@ public class TerraAllayPlugin extends Plugin { // TODO: Adapt command manager - + Mapping.init(); } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java new file mode 100644 index 000000000..8fd05108b --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java @@ -0,0 +1,17 @@ +package org.allaymc.terra.allay.delegate; + +import com.dfsek.terra.api.world.biome.PlatformBiome; +import org.allaymc.api.world.biome.BiomeType; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public record AllayBiome(BiomeType allayBiome) implements PlatformBiome { + @Override + public BiomeType getHandle() { + return allayBiome; + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java new file mode 100644 index 000000000..df446445f --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java @@ -0,0 +1,62 @@ +package org.allaymc.terra.allay.delegate; + +import com.dfsek.terra.api.block.BlockType; +import com.dfsek.terra.api.block.state.properties.Property; + +import org.allaymc.api.block.type.BlockState; +import org.allaymc.api.block.type.BlockTypes; +import org.allaymc.terra.allay.JeBlockState; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public record AllayBlockState(BlockState allayBlockState, JeBlockState jeBlockState) implements com.dfsek.terra.api.block.state.BlockState { + + public static final AllayBlockState AIR = new AllayBlockState(BlockTypes.AIR_TYPE.getDefaultState(), JeBlockState.fromString("minecraft:air")); + + @Override + public boolean matches(com.dfsek.terra.api.block.state.BlockState other) { + return ((AllayBlockState) other).allayBlockState == this.allayBlockState; + } + + @Override + public > boolean has(Property property) { + // TODO + return false; + } + + @Override + public > T get(Property property) { + // TODO + return null; + } + + @Override + public > com.dfsek.terra.api.block.state.BlockState set(Property property, T value) { + // TODO + return null; + } + + @Override + public BlockType getBlockType() { + return new AllayBlockType(allayBlockState.getBlockType()); + } + + @Override + public String getAsString(boolean properties) { + return jeBlockState.toString(properties); + } + + @Override + public boolean isAir() { + return allayBlockState.getBlockType() == BlockTypes.AIR_TYPE; + } + + @Override + public BlockState getHandle() { + return allayBlockState; + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java new file mode 100644 index 000000000..fc47b8803 --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java @@ -0,0 +1,35 @@ +package org.allaymc.terra.allay.delegate; + +import com.dfsek.terra.api.block.state.BlockState; + +import org.allaymc.api.block.type.BlockType; +import org.allaymc.api.block.type.BlockTypes; +import org.allaymc.terra.allay.Mapping; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public record AllayBlockType(BlockType allayBlockType) implements com.dfsek.terra.api.block.BlockType { + @Override + public BlockState getDefaultState() { + return new AllayBlockState(allayBlockType.getDefaultState(), Mapping.blockStateBeToJe(allayBlockType.getDefaultState())); + } + + @Override + public boolean isSolid() { + return allayBlockType.getMaterial().isSolid(); + } + + @Override + public boolean isWater() { + return allayBlockType == BlockTypes.WATER_TYPE || allayBlockType == BlockTypes.FLOWING_WATER_TYPE; + } + + @Override + public BlockType getHandle() { + return allayBlockType; + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java new file mode 100644 index 000000000..60a337fee --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java @@ -0,0 +1,47 @@ +package org.allaymc.terra.allay.delegate; + +import com.dfsek.terra.api.block.state.BlockState; +import com.dfsek.terra.api.world.ServerWorld; + +import org.allaymc.api.world.chunk.Chunk; +import org.allaymc.terra.allay.Mapping; +import org.jetbrains.annotations.NotNull; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public record AllayChunk(ServerWorld world, Chunk allayChunk) implements com.dfsek.terra.api.world.chunk.Chunk { + @Override + public void setBlock(int x, int y, int z, BlockState data, boolean physics) { + allayChunk.setBlockState(x, y, z, ((AllayBlockState)data).allayBlockState()); + } + + @Override + public @NotNull BlockState getBlock(int x, int y, int z) { + var blockState = allayChunk.getBlockState(x, y, z); + return new AllayBlockState(blockState, Mapping.blockStateBeToJe(blockState)); + } + + @Override + public int getX() { + return 0; + } + + @Override + public int getZ() { + return 0; + } + + @Override + public ServerWorld getWorld() { + return world; + } + + @Override + public Chunk getHandle() { + return allayChunk; + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java new file mode 100644 index 000000000..f74d8c2f9 --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java @@ -0,0 +1,40 @@ +package org.allaymc.terra.allay.delegate; + +import com.dfsek.terra.api.inventory.ItemStack; +import com.dfsek.terra.api.inventory.item.Enchantment; + +import org.allaymc.api.item.enchantment.EnchantmentType; +import org.allaymc.terra.allay.Mapping; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public record AllayEnchantment(EnchantmentType allayEnchantment) implements Enchantment { + @Override + public boolean canEnchantItem(ItemStack itemStack) { + return ((AllayItemStack)itemStack).allayItemStack().checkEnchantmentCompatibility(allayEnchantment); + } + + @Override + public boolean conflictsWith(Enchantment other) { + return ((AllayEnchantment)other).allayEnchantment.checkCompatibility(allayEnchantment); + } + + @Override + public String getID() { + return Mapping.enchantmentIdBeToJe(allayEnchantment.getIdentifier().toString()); + } + + @Override + public int getMaxLevel() { + return allayEnchantment.getMaxLevel(); + } + + @Override + public EnchantmentType getHandle() { + return allayEnchantment; + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEntityTypeHandle.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEntityTypeHandle.java new file mode 100644 index 000000000..f6a24ead6 --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEntityTypeHandle.java @@ -0,0 +1,18 @@ +package org.allaymc.terra.allay.delegate; + +import com.dfsek.terra.api.entity.EntityType; + + +/** + * Terra Project 2024/6/16 + * + * 我们暂时不支持实体,因为端本身都没实体ai,生成实体没有意义 + * + * @author daoge_cmd + */ +public record AllayEntityTypeHandle(String id) implements EntityType { + @Override + public String getHandle() { + return id; + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java new file mode 100644 index 000000000..27b04090c --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java @@ -0,0 +1,39 @@ +package org.allaymc.terra.allay.delegate; + +import com.dfsek.terra.api.inventory.item.Enchantment; +import com.dfsek.terra.api.inventory.item.ItemMeta; + +import org.allaymc.api.item.ItemStack; + +import java.util.HashMap; +import java.util.Map; + + +/** + * Terra Project 2024/6/16 + * + * 物品元数据。在allay中物品元数据没有单独的类,故直接使用ItemStack代替 + * + * @author daoge_cmd + */ +public record AllayItemMeta(ItemStack allayItemStack) implements ItemMeta { + @Override + public void addEnchantment(Enchantment enchantment, int level) { + var allayEnchantment = ((AllayEnchantment) enchantment).allayEnchantment(); + allayItemStack.addEnchantment(allayEnchantment, (short) level); + } + + @Override + public Map getEnchantments() { + Map results = new HashMap<>(); + for (var allayEnchantmentInstance : allayItemStack.getEnchantments()) { + results.put(new AllayEnchantment(allayEnchantmentInstance.getType()), (int) allayEnchantmentInstance.getLevel()); + } + return results; + } + + @Override + public ItemStack getHandle() { + return allayItemStack; + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java new file mode 100644 index 000000000..dfa7aeba4 --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java @@ -0,0 +1,52 @@ +package org.allaymc.terra.allay.delegate; + +import com.dfsek.terra.api.inventory.Item; +import com.dfsek.terra.api.inventory.item.ItemMeta; + +import org.allaymc.api.item.ItemStack; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public record AllayItemStack(ItemStack allayItemStack) implements com.dfsek.terra.api.inventory.ItemStack{ + @Override + public int getAmount() { + return allayItemStack.getCount(); + } + + @Override + public void setAmount(int i) { + allayItemStack.setCount(i); + } + + @Override + public Item getType() { + return new AllayItemType(allayItemStack.getItemType()); + } + + @Override + public ItemMeta getItemMeta() { + return new AllayItemMeta(allayItemStack); + } + + @Override + public void setItemMeta(ItemMeta meta) { + var targetItem = ((AllayItemMeta) meta).allayItemStack(); + allayItemStack.removeAllEnchantments(); + for (var enchantment : targetItem.getEnchantments()) { + allayItemStack.addEnchantment(enchantment.getType(), enchantment.getLevel()); + } + allayItemStack.setLore(targetItem.getLore()); + allayItemStack.setDurability(targetItem.getDurability()); + allayItemStack.setCustomName(targetItem.getCustomName()); + allayItemStack.setMeta(targetItem.getMeta()); + } + + @Override + public ItemStack getHandle() { + return allayItemStack; + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java new file mode 100644 index 000000000..0fb41a0e0 --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java @@ -0,0 +1,41 @@ +package org.allaymc.terra.allay.delegate; + +import com.dfsek.terra.api.inventory.Item; + +import org.allaymc.api.item.type.ItemType; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public final class AllayItemType implements Item { + private final ItemType allayItemType; + private final double maxDurability; + + public AllayItemType(ItemType allayItemType) { + this.allayItemType = allayItemType; + // TODO: 感觉不太优雅,应该有更好的办法 + this.maxDurability = allayItemType.createItemStack().getItemAttributes().maxDamage(); + } + + @Override + public com.dfsek.terra.api.inventory.ItemStack newItemStack(int amount) { + return new AllayItemStack(allayItemType.createItemStack(amount)); + } + + @Override + public double getMaxDurability() { + return maxDurability; + } + + @Override + public ItemType getHandle() { + return allayItemType; + } + + public ItemType allayItemType() { + return allayItemType; + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java new file mode 100644 index 000000000..844b53ded --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java @@ -0,0 +1,37 @@ +package org.allaymc.terra.allay.delegate; + +import com.dfsek.terra.api.block.state.BlockState; +import com.dfsek.terra.api.world.chunk.generation.ProtoChunk; + +import org.allaymc.api.world.chunk.Chunk; +import org.allaymc.terra.allay.Mapping; +import org.jetbrains.annotations.NotNull; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public record AllayProtoChunk(Chunk allayChunk) implements ProtoChunk { + @Override + public int getMaxHeight() { + return allayChunk.getDimensionInfo().maxHeight(); + } + + @Override + public void setBlock(int x, int y, int z, @NotNull BlockState blockState) { + allayChunk.setBlockState(x, y, z, ((AllayBlockState)blockState).allayBlockState()); + } + + @Override + public @NotNull BlockState getBlock(int x, int y, int z) { + var blockState = allayChunk.getBlockState(x, y, z); + return new AllayBlockState(blockState, Mapping.blockStateBeToJe(blockState)); + } + + @Override + public Chunk getHandle() { + return allayChunk; + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java new file mode 100644 index 000000000..8df369733 --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java @@ -0,0 +1,82 @@ +package org.allaymc.terra.allay.delegate; + +import com.dfsek.terra.api.block.entity.BlockEntity; +import com.dfsek.terra.api.block.state.BlockState; +import com.dfsek.terra.api.config.ConfigPack; +import com.dfsek.terra.api.entity.Entity; +import com.dfsek.terra.api.entity.EntityType; +import com.dfsek.terra.api.world.ServerWorld; +import com.dfsek.terra.api.world.biome.generation.BiomeProvider; +import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; +import com.dfsek.terra.api.world.chunk.generation.ProtoWorld; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public record AllayProtoWorld(ServerWorld serverWorld, int centerChunkX, int centerChunkZ) implements ProtoWorld { + + @Override + public ServerWorld getWorld() { + return serverWorld; + } + + @Override + public void setBlockState(int x, int y, int z, BlockState data, boolean physics) { + serverWorld.setBlockState(x, y, z, data, physics); + } + + @Override + public Entity spawnEntity(double x, double y, double z, EntityType entityType) { + // TODO + return null; + } + + @Override + public BlockState getBlockState(int x, int y, int z) { + return serverWorld.getBlockState(x, y, z); + } + + @Override + public BlockEntity getBlockEntity(int x, int y, int z) { + // TODO + return null; + } + + @Override + public ChunkGenerator getGenerator() { + return serverWorld.getGenerator(); + } + + @Override + public BiomeProvider getBiomeProvider() { + return serverWorld.getBiomeProvider(); + } + + @Override + public ConfigPack getPack() { + return serverWorld.getPack(); + } + + @Override + public long getSeed() { + return serverWorld.getSeed(); + } + + @Override + public int getMaxHeight() { + return serverWorld.getMaxHeight(); + } + + @Override + public int getMinHeight() { + return serverWorld.getMinHeight(); + } + + @Override + public ServerWorld getHandle() { + return serverWorld; + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java new file mode 100644 index 000000000..423590dad --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java @@ -0,0 +1,12 @@ +package org.allaymc.terra.allay.delegate; + +import java.awt.Dimension; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public record AllayServerWorld(Dimension allayDimension) { +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java new file mode 100644 index 000000000..37ff884b7 --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java @@ -0,0 +1,36 @@ +package org.allaymc.terra.allay.handle; + +import com.dfsek.terra.api.block.state.BlockState; +import com.dfsek.terra.api.entity.EntityType; +import com.dfsek.terra.api.handle.WorldHandle; + +import org.allaymc.terra.allay.JeBlockState; +import org.allaymc.terra.allay.Mapping; +import org.allaymc.terra.allay.delegate.AllayBlockState; +import org.allaymc.terra.allay.delegate.AllayEntityTypeHandle; +import org.jetbrains.annotations.NotNull; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public class AllayWorldHandle implements WorldHandle { + + @Override + public @NotNull BlockState createBlockState(@NotNull String data) { + var jeBlockState = JeBlockState.fromString(data); + return new AllayBlockState(Mapping.blockStateJeToBe(jeBlockState), jeBlockState); + } + + @Override + public @NotNull BlockState air() { + return AllayBlockState.AIR; + } + + @Override + public @NotNull EntityType getEntity(@NotNull String id) { + return new AllayEntityTypeHandle(id); + } +} From d81f886e8cb0928891e913d0486142e680c9eb10 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 16 Jun 2024 03:29:03 +0800 Subject: [PATCH 010/136] feat: more works --- .../allaymc/terra/allay/AllayPlatform.java | 20 ++- .../org/allaymc/terra/allay/JeBlockState.java | 36 +++-- .../java/org/allaymc/terra/allay/Mapping.java | 12 +- .../allaymc/terra/allay/TerraAllayPlugin.java | 16 +- .../terra/allay/delegate/AllayProtoChunk.java | 5 +- .../allay/delegate/AllayServerWorld.java | 79 +++++++++- .../generator/AllayGeneratorWrapper.java | 139 ++++++++++++++++++ .../terra/allay/handle/AllayItemHandle.java | 41 ++++++ 8 files changed, 323 insertions(+), 25 deletions(-) create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java index e9dc4dbb6..f05ebbf7f 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java @@ -4,6 +4,9 @@ import com.dfsek.terra.AbstractPlatform; import com.dfsek.terra.api.handle.ItemHandle; import com.dfsek.terra.api.handle.WorldHandle; +import org.allaymc.api.server.Server; +import org.allaymc.terra.allay.handle.AllayItemHandle; +import org.allaymc.terra.allay.handle.AllayWorldHandle; import org.jetbrains.annotations.NotNull; import java.io.File; @@ -16,8 +19,12 @@ import java.io.File; */ public class AllayPlatform extends AbstractPlatform { + protected static final AllayWorldHandle ALLAY_WORLD_HANDLE = new AllayWorldHandle(); + protected static final AllayItemHandle ALLAY_ITEM_HANDLE = new AllayItemHandle(); + @Override public boolean reload() { + // TODO: Implement reload return false; } @@ -28,8 +35,12 @@ public class AllayPlatform extends AbstractPlatform { @Override public @NotNull WorldHandle getWorldHandle() { - // TODO - return null; + return ALLAY_WORLD_HANDLE; + } + + @Override + public @NotNull ItemHandle getItemHandle() { + return ALLAY_ITEM_HANDLE; } @Override @@ -38,8 +49,7 @@ public class AllayPlatform extends AbstractPlatform { } @Override - public @NotNull ItemHandle getItemHandle() { - // TODO - return null; + public void runPossiblyUnsafeTask(@NotNull Runnable task) { + Server.getInstance().getScheduler().runLater(Server.getInstance(), task); } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java index 1e8750e5f..3b1735e10 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java @@ -2,7 +2,9 @@ package org.allaymc.terra.allay; import org.allaymc.api.utils.Identifier; +import java.util.HashMap; import java.util.Map; +import java.util.TreeMap; /** @@ -11,30 +13,42 @@ import java.util.Map; * @author daoge_cmd */ public class JeBlockState { - protected final Identifier identifier; - protected final Map properties; + protected final String identifier; + protected final TreeMap properties; public static JeBlockState fromString(String data) { - // TODO - return null; + return new JeBlockState(data); } - public JeBlockState(Identifier identifier, Map properties) { + public static JeBlockState create(String identifier, TreeMap properties) { + return new JeBlockState(identifier, properties); + } + + private JeBlockState(String data) { + var strings = data.replace("[", ",").replace("]", ",").replace(" ", "").split(","); + this.identifier = strings[0]; + this.properties = new TreeMap<>(); + if (strings.length > 1) { + for (int i = 1; i < strings.length; i++) { + final var tmp = strings[i]; + final var index = tmp.indexOf("="); + properties.put(tmp.substring(0, index), tmp.substring(index + 1)); + } + } + } + + private JeBlockState(String identifier, TreeMap properties) { this.identifier = identifier; this.properties = properties; } public String toString(boolean includeProperties) { - if(!includeProperties) return identifier.toString(); - StringBuilder builder = new StringBuilder(identifier.toString()).append(";"); + if(!includeProperties) return identifier; + StringBuilder builder = new StringBuilder(identifier).append(";"); properties.forEach((k, v) -> builder.append(k).append("=").append(v).append(";")); return builder.toString(); } - public boolean hasProperty(String name) { - return properties.containsKey(name); - } - @Override public String toString() { return toString(true); diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java index 11923de90..0502f3365 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -14,7 +14,7 @@ public final class Mapping { // TODO } - public static JeBlockState blockStateBeToJe(BlockState blockState) { + public static JeBlockState blockStateBeToJe(BlockState beBlockState) { // TODO return null; } @@ -28,4 +28,14 @@ public final class Mapping { // TODO return null; } + + public static String enchantmentIdJeToBe(String jeEnchantmentId) { + // TODO + return null; + } + + public static String itemIdJeToBe(String jeItemId) { + // TODO + return null; + } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java index a69cc09f5..91c2d54f4 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java @@ -4,6 +4,8 @@ import com.dfsek.terra.api.event.events.platform.PlatformInitializationEvent; import lombok.extern.slf4j.Slf4j; import org.allaymc.api.plugin.Plugin; +import org.allaymc.api.world.generator.WorldGeneratorFactory; +import org.allaymc.terra.allay.generator.AllayGeneratorWrapper; /** @@ -15,20 +17,26 @@ import org.allaymc.api.plugin.Plugin; public class TerraAllayPlugin extends Plugin { public static TerraAllayPlugin INSTANCE; + public static AllayPlatform PLATFORM; { INSTANCE = this; } + // TODO: Adapt command manager @Override public void onEnable() { log.info("Starting Terra..."); - var platform = new AllayPlatform(); - platform.getEventManager().callEvent(new PlatformInitializationEvent()); - - // TODO: Adapt command manager + PLATFORM = new AllayPlatform(); + PLATFORM.getEventManager().callEvent(new PlatformInitializationEvent()); + log.info("Loading mapping..."); Mapping.init(); + + log.info("Registering generator..."); + WorldGeneratorFactory.getFactory().register("TERRA", AllayGeneratorWrapper::new); + + log.info("Terra started"); } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java index 844b53ded..1c3fbc4e4 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java @@ -4,6 +4,7 @@ import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.world.chunk.generation.ProtoChunk; import org.allaymc.api.world.chunk.Chunk; +import org.allaymc.api.world.chunk.UnsafeChunk; import org.allaymc.terra.allay.Mapping; import org.jetbrains.annotations.NotNull; @@ -13,7 +14,7 @@ import org.jetbrains.annotations.NotNull; * * @author daoge_cmd */ -public record AllayProtoChunk(Chunk allayChunk) implements ProtoChunk { +public record AllayProtoChunk(UnsafeChunk allayChunk) implements ProtoChunk { @Override public int getMaxHeight() { return allayChunk.getDimensionInfo().maxHeight(); @@ -31,7 +32,7 @@ public record AllayProtoChunk(Chunk allayChunk) implements ProtoChunk { } @Override - public Chunk getHandle() { + public UnsafeChunk getHandle() { return allayChunk; } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java index 423590dad..489c98ef3 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java @@ -1,6 +1,18 @@ package org.allaymc.terra.allay.delegate; -import java.awt.Dimension; +import com.dfsek.terra.api.block.entity.BlockEntity; +import com.dfsek.terra.api.block.state.BlockState; +import com.dfsek.terra.api.config.ConfigPack; +import com.dfsek.terra.api.entity.Entity; +import com.dfsek.terra.api.entity.EntityType; +import com.dfsek.terra.api.world.ServerWorld; +import com.dfsek.terra.api.world.biome.generation.BiomeProvider; +import com.dfsek.terra.api.world.chunk.Chunk; +import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; + +import org.allaymc.api.world.Dimension; +import org.allaymc.terra.allay.Mapping; +import org.allaymc.terra.allay.generator.AllayGeneratorWrapper; /** @@ -8,5 +20,68 @@ import java.awt.Dimension; * * @author daoge_cmd */ -public record AllayServerWorld(Dimension allayDimension) { +public record AllayServerWorld(AllayGeneratorWrapper allayGeneratorWrapper, Dimension allayDimension) implements ServerWorld { + @Override + public Chunk getChunkAt(int x, int z) { + return new AllayChunk(this, allayDimension.getChunkService().getChunk(x ,z)); + } + + @Override + public void setBlockState(int x, int y, int z, BlockState data, boolean physics) { + var allayBlockState = ((AllayBlockState)data).allayBlockState(); + allayDimension.setBlockState(x, y, z, allayBlockState); + } + + @Override + public Entity spawnEntity(double x, double y, double z, EntityType entityType) { + // TODO + return null; + } + + @Override + public BlockState getBlockState(int x, int y, int z) { + var allayBlockState = allayDimension.getBlockState(x, y, z); + return new AllayBlockState(allayBlockState, Mapping.blockStateBeToJe(allayBlockState)); + } + + @Override + public BlockEntity getBlockEntity(int x, int y, int z) { + // TODO + return null; + } + + @Override + public ChunkGenerator getGenerator() { + return allayGeneratorWrapper.getHandle(); + } + + @Override + public BiomeProvider getBiomeProvider() { + return allayGeneratorWrapper.getBiomeProvider(); + } + + @Override + public ConfigPack getPack() { + return allayGeneratorWrapper.getConfigPack(); + } + + @Override + public long getSeed() { + return allayGeneratorWrapper.getSeed(); + } + + @Override + public int getMaxHeight() { + return allayDimension.getDimensionInfo().maxHeight(); + } + + @Override + public int getMinHeight() { + return allayDimension.getDimensionInfo().minHeight(); + } + + @Override + public Object getHandle() { + return allayDimension; + } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java new file mode 100644 index 000000000..5ff0b1f36 --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java @@ -0,0 +1,139 @@ +package org.allaymc.terra.allay.generator; + +import com.dfsek.terra.api.config.ConfigPack; +import com.dfsek.terra.api.world.biome.generation.BiomeProvider; +import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; +import com.dfsek.terra.api.world.chunk.generation.util.GeneratorWrapper; + +import com.dfsek.terra.api.world.info.WorldProperties; + +import lombok.Getter; +import lombok.extern.slf4j.Slf4j; +import org.allaymc.api.world.Dimension; +import org.allaymc.api.world.biome.BiomeType; +import org.allaymc.api.world.generator.ChunkGenerateContext; +import org.allaymc.api.world.generator.WorldGenerator; +import org.allaymc.api.world.generator.WorldGeneratorType; +import org.allaymc.terra.allay.TerraAllayPlugin; +import org.allaymc.terra.allay.delegate.AllayProtoChunk; +import org.allaymc.terra.allay.delegate.AllayProtoWorld; +import org.allaymc.terra.allay.delegate.AllayServerWorld; + +import java.util.Locale; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +@Slf4j +public class AllayGeneratorWrapper extends WorldGenerator implements GeneratorWrapper { + protected static final String DEFAULT_PACK_NAME = "default"; + protected static final String OPTION_PACK_NAME = "pack"; + protected static final String OPTION_SEED = "pack"; + + @Getter + protected final BiomeProvider biomeProvider; + @Getter + protected final ConfigPack configPack; + protected final ChunkGenerator chunkGenerator; + protected WorldProperties worldProperties; + @Getter + protected long seed; + + public AllayGeneratorWrapper(String preset) { + super(preset); + var options = parseOptions(preset); + var packName = options.getOrDefault(OPTION_PACK_NAME, DEFAULT_PACK_NAME); + this.seed = Long.parseLong(options.getOrDefault(OPTION_SEED, "0")); + this.configPack = createConfigPack(packName); + this.chunkGenerator = createGenerator(this.configPack); + this.biomeProvider = this.configPack.getBiomeProvider(); + } + + @Override + public void generate(ChunkGenerateContext context) { + var chunk = context.chunk(); + var chunkX = chunk.getX(); + var chunkZ = chunk.getZ(); + chunkGenerator.generateChunkData( + new AllayProtoChunk(chunk), + worldProperties, biomeProvider, + chunkX, chunkZ + ); + var minHeight = dimension.getDimensionInfo().minHeight(); + var maxHeight = dimension.getDimensionInfo().maxHeight(); + for (int x = 0; x < 16; x++) { + for (int y = minHeight; y < maxHeight; y++) { + for (int z = 0; z < 16; z++) { + chunk.setBiome( + x, y, z, + (BiomeType) biomeProvider.getBiome(chunkX * 16 + x, y, chunkZ * 16 + z, seed).getPlatformBiome().getHandle() + ); + } + } + } + var tmp = new AllayProtoWorld(new AllayServerWorld(this, dimension), chunkX, chunkZ); + try { + for (var generationStage : configPack.getStages()) { + generationStage.populate(tmp); + } + } catch (Exception e) { + log.error("Error while populating chunk", e); + } + } + + @Override + public void setDimension(Dimension dimension) { + this.worldProperties = new WorldProperties() { + @Override + public long getSeed() { + return seed; + } + + @Override + public int getMaxHeight() { + return dimension.getDimensionInfo().maxHeight(); + } + + @Override + public int getMinHeight() { + return dimension.getDimensionInfo().minHeight(); + } + + @Override + public Object getHandle() { + // 这里留null就行,没啥用 + return null; + } + }; + } + + protected static ConfigPack createConfigPack(String packName) { + var byId = TerraAllayPlugin.PLATFORM.getConfigRegistry().getByID(packName); + return byId.orElseGet( + () -> TerraAllayPlugin.PLATFORM.getConfigRegistry().getByID(packName.toUpperCase(Locale.ENGLISH)) + .orElseThrow(() -> new IllegalArgumentException("Cant find terra config pack named " + packName)) + ); + } + + protected static ChunkGenerator createGenerator(ConfigPack configPack) { + return configPack.getGeneratorProvider().newInstance(configPack); + } + + @Override + public ChunkGenerator getHandle() { + return chunkGenerator; + } + + @Override + public String getGeneratorName() { + return "TERRA"; + } + + @Override + public WorldGeneratorType getType() { + return WorldGeneratorType.INFINITE; + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java new file mode 100644 index 000000000..fe0819de3 --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java @@ -0,0 +1,41 @@ +package org.allaymc.terra.allay.handle; + +import com.dfsek.terra.api.handle.ItemHandle; +import com.dfsek.terra.api.inventory.Item; +import com.dfsek.terra.api.inventory.item.Enchantment; + +import org.allaymc.api.item.enchantment.EnchantmentRegistry; +import org.allaymc.api.item.enchantment.type.EnchantmentLuckOfTheSeaType; +import org.allaymc.api.item.registry.ItemTypeRegistry; +import org.allaymc.api.utils.Identifier; +import org.allaymc.terra.allay.Mapping; +import org.allaymc.terra.allay.delegate.AllayEnchantment; +import org.allaymc.terra.allay.delegate.AllayItemType; + +import java.util.Set; +import java.util.stream.Collectors; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public class AllayItemHandle implements ItemHandle { + @Override + public Item createItem(String data) { + return new AllayItemType(ItemTypeRegistry.getRegistry().get(new Identifier(Mapping.itemIdJeToBe(data)))); + } + + @Override + public Enchantment getEnchantment(String id) { + return new AllayEnchantment(EnchantmentRegistry.getRegistry().getByK2(new Identifier(Mapping.enchantmentIdJeToBe(id)))); + } + + @Override + public Set getEnchantments() { + return EnchantmentRegistry.getRegistry().getContent().m1().values().stream() + .map(AllayEnchantment::new) + .collect(Collectors.toSet()); + } +} From 59d76329275c79a373af1e456420d5d4fd25b094 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 16 Jun 2024 03:30:50 +0800 Subject: [PATCH 011/136] feat: add mapping files --- .../allaymc/terra/allay/TerraAllayPlugin.java | 7 +- .../src/main/resources/mapping/biomes.json | 194 + .../src/main/resources/mapping/blocks.json | 511874 +++++++++++++++ .../src/main/resources/mapping/items.json | 7347 + 4 files changed, 519419 insertions(+), 3 deletions(-) create mode 100644 platforms/allay/src/main/resources/mapping/biomes.json create mode 100644 platforms/allay/src/main/resources/mapping/blocks.json create mode 100644 platforms/allay/src/main/resources/mapping/items.json diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java index 91c2d54f4..5681a09ac 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java @@ -28,12 +28,13 @@ public class TerraAllayPlugin extends Plugin { public void onEnable() { log.info("Starting Terra..."); - PLATFORM = new AllayPlatform(); - PLATFORM.getEventManager().callEvent(new PlatformInitializationEvent()); - log.info("Loading mapping..."); Mapping.init(); + log.info("Initializing allay platform..."); + PLATFORM = new AllayPlatform(); + PLATFORM.getEventManager().callEvent(new PlatformInitializationEvent()); + log.info("Registering generator..."); WorldGeneratorFactory.getFactory().register("TERRA", AllayGeneratorWrapper::new); diff --git a/platforms/allay/src/main/resources/mapping/biomes.json b/platforms/allay/src/main/resources/mapping/biomes.json new file mode 100644 index 000000000..063b49a87 --- /dev/null +++ b/platforms/allay/src/main/resources/mapping/biomes.json @@ -0,0 +1,194 @@ +{ + "minecraft:badlands": { + "bedrock_id": 37 + }, + "minecraft:bamboo_jungle": { + "bedrock_id": 48 + }, + "minecraft:basalt_deltas": { + "bedrock_id": 181 + }, + "minecraft:beach": { + "bedrock_id": 16 + }, + "minecraft:birch_forest": { + "bedrock_id": 27 + }, + "minecraft:cherry_grove": { + "bedrock_id": 192 + }, + "minecraft:cold_ocean": { + "bedrock_id": 44 + }, + "minecraft:crimson_forest": { + "bedrock_id": 179 + }, + "minecraft:dark_forest": { + "bedrock_id": 29 + }, + "minecraft:deep_cold_ocean": { + "bedrock_id": 45 + }, + "minecraft:deep_dark": { + "bedrock_id": 190 + }, + "minecraft:deep_frozen_ocean": { + "bedrock_id": 47 + }, + "minecraft:deep_lukewarm_ocean": { + "bedrock_id": 43 + }, + "minecraft:deep_ocean": { + "bedrock_id": 24 + }, + "minecraft:desert": { + "bedrock_id": 2 + }, + "minecraft:dripstone_caves": { + "bedrock_id": 188 + }, + "minecraft:end_barrens": { + "bedrock_id": 9 + }, + "minecraft:end_highlands": { + "bedrock_id": 9 + }, + "minecraft:end_midlands": { + "bedrock_id": 9 + }, + "minecraft:eroded_badlands": { + "bedrock_id": 165 + }, + "minecraft:flower_forest": { + "bedrock_id": 132 + }, + "minecraft:forest": { + "bedrock_id": 4 + }, + "minecraft:frozen_ocean": { + "bedrock_id": 46 + }, + "minecraft:frozen_peaks": { + "bedrock_id": 183 + }, + "minecraft:frozen_river": { + "bedrock_id": 11 + }, + "minecraft:grove": { + "bedrock_id": 185 + }, + "minecraft:ice_spikes": { + "bedrock_id": 140 + }, + "minecraft:jagged_peaks": { + "bedrock_id": 182 + }, + "minecraft:jungle": { + "bedrock_id": 21 + }, + "minecraft:lukewarm_ocean": { + "bedrock_id": 42 + }, + "minecraft:lush_caves": { + "bedrock_id": 187 + }, + "minecraft:mangrove_swamp": { + "bedrock_id": 191 + }, + "minecraft:meadow": { + "bedrock_id": 186 + }, + "minecraft:mushroom_fields": { + "bedrock_id": 14 + }, + "minecraft:nether_wastes": { + "bedrock_id": 8 + }, + "minecraft:ocean": { + "bedrock_id": 0 + }, + "minecraft:old_growth_birch_forest": { + "bedrock_id": 155 + }, + "minecraft:old_growth_pine_taiga": { + "bedrock_id": 32 + }, + "minecraft:old_growth_spruce_taiga": { + "bedrock_id": 160 + }, + "minecraft:plains": { + "bedrock_id": 1 + }, + "minecraft:river": { + "bedrock_id": 7 + }, + "minecraft:savanna": { + "bedrock_id": 35 + }, + "minecraft:savanna_plateau": { + "bedrock_id": 36 + }, + "minecraft:small_end_islands": { + "bedrock_id": 9 + }, + "minecraft:snowy_beach": { + "bedrock_id": 26 + }, + "minecraft:snowy_plains": { + "bedrock_id": 12 + }, + "minecraft:snowy_slopes": { + "bedrock_id": 184 + }, + "minecraft:snowy_taiga": { + "bedrock_id": 30 + }, + "minecraft:soul_sand_valley": { + "bedrock_id": 178 + }, + "minecraft:sparse_jungle": { + "bedrock_id": 23 + }, + "minecraft:stony_peaks": { + "bedrock_id": 189 + }, + "minecraft:stony_shore": { + "bedrock_id": 25 + }, + "minecraft:sunflower_plains": { + "bedrock_id": 129 + }, + "minecraft:swamp": { + "bedrock_id": 6 + }, + "minecraft:taiga": { + "bedrock_id": 5 + }, + "minecraft:the_end": { + "bedrock_id": 9 + }, + "minecraft:the_void": { + "bedrock_id": 7 + }, + "minecraft:warm_ocean": { + "bedrock_id": 40 + }, + "minecraft:warped_forest": { + "bedrock_id": 180 + }, + "minecraft:windswept_forest": { + "bedrock_id": 34 + }, + "minecraft:windswept_gravelly_hills": { + "bedrock_id": 131 + }, + "minecraft:windswept_hills": { + "bedrock_id": 3 + }, + "minecraft:windswept_savanna": { + "bedrock_id": 163 + }, + "minecraft:wooded_badlands": { + "bedrock_id": 38 + } +} \ No newline at end of file diff --git a/platforms/allay/src/main/resources/mapping/blocks.json b/platforms/allay/src/main/resources/mapping/blocks.json new file mode 100644 index 000000000..a341f74f4 --- /dev/null +++ b/platforms/allay/src/main/resources/mapping/blocks.json @@ -0,0 +1,511874 @@ +{ + "mappings": [ + { + "java_state": { + "Name": "minecraft:air" + }, + "bedrock_state": { + "bedrock_identifier": "air" + } + }, + { + "java_state": { + "Name": "minecraft:stone" + }, + "bedrock_state": { + "bedrock_identifier": "stone" + } + }, + { + "java_state": { + "Name": "minecraft:granite" + }, + "bedrock_state": { + "bedrock_identifier": "granite" + } + }, + { + "java_state": { + "Name": "minecraft:polished_granite" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite" + } + }, + { + "java_state": { + "Name": "minecraft:diorite" + }, + "bedrock_state": { + "bedrock_identifier": "diorite" + } + }, + { + "java_state": { + "Name": "minecraft:polished_diorite" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite" + } + }, + { + "java_state": { + "Name": "minecraft:andesite" + }, + "bedrock_state": { + "bedrock_identifier": "andesite" + } + }, + { + "java_state": { + "Name": "minecraft:polished_andesite" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite" + } + }, + { + "java_state": { + "Properties": { + "snowy": "true" + }, + "Name": "minecraft:grass_block" + }, + "bedrock_state": { + "bedrock_identifier": "grass_block" + } + }, + { + "java_state": { + "Properties": { + "snowy": "false" + }, + "Name": "minecraft:grass_block" + }, + "bedrock_state": { + "bedrock_identifier": "grass_block" + } + }, + { + "java_state": { + "Name": "minecraft:dirt" + }, + "bedrock_state": { + "bedrock_identifier": "dirt", + "state": { + "dirt_type": "normal" + } + } + }, + { + "java_state": { + "Name": "minecraft:coarse_dirt" + }, + "bedrock_state": { + "bedrock_identifier": "dirt", + "state": { + "dirt_type": "coarse" + } + } + }, + { + "java_state": { + "Properties": { + "snowy": "true" + }, + "Name": "minecraft:podzol" + }, + "bedrock_state": { + "bedrock_identifier": "podzol" + } + }, + { + "java_state": { + "Properties": { + "snowy": "false" + }, + "Name": "minecraft:podzol" + }, + "bedrock_state": { + "bedrock_identifier": "podzol" + } + }, + { + "java_state": { + "Name": "minecraft:cobblestone" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone" + } + }, + { + "java_state": { + "Name": "minecraft:oak_planks" + }, + "bedrock_state": { + "bedrock_identifier": "oak_planks" + } + }, + { + "java_state": { + "Name": "minecraft:spruce_planks" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_planks" + } + }, + { + "java_state": { + "Name": "minecraft:birch_planks" + }, + "bedrock_state": { + "bedrock_identifier": "birch_planks" + } + }, + { + "java_state": { + "Name": "minecraft:jungle_planks" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_planks" + } + }, + { + "java_state": { + "Name": "minecraft:acacia_planks" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_planks" + } + }, + { + "java_state": { + "Name": "minecraft:cherry_planks" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_planks" + } + }, + { + "java_state": { + "Name": "minecraft:dark_oak_planks" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_planks" + } + }, + { + "java_state": { + "Name": "minecraft:mangrove_planks" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_planks" + } + }, + { + "java_state": { + "Name": "minecraft:bamboo_planks" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_planks" + } + }, + { + "java_state": { + "Name": "minecraft:bamboo_mosaic" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic" + } + }, + { + "java_state": { + "Properties": { + "stage": "0" + }, + "Name": "minecraft:oak_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "oak_sapling", + "state": { + "age_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "stage": "1" + }, + "Name": "minecraft:oak_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "oak_sapling", + "state": { + "age_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "stage": "0" + }, + "Name": "minecraft:spruce_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_sapling", + "state": { + "age_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "stage": "1" + }, + "Name": "minecraft:spruce_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_sapling", + "state": { + "age_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "stage": "0" + }, + "Name": "minecraft:birch_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "birch_sapling", + "state": { + "age_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "stage": "1" + }, + "Name": "minecraft:birch_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "birch_sapling", + "state": { + "age_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "stage": "0" + }, + "Name": "minecraft:jungle_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_sapling", + "state": { + "age_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "stage": "1" + }, + "Name": "minecraft:jungle_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_sapling", + "state": { + "age_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "stage": "0" + }, + "Name": "minecraft:acacia_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_sapling", + "state": { + "age_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "stage": "1" + }, + "Name": "minecraft:acacia_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_sapling", + "state": { + "age_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "stage": "0" + }, + "Name": "minecraft:cherry_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_sapling", + "state": { + "age_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "stage": "1" + }, + "Name": "minecraft:cherry_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_sapling", + "state": { + "age_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "stage": "0" + }, + "Name": "minecraft:dark_oak_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_sapling", + "state": { + "age_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "stage": "1" + }, + "Name": "minecraft:dark_oak_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_sapling", + "state": { + "age_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "0", + "hanging": "true", + "age": "0" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "0", + "hanging": "true", + "age": "0" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "1", + "hanging": "true", + "age": "0" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "1", + "hanging": "true", + "age": "0" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "0", + "hanging": "false", + "age": "0" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "0", + "hanging": "false", + "age": "0" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "1", + "hanging": "false", + "age": "0" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "1", + "hanging": "false", + "age": "0" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "0", + "hanging": "true", + "age": "1" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "0", + "hanging": "true", + "age": "1" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "1", + "hanging": "true", + "age": "1" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "1", + "hanging": "true", + "age": "1" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "0", + "hanging": "false", + "age": "1" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "0", + "hanging": "false", + "age": "1" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "1", + "hanging": "false", + "age": "1" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "1", + "hanging": "false", + "age": "1" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "0", + "hanging": "true", + "age": "2" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "0", + "hanging": "true", + "age": "2" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "1", + "hanging": "true", + "age": "2" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "1", + "hanging": "true", + "age": "2" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "0", + "hanging": "false", + "age": "2" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "0", + "hanging": "false", + "age": "2" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "1", + "hanging": "false", + "age": "2" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "1", + "hanging": "false", + "age": "2" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "0", + "hanging": "true", + "age": "3" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "0", + "hanging": "true", + "age": "3" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "1", + "hanging": "true", + "age": "3" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "1", + "hanging": "true", + "age": "3" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "0", + "hanging": "false", + "age": "3" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "0", + "hanging": "false", + "age": "3" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "1", + "hanging": "false", + "age": "3" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "1", + "hanging": "false", + "age": "3" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "0", + "hanging": "true", + "age": "4" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "0", + "hanging": "true", + "age": "4" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "1", + "hanging": "true", + "age": "4" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "1", + "hanging": "true", + "age": "4" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "0", + "hanging": "false", + "age": "4" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "0", + "hanging": "false", + "age": "4" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 0, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "stage": "1", + "hanging": "false", + "age": "4" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "stage": "1", + "hanging": "false", + "age": "4" + }, + "Name": "minecraft:mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_propagule", + "state": { + "propagule_stage": 1, + "hanging": false + } + } + }, + { + "java_state": { + "Name": "minecraft:bedrock" + }, + "bedrock_state": { + "bedrock_identifier": "bedrock", + "state": { + "infiniburn_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "level": "0" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "water", + "state": { + "liquid_depth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "level": "1" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 1 + } + } + }, + { + "java_state": { + "Properties": { + "level": "2" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 2 + } + } + }, + { + "java_state": { + "Properties": { + "level": "3" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 3 + } + } + }, + { + "java_state": { + "Properties": { + "level": "4" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 4 + } + } + }, + { + "java_state": { + "Properties": { + "level": "5" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 5 + } + } + }, + { + "java_state": { + "Properties": { + "level": "6" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 6 + } + } + }, + { + "java_state": { + "Properties": { + "level": "7" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "level": "8" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 8 + } + } + }, + { + "java_state": { + "Properties": { + "level": "9" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 9 + } + } + }, + { + "java_state": { + "Properties": { + "level": "10" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 10 + } + } + }, + { + "java_state": { + "Properties": { + "level": "11" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 11 + } + } + }, + { + "java_state": { + "Properties": { + "level": "12" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 12 + } + } + }, + { + "java_state": { + "Properties": { + "level": "13" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 13 + } + } + }, + { + "java_state": { + "Properties": { + "level": "14" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 14 + } + } + }, + { + "java_state": { + "Properties": { + "level": "15" + }, + "Name": "minecraft:water" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_water", + "state": { + "liquid_depth": 15 + } + } + }, + { + "java_state": { + "Properties": { + "level": "0" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "lava", + "state": { + "liquid_depth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "level": "1" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 1 + } + } + }, + { + "java_state": { + "Properties": { + "level": "2" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 2 + } + } + }, + { + "java_state": { + "Properties": { + "level": "3" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 3 + } + } + }, + { + "java_state": { + "Properties": { + "level": "4" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 4 + } + } + }, + { + "java_state": { + "Properties": { + "level": "5" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 5 + } + } + }, + { + "java_state": { + "Properties": { + "level": "6" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 6 + } + } + }, + { + "java_state": { + "Properties": { + "level": "7" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "level": "8" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 8 + } + } + }, + { + "java_state": { + "Properties": { + "level": "9" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 9 + } + } + }, + { + "java_state": { + "Properties": { + "level": "10" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 10 + } + } + }, + { + "java_state": { + "Properties": { + "level": "11" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 11 + } + } + }, + { + "java_state": { + "Properties": { + "level": "12" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 12 + } + } + }, + { + "java_state": { + "Properties": { + "level": "13" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 13 + } + } + }, + { + "java_state": { + "Properties": { + "level": "14" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 14 + } + } + }, + { + "java_state": { + "Properties": { + "level": "15" + }, + "Name": "minecraft:lava" + }, + "bedrock_state": { + "bedrock_identifier": "flowing_lava", + "state": { + "liquid_depth": 15 + } + } + }, + { + "java_state": { + "Name": "minecraft:sand" + }, + "bedrock_state": { + "bedrock_identifier": "sand", + "state": { + "sand_type": "normal" + } + } + }, + { + "java_state": { + "Properties": { + "dusted": "0" + }, + "Name": "minecraft:suspicious_sand" + }, + "bedrock_state": { + "bedrock_identifier": "suspicious_sand", + "state": { + "hanging": false, + "brushed_progress": 0 + } + } + }, + { + "java_state": { + "Properties": { + "dusted": "1" + }, + "Name": "minecraft:suspicious_sand" + }, + "bedrock_state": { + "bedrock_identifier": "suspicious_sand", + "state": { + "hanging": false, + "brushed_progress": 1 + } + } + }, + { + "java_state": { + "Properties": { + "dusted": "2" + }, + "Name": "minecraft:suspicious_sand" + }, + "bedrock_state": { + "bedrock_identifier": "suspicious_sand", + "state": { + "hanging": false, + "brushed_progress": 2 + } + } + }, + { + "java_state": { + "Properties": { + "dusted": "3" + }, + "Name": "minecraft:suspicious_sand" + }, + "bedrock_state": { + "bedrock_identifier": "suspicious_sand", + "state": { + "hanging": false, + "brushed_progress": 3 + } + } + }, + { + "java_state": { + "Name": "minecraft:red_sand" + }, + "bedrock_state": { + "bedrock_identifier": "sand", + "state": { + "sand_type": "red" + } + } + }, + { + "java_state": { + "Name": "minecraft:gravel" + }, + "bedrock_state": { + "bedrock_identifier": "gravel" + } + }, + { + "java_state": { + "Properties": { + "dusted": "0" + }, + "Name": "minecraft:suspicious_gravel" + }, + "bedrock_state": { + "bedrock_identifier": "suspicious_gravel", + "state": { + "hanging": false, + "brushed_progress": 0 + } + } + }, + { + "java_state": { + "Properties": { + "dusted": "1" + }, + "Name": "minecraft:suspicious_gravel" + }, + "bedrock_state": { + "bedrock_identifier": "suspicious_gravel", + "state": { + "hanging": false, + "brushed_progress": 1 + } + } + }, + { + "java_state": { + "Properties": { + "dusted": "2" + }, + "Name": "minecraft:suspicious_gravel" + }, + "bedrock_state": { + "bedrock_identifier": "suspicious_gravel", + "state": { + "hanging": false, + "brushed_progress": 2 + } + } + }, + { + "java_state": { + "Properties": { + "dusted": "3" + }, + "Name": "minecraft:suspicious_gravel" + }, + "bedrock_state": { + "bedrock_identifier": "suspicious_gravel", + "state": { + "hanging": false, + "brushed_progress": 3 + } + } + }, + { + "java_state": { + "Name": "minecraft:gold_ore" + }, + "bedrock_state": { + "bedrock_identifier": "gold_ore" + } + }, + { + "java_state": { + "Name": "minecraft:deepslate_gold_ore" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_gold_ore" + } + }, + { + "java_state": { + "Name": "minecraft:iron_ore" + }, + "bedrock_state": { + "bedrock_identifier": "iron_ore" + } + }, + { + "java_state": { + "Name": "minecraft:deepslate_iron_ore" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_iron_ore" + } + }, + { + "java_state": { + "Name": "minecraft:coal_ore" + }, + "bedrock_state": { + "bedrock_identifier": "coal_ore" + } + }, + { + "java_state": { + "Name": "minecraft:deepslate_coal_ore" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_coal_ore" + } + }, + { + "java_state": { + "Name": "minecraft:nether_gold_ore" + }, + "bedrock_state": { + "bedrock_identifier": "nether_gold_ore" + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:oak_log" + }, + "bedrock_state": { + "bedrock_identifier": "oak_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:oak_log" + }, + "bedrock_state": { + "bedrock_identifier": "oak_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:oak_log" + }, + "bedrock_state": { + "bedrock_identifier": "oak_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:spruce_log" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:spruce_log" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:spruce_log" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:birch_log" + }, + "bedrock_state": { + "bedrock_identifier": "birch_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:birch_log" + }, + "bedrock_state": { + "bedrock_identifier": "birch_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:birch_log" + }, + "bedrock_state": { + "bedrock_identifier": "birch_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:jungle_log" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:jungle_log" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:jungle_log" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:acacia_log" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:acacia_log" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:acacia_log" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:cherry_log" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:cherry_log" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:cherry_log" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:dark_oak_log" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:dark_oak_log" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:dark_oak_log" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:mangrove_log" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:mangrove_log" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:mangrove_log" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:mangrove_roots" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_roots" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:mangrove_roots" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_roots" + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:muddy_mangrove_roots" + }, + "bedrock_state": { + "bedrock_identifier": "muddy_mangrove_roots", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:muddy_mangrove_roots" + }, + "bedrock_state": { + "bedrock_identifier": "muddy_mangrove_roots", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:muddy_mangrove_roots" + }, + "bedrock_state": { + "bedrock_identifier": "muddy_mangrove_roots", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:bamboo_block" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_block", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:bamboo_block" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_block", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:bamboo_block" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_block", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_spruce_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_spruce_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_spruce_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_spruce_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_spruce_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_spruce_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_birch_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_birch_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_birch_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_birch_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_birch_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_birch_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_jungle_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_jungle_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_jungle_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_jungle_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_jungle_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_jungle_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_acacia_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_acacia_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_acacia_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_acacia_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_acacia_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_acacia_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_cherry_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_cherry_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_cherry_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_cherry_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_cherry_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_cherry_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_dark_oak_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_dark_oak_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_dark_oak_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_dark_oak_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_dark_oak_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_dark_oak_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_oak_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_oak_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_oak_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_oak_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_oak_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_oak_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_mangrove_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_mangrove_log", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_mangrove_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_mangrove_log", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_mangrove_log" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_mangrove_log", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_bamboo_block" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_bamboo_block", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_bamboo_block" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_bamboo_block", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_bamboo_block" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_bamboo_block", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:oak_wood" + }, + "bedrock_state": { + "bedrock_identifier": "oak_wood", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:oak_wood" + }, + "bedrock_state": { + "bedrock_identifier": "oak_wood", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:oak_wood" + }, + "bedrock_state": { + "bedrock_identifier": "oak_wood", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:spruce_wood" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_wood", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:spruce_wood" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_wood", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:spruce_wood" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_wood", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:birch_wood" + }, + "bedrock_state": { + "bedrock_identifier": "birch_wood", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:birch_wood" + }, + "bedrock_state": { + "bedrock_identifier": "birch_wood", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:birch_wood" + }, + "bedrock_state": { + "bedrock_identifier": "birch_wood", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:jungle_wood" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_wood", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:jungle_wood" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_wood", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:jungle_wood" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_wood", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:acacia_wood" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_wood", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:acacia_wood" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_wood", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:acacia_wood" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_wood", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:cherry_wood" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_wood", + "state": { + "stripped_bit": false, + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:cherry_wood" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_wood", + "state": { + "stripped_bit": false, + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:cherry_wood" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_wood", + "state": { + "stripped_bit": false, + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:dark_oak_wood" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_wood", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:dark_oak_wood" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_wood", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:dark_oak_wood" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_wood", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:mangrove_wood" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_wood", + "state": { + "stripped_bit": false, + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:mangrove_wood" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_wood", + "state": { + "stripped_bit": false, + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:mangrove_wood" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_wood", + "state": { + "stripped_bit": false, + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_oak_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_oak_wood", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_oak_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_oak_wood", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_oak_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_oak_wood", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_spruce_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_spruce_wood", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_spruce_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_spruce_wood", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_spruce_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_spruce_wood", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_birch_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_birch_wood", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_birch_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_birch_wood", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_birch_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_birch_wood", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_jungle_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_jungle_wood", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_jungle_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_jungle_wood", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_jungle_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_jungle_wood", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_acacia_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_acacia_wood", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_acacia_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_acacia_wood", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_acacia_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_acacia_wood", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_cherry_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_cherry_wood", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_cherry_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_cherry_wood", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_cherry_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_cherry_wood", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_dark_oak_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_dark_oak_wood", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_dark_oak_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_dark_oak_wood", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_dark_oak_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_dark_oak_wood", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_mangrove_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_mangrove_wood", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_mangrove_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_mangrove_wood", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_mangrove_wood" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_mangrove_wood", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:spruce_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:birch_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "birch_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:jungle_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:acacia_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:cherry_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:dark_oak_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:mangrove_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "1" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "1" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "2" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "2" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "3" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "3" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "4" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "4" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "5" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "5" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "6" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "6" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "true", + "distance": "7" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": true, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "persistent": "false", + "distance": "7" + }, + "Name": "minecraft:flowering_azalea_leaves" + }, + "bedrock_state": { + "bedrock_identifier": "azalea_leaves_flowered", + "state": { + "persistent_bit": false, + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:sponge" + }, + "bedrock_state": { + "bedrock_identifier": "sponge", + "state": { + "sponge_type": "dry" + } + } + }, + { + "java_state": { + "Name": "minecraft:wet_sponge" + }, + "bedrock_state": { + "bedrock_identifier": "sponge", + "state": { + "sponge_type": "wet" + } + } + }, + { + "java_state": { + "Name": "minecraft:glass" + }, + "bedrock_state": { + "bedrock_identifier": "glass" + } + }, + { + "java_state": { + "Name": "minecraft:lapis_ore" + }, + "bedrock_state": { + "bedrock_identifier": "lapis_ore" + } + }, + { + "java_state": { + "Name": "minecraft:deepslate_lapis_ore" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_lapis_ore" + } + }, + { + "java_state": { + "Name": "minecraft:lapis_block" + }, + "bedrock_state": { + "bedrock_identifier": "lapis_block" + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "facing": "north" + }, + "Name": "minecraft:dispenser" + }, + "bedrock_state": { + "bedrock_identifier": "dispenser", + "state": { + "facing_direction": 2, + "triggered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "facing": "north" + }, + "Name": "minecraft:dispenser" + }, + "bedrock_state": { + "bedrock_identifier": "dispenser", + "state": { + "facing_direction": 2, + "triggered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "facing": "east" + }, + "Name": "minecraft:dispenser" + }, + "bedrock_state": { + "bedrock_identifier": "dispenser", + "state": { + "facing_direction": 5, + "triggered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "facing": "east" + }, + "Name": "minecraft:dispenser" + }, + "bedrock_state": { + "bedrock_identifier": "dispenser", + "state": { + "facing_direction": 5, + "triggered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "facing": "south" + }, + "Name": "minecraft:dispenser" + }, + "bedrock_state": { + "bedrock_identifier": "dispenser", + "state": { + "facing_direction": 3, + "triggered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "facing": "south" + }, + "Name": "minecraft:dispenser" + }, + "bedrock_state": { + "bedrock_identifier": "dispenser", + "state": { + "facing_direction": 3, + "triggered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "facing": "west" + }, + "Name": "minecraft:dispenser" + }, + "bedrock_state": { + "bedrock_identifier": "dispenser", + "state": { + "facing_direction": 4, + "triggered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "facing": "west" + }, + "Name": "minecraft:dispenser" + }, + "bedrock_state": { + "bedrock_identifier": "dispenser", + "state": { + "facing_direction": 4, + "triggered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "facing": "up" + }, + "Name": "minecraft:dispenser" + }, + "bedrock_state": { + "bedrock_identifier": "dispenser", + "state": { + "facing_direction": 1, + "triggered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "facing": "up" + }, + "Name": "minecraft:dispenser" + }, + "bedrock_state": { + "bedrock_identifier": "dispenser", + "state": { + "facing_direction": 1, + "triggered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "facing": "down" + }, + "Name": "minecraft:dispenser" + }, + "bedrock_state": { + "bedrock_identifier": "dispenser", + "state": { + "facing_direction": 0, + "triggered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "facing": "down" + }, + "Name": "minecraft:dispenser" + }, + "bedrock_state": { + "bedrock_identifier": "dispenser", + "state": { + "facing_direction": 0, + "triggered_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:sandstone" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone", + "state": { + "sand_stone_type": "default" + } + } + }, + { + "java_state": { + "Name": "minecraft:chiseled_sandstone" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone", + "state": { + "sand_stone_type": "heiroglyphs" + } + } + }, + { + "java_state": { + "Name": "minecraft:cut_sandstone" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone", + "state": { + "sand_stone_type": "cut" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "harp" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "basedrum" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "snare" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "hat" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "bass" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "flute" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "guitar" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "chime" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "iron_xylophone" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "cow_bell" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "didgeridoo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "bit" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "banjo" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "pling" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "zombie" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "creeper" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "dragon" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "wither_skeleton" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "piglin" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "0", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "0", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "1", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "1", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "2", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "2", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "3", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "3", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "4", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "4", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "5", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "5", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "6", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "6", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "7", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "7", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "8", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "8", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "9", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "9", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "10", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "10", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "11", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "11", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "12", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "12", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "13", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "13", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "14", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "14", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "15", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "15", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "16", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "16", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "17", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "17", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "18", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "18", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "19", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "19", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "20", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "20", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "21", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "21", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "22", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "22", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "23", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "23", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "note": "24", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "note": "24", + "instrument": "custom_head" + }, + "Name": "minecraft:note_block" + }, + "bedrock_state": { + "bedrock_identifier": "noteblock" + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:white_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:orange_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:magenta_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:light_blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:yellow_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:lime_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:pink_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:light_gray_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:cyan_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:purple_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:blue_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:brown_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:green_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:red_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "north" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "north" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "south" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "south" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "west" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "west" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "true", + "facing": "east" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "head", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "part": "foot", + "occupied": "false", + "facing": "east" + }, + "Name": "minecraft:black_bed" + }, + "bedrock_state": { + "bedrock_identifier": "bed", + "state": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "north_south", + "powered": "true" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 0, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "north_south", + "powered": "true" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 0, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "east_west", + "powered": "true" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 1, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "east_west", + "powered": "true" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 1, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_east", + "powered": "true" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 2, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_east", + "powered": "true" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 2, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_west", + "powered": "true" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 3, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_west", + "powered": "true" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 3, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_north", + "powered": "true" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 4, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_north", + "powered": "true" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 4, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_south", + "powered": "true" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 5, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_south", + "powered": "true" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 5, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "north_south", + "powered": "false" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 0, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "north_south", + "powered": "false" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 0, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "east_west", + "powered": "false" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 1, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "east_west", + "powered": "false" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 1, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_east", + "powered": "false" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 2, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_east", + "powered": "false" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 2, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_west", + "powered": "false" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 3, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_west", + "powered": "false" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 3, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_north", + "powered": "false" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 4, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_north", + "powered": "false" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 4, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_south", + "powered": "false" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 5, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_south", + "powered": "false" + }, + "Name": "minecraft:powered_rail" + }, + "bedrock_state": { + "bedrock_identifier": "golden_rail", + "state": { + "rail_direction": 5, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "north_south", + "powered": "true" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 0, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "north_south", + "powered": "true" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 0, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "east_west", + "powered": "true" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 1, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "east_west", + "powered": "true" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 1, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_east", + "powered": "true" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 2, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_east", + "powered": "true" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 2, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_west", + "powered": "true" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 3, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_west", + "powered": "true" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 3, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_north", + "powered": "true" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 4, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_north", + "powered": "true" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 4, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_south", + "powered": "true" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 5, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_south", + "powered": "true" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 5, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "north_south", + "powered": "false" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 0, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "north_south", + "powered": "false" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 0, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "east_west", + "powered": "false" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 1, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "east_west", + "powered": "false" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 1, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_east", + "powered": "false" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 2, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_east", + "powered": "false" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 2, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_west", + "powered": "false" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 3, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_west", + "powered": "false" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 3, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_north", + "powered": "false" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 4, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_north", + "powered": "false" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 4, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_south", + "powered": "false" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 5, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_south", + "powered": "false" + }, + "Name": "minecraft:detector_rail" + }, + "bedrock_state": { + "bedrock_identifier": "detector_rail", + "state": { + "rail_direction": 5, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "extended": "true" + }, + "Name": "minecraft:sticky_piston" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "extended": "true" + }, + "Name": "minecraft:sticky_piston" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "extended": "true" + }, + "Name": "minecraft:sticky_piston" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "extended": "true" + }, + "Name": "minecraft:sticky_piston" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "up", + "extended": "true" + }, + "Name": "minecraft:sticky_piston" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "down", + "extended": "true" + }, + "Name": "minecraft:sticky_piston" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston", + "state": { + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "extended": "false" + }, + "Name": "minecraft:sticky_piston" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "extended": "false" + }, + "Name": "minecraft:sticky_piston" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "extended": "false" + }, + "Name": "minecraft:sticky_piston" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "extended": "false" + }, + "Name": "minecraft:sticky_piston" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "up", + "extended": "false" + }, + "Name": "minecraft:sticky_piston" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "down", + "extended": "false" + }, + "Name": "minecraft:sticky_piston" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston", + "state": { + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Name": "minecraft:cobweb" + }, + "bedrock_state": { + "bedrock_identifier": "web" + } + }, + { + "java_state": { + "Name": "minecraft:short_grass" + }, + "bedrock_state": { + "bedrock_identifier": "short_grass" + } + }, + { + "java_state": { + "Name": "minecraft:fern" + }, + "bedrock_state": { + "bedrock_identifier": "fern" + } + }, + { + "java_state": { + "Name": "minecraft:dead_bush" + }, + "bedrock_state": { + "bedrock_identifier": "deadbush" + } + }, + { + "java_state": { + "Name": "minecraft:seagrass" + }, + "bedrock_state": { + "bedrock_identifier": "seagrass", + "state": { + "sea_grass_type": "default" + } + } + }, + { + "java_state": { + "Properties": { + "half": "upper" + }, + "Name": "minecraft:tall_seagrass" + }, + "bedrock_state": { + "bedrock_identifier": "seagrass", + "state": { + "sea_grass_type": "double_top" + } + } + }, + { + "java_state": { + "Properties": { + "half": "lower" + }, + "Name": "minecraft:tall_seagrass" + }, + "bedrock_state": { + "bedrock_identifier": "seagrass", + "state": { + "sea_grass_type": "double_bot" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "extended": "true" + }, + "Name": "minecraft:piston" + }, + "bedrock_state": { + "bedrock_identifier": "piston", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "extended": "true" + }, + "Name": "minecraft:piston" + }, + "bedrock_state": { + "bedrock_identifier": "piston", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "extended": "true" + }, + "Name": "minecraft:piston" + }, + "bedrock_state": { + "bedrock_identifier": "piston", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "extended": "true" + }, + "Name": "minecraft:piston" + }, + "bedrock_state": { + "bedrock_identifier": "piston", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "up", + "extended": "true" + }, + "Name": "minecraft:piston" + }, + "bedrock_state": { + "bedrock_identifier": "piston", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "down", + "extended": "true" + }, + "Name": "minecraft:piston" + }, + "bedrock_state": { + "bedrock_identifier": "piston", + "state": { + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "extended": "false" + }, + "Name": "minecraft:piston" + }, + "bedrock_state": { + "bedrock_identifier": "piston", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "extended": "false" + }, + "Name": "minecraft:piston" + }, + "bedrock_state": { + "bedrock_identifier": "piston", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "extended": "false" + }, + "Name": "minecraft:piston" + }, + "bedrock_state": { + "bedrock_identifier": "piston", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "extended": "false" + }, + "Name": "minecraft:piston" + }, + "bedrock_state": { + "bedrock_identifier": "piston", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "up", + "extended": "false" + }, + "Name": "minecraft:piston" + }, + "bedrock_state": { + "bedrock_identifier": "piston", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "down", + "extended": "false" + }, + "Name": "minecraft:piston" + }, + "bedrock_state": { + "bedrock_identifier": "piston", + "state": { + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "short": "true", + "facing": "north" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "piston_arm_collision", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "short": "true", + "facing": "north" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston_arm_collision", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "short": "false", + "facing": "north" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "piston_arm_collision", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "short": "false", + "facing": "north" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston_arm_collision", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "short": "true", + "facing": "east" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "piston_arm_collision", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "short": "true", + "facing": "east" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston_arm_collision", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "short": "false", + "facing": "east" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "piston_arm_collision", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "short": "false", + "facing": "east" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston_arm_collision", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "short": "true", + "facing": "south" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "piston_arm_collision", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "short": "true", + "facing": "south" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston_arm_collision", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "short": "false", + "facing": "south" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "piston_arm_collision", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "short": "false", + "facing": "south" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston_arm_collision", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "short": "true", + "facing": "west" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "piston_arm_collision", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "short": "true", + "facing": "west" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston_arm_collision", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "short": "false", + "facing": "west" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "piston_arm_collision", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "short": "false", + "facing": "west" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston_arm_collision", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "short": "true", + "facing": "up" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "piston_arm_collision", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "short": "true", + "facing": "up" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston_arm_collision", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "short": "false", + "facing": "up" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "piston_arm_collision", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "short": "false", + "facing": "up" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston_arm_collision", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "short": "true", + "facing": "down" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "piston_arm_collision", + "state": { + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "short": "true", + "facing": "down" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston_arm_collision", + "state": { + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "short": "false", + "facing": "down" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "piston_arm_collision", + "state": { + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "short": "false", + "facing": "down" + }, + "Name": "minecraft:piston_head" + }, + "bedrock_state": { + "bedrock_identifier": "sticky_piston_arm_collision", + "state": { + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Name": "minecraft:white_wool" + }, + "bedrock_state": { + "bedrock_identifier": "white_wool" + } + }, + { + "java_state": { + "Name": "minecraft:orange_wool" + }, + "bedrock_state": { + "bedrock_identifier": "orange_wool" + } + }, + { + "java_state": { + "Name": "minecraft:magenta_wool" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_wool" + } + }, + { + "java_state": { + "Name": "minecraft:light_blue_wool" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_wool" + } + }, + { + "java_state": { + "Name": "minecraft:yellow_wool" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_wool" + } + }, + { + "java_state": { + "Name": "minecraft:lime_wool" + }, + "bedrock_state": { + "bedrock_identifier": "lime_wool" + } + }, + { + "java_state": { + "Name": "minecraft:pink_wool" + }, + "bedrock_state": { + "bedrock_identifier": "pink_wool" + } + }, + { + "java_state": { + "Name": "minecraft:gray_wool" + }, + "bedrock_state": { + "bedrock_identifier": "gray_wool" + } + }, + { + "java_state": { + "Name": "minecraft:light_gray_wool" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_wool" + } + }, + { + "java_state": { + "Name": "minecraft:cyan_wool" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_wool" + } + }, + { + "java_state": { + "Name": "minecraft:purple_wool" + }, + "bedrock_state": { + "bedrock_identifier": "purple_wool" + } + }, + { + "java_state": { + "Name": "minecraft:blue_wool" + }, + "bedrock_state": { + "bedrock_identifier": "blue_wool" + } + }, + { + "java_state": { + "Name": "minecraft:brown_wool" + }, + "bedrock_state": { + "bedrock_identifier": "brown_wool" + } + }, + { + "java_state": { + "Name": "minecraft:green_wool" + }, + "bedrock_state": { + "bedrock_identifier": "green_wool" + } + }, + { + "java_state": { + "Name": "minecraft:red_wool" + }, + "bedrock_state": { + "bedrock_identifier": "red_wool" + } + }, + { + "java_state": { + "Name": "minecraft:black_wool" + }, + "bedrock_state": { + "bedrock_identifier": "black_wool" + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "facing": "north" + }, + "Name": "minecraft:moving_piston" + }, + "bedrock_state": { + "bedrock_identifier": "moving_block" + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "facing": "north" + }, + "Name": "minecraft:moving_piston" + }, + "bedrock_state": { + "bedrock_identifier": "moving_block" + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "facing": "east" + }, + "Name": "minecraft:moving_piston" + }, + "bedrock_state": { + "bedrock_identifier": "moving_block" + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "facing": "east" + }, + "Name": "minecraft:moving_piston" + }, + "bedrock_state": { + "bedrock_identifier": "moving_block" + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "facing": "south" + }, + "Name": "minecraft:moving_piston" + }, + "bedrock_state": { + "bedrock_identifier": "moving_block" + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "facing": "south" + }, + "Name": "minecraft:moving_piston" + }, + "bedrock_state": { + "bedrock_identifier": "moving_block" + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "facing": "west" + }, + "Name": "minecraft:moving_piston" + }, + "bedrock_state": { + "bedrock_identifier": "moving_block" + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "facing": "west" + }, + "Name": "minecraft:moving_piston" + }, + "bedrock_state": { + "bedrock_identifier": "moving_block" + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "facing": "up" + }, + "Name": "minecraft:moving_piston" + }, + "bedrock_state": { + "bedrock_identifier": "moving_block" + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "facing": "up" + }, + "Name": "minecraft:moving_piston" + }, + "bedrock_state": { + "bedrock_identifier": "moving_block" + } + }, + { + "java_state": { + "Properties": { + "type": "normal", + "facing": "down" + }, + "Name": "minecraft:moving_piston" + }, + "bedrock_state": { + "bedrock_identifier": "moving_block" + } + }, + { + "java_state": { + "Properties": { + "type": "sticky", + "facing": "down" + }, + "Name": "minecraft:moving_piston" + }, + "bedrock_state": { + "bedrock_identifier": "moving_block" + } + }, + { + "java_state": { + "Name": "minecraft:dandelion" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_flower" + } + }, + { + "java_state": { + "Name": "minecraft:torchflower" + }, + "bedrock_state": { + "bedrock_identifier": "torchflower" + } + }, + { + "java_state": { + "Name": "minecraft:poppy" + }, + "bedrock_state": { + "bedrock_identifier": "poppy" + } + }, + { + "java_state": { + "Name": "minecraft:blue_orchid" + }, + "bedrock_state": { + "bedrock_identifier": "blue_orchid" + } + }, + { + "java_state": { + "Name": "minecraft:allium" + }, + "bedrock_state": { + "bedrock_identifier": "allium" + } + }, + { + "java_state": { + "Name": "minecraft:azure_bluet" + }, + "bedrock_state": { + "bedrock_identifier": "azure_bluet" + } + }, + { + "java_state": { + "Name": "minecraft:red_tulip" + }, + "bedrock_state": { + "bedrock_identifier": "red_tulip" + } + }, + { + "java_state": { + "Name": "minecraft:orange_tulip" + }, + "bedrock_state": { + "bedrock_identifier": "orange_tulip" + } + }, + { + "java_state": { + "Name": "minecraft:white_tulip" + }, + "bedrock_state": { + "bedrock_identifier": "white_tulip" + } + }, + { + "java_state": { + "Name": "minecraft:pink_tulip" + }, + "bedrock_state": { + "bedrock_identifier": "pink_tulip" + } + }, + { + "java_state": { + "Name": "minecraft:oxeye_daisy" + }, + "bedrock_state": { + "bedrock_identifier": "oxeye_daisy" + } + }, + { + "java_state": { + "Name": "minecraft:cornflower" + }, + "bedrock_state": { + "bedrock_identifier": "cornflower" + } + }, + { + "java_state": { + "Name": "minecraft:wither_rose" + }, + "bedrock_state": { + "bedrock_identifier": "wither_rose" + } + }, + { + "java_state": { + "Name": "minecraft:lily_of_the_valley" + }, + "bedrock_state": { + "bedrock_identifier": "lily_of_the_valley" + } + }, + { + "java_state": { + "Name": "minecraft:brown_mushroom" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom" + } + }, + { + "java_state": { + "Name": "minecraft:red_mushroom" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom" + } + }, + { + "java_state": { + "Name": "minecraft:gold_block" + }, + "bedrock_state": { + "bedrock_identifier": "gold_block" + } + }, + { + "java_state": { + "Name": "minecraft:iron_block" + }, + "bedrock_state": { + "bedrock_identifier": "iron_block" + } + }, + { + "java_state": { + "Name": "minecraft:bricks" + }, + "bedrock_state": { + "bedrock_identifier": "brick_block" + } + }, + { + "java_state": { + "Properties": { + "unstable": "true" + }, + "Name": "minecraft:tnt" + }, + "bedrock_state": { + "bedrock_identifier": "tnt", + "state": { + "explode_bit": false, + "allow_underwater_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "unstable": "false" + }, + "Name": "minecraft:tnt" + }, + "bedrock_state": { + "bedrock_identifier": "tnt", + "state": { + "explode_bit": false, + "allow_underwater_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "bookshelf" + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 63, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 31, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 47, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 15, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 55, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 23, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 39, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 7, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 59, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 27, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 43, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 11, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 51, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 19, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 35, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 3, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 61, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 29, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 45, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 13, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 53, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 21, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 37, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 5, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 57, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 25, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 41, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 9, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 49, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 17, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 33, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 1, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 62, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 30, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 46, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 14, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 54, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 22, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 38, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 6, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 58, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 26, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 42, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 10, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 50, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 18, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 34, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 2, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 60, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 28, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 44, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 12, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 52, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 20, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 36, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 4, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 56, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 24, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 40, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 8, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 48, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 16, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 32, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "north" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 0, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 63, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 31, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 47, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 15, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 55, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 23, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 39, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 7, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 59, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 27, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 43, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 11, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 51, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 19, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 35, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 3, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 61, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 29, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 45, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 13, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 53, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 21, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 37, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 5, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 57, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 25, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 41, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 9, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 49, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 17, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 33, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 1, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 62, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 30, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 46, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 14, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 54, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 22, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 38, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 6, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 58, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 26, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 42, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 10, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 50, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 18, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 34, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 2, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 60, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 28, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 44, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 12, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 52, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 20, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 36, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 4, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 56, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 24, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 40, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 8, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 48, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 16, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 32, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "south" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 0, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 63, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 31, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 47, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 15, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 55, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 23, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 39, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 7, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 59, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 27, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 43, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 11, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 51, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 19, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 35, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 3, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 61, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 29, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 45, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 13, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 53, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 21, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 37, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 5, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 57, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 25, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 41, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 9, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 49, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 17, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 33, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 1, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 62, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 30, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 46, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 14, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 54, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 22, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 38, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 6, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 58, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 26, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 42, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 10, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 50, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 18, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 34, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 2, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 60, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 28, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 44, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 12, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 52, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 20, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 36, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 4, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 56, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 24, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 40, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 8, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 48, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 16, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 32, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "west" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 0, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 63, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 31, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 47, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 15, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 55, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 23, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 39, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 7, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 59, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 27, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 43, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 11, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 51, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 19, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 35, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 3, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 61, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 29, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 45, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 13, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 53, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 21, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 37, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 5, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 57, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 25, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 41, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 9, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 49, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 17, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 33, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "true", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 1, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 62, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 30, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 46, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 14, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 54, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 22, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 38, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 6, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 58, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 26, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 42, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 10, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 50, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 18, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 34, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "true", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 2, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 60, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 28, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 44, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 12, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 52, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 20, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 36, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "true", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 4, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 56, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 24, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 40, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "true", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 8, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 48, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "true", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 16, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "true", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 32, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "slot_5_occupied": "false", + "slot_4_occupied": "false", + "slot_3_occupied": "false", + "slot_2_occupied": "false", + "slot_1_occupied": "false", + "slot_0_occupied": "false", + "facing": "east" + }, + "Name": "minecraft:chiseled_bookshelf" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_bookshelf", + "state": { + "books_stored": 0, + "direction": 3 + } + } + }, + { + "java_state": { + "Name": "minecraft:mossy_cobblestone" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone" + } + }, + { + "java_state": { + "Name": "minecraft:obsidian" + }, + "bedrock_state": { + "bedrock_identifier": "obsidian" + } + }, + { + "java_state": { + "Name": "minecraft:torch" + }, + "bedrock_state": { + "bedrock_identifier": "torch", + "state": { + "torch_facing_direction": "top" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "torch", + "state": { + "torch_facing_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "torch", + "state": { + "torch_facing_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "torch", + "state": { + "torch_facing_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "torch", + "state": { + "torch_facing_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "0" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "1" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "2" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "3" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "4" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "5" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "6" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "7" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "8" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "9" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "10" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "11" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "12" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "13" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "14" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "age": "15" + }, + "Name": "minecraft:fire" + }, + "bedrock_state": { + "bedrock_identifier": "fire", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Name": "minecraft:soul_fire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_fire", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Name": "minecraft:spawner" + }, + "bedrock_state": { + "bedrock_identifier": "mob_spawner" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "single", + "facing": "north" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "single", + "facing": "north" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "left", + "facing": "north" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "left", + "facing": "north" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "right", + "facing": "north" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "right", + "facing": "north" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "single", + "facing": "south" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "single", + "facing": "south" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "left", + "facing": "south" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "left", + "facing": "south" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "right", + "facing": "south" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "right", + "facing": "south" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "single", + "facing": "west" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "single", + "facing": "west" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "left", + "facing": "west" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "left", + "facing": "west" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "right", + "facing": "west" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "right", + "facing": "west" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "single", + "facing": "east" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "single", + "facing": "east" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "left", + "facing": "east" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "left", + "facing": "east" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "right", + "facing": "east" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "right", + "facing": "east" + }, + "Name": "minecraft:chest" + }, + "bedrock_state": { + "bedrock_identifier": "chest", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "0", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "0", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "0", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "0", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "0", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "0", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "0", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "0", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "0", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "1", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "1", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "1", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "1", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "1", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "1", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "1", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "1", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "1", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "2", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "2", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "2", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "2", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "2", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "2", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "2", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "2", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "2", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "3", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "3", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "3", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "3", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "3", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "3", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "3", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "3", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "3", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "4", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "4", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "4", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "4", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "4", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "4", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "4", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "4", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "4", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "5", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "5", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "5", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "5", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "5", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "5", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "5", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "5", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "5", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "6", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "6", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "6", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "6", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "6", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "6", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "6", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "6", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "6", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "7", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "7", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "7", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "7", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "7", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "7", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "7", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "7", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "7", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "8", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "8", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "8", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "8", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "8", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "8", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "8", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "8", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "8", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "9", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "9", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "9", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "9", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "9", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "9", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "9", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "9", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "9", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "10", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "10", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "10", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "10", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "10", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "10", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "10", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "10", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "10", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "11", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "11", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "11", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "11", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "11", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "11", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "11", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "11", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "11", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "12", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "12", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "12", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "12", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "12", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "12", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "12", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "12", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "12", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "13", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "13", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "13", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "13", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "13", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "13", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "13", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "13", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "13", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "14", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "14", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "14", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "14", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "14", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "14", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "14", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "14", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "14", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "15", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "15", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "15", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "15", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "15", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "15", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "15", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "15", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "15", + "north": "up", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "0", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "0", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "0", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "0", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "0", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "0", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "0", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "0", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "0", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "1", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "1", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "1", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "1", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "1", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "1", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "1", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "1", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "1", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "2", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "2", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "2", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "2", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "2", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "2", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "2", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "2", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "2", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "3", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "3", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "3", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "3", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "3", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "3", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "3", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "3", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "3", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "4", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "4", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "4", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "4", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "4", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "4", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "4", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "4", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "4", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "5", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "5", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "5", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "5", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "5", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "5", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "5", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "5", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "5", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "6", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "6", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "6", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "6", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "6", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "6", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "6", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "6", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "6", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "7", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "7", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "7", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "7", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "7", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "7", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "7", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "7", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "7", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "8", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "8", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "8", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "8", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "8", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "8", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "8", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "8", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "8", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "9", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "9", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "9", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "9", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "9", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "9", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "9", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "9", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "9", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "10", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "10", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "10", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "10", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "10", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "10", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "10", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "10", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "10", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "11", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "11", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "11", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "11", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "11", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "11", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "11", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "11", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "11", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "12", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "12", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "12", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "12", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "12", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "12", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "12", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "12", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "12", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "13", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "13", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "13", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "13", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "13", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "13", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "13", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "13", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "13", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "14", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "14", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "14", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "14", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "14", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "14", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "14", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "14", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "14", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "15", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "15", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "15", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "15", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "15", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "15", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "15", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "15", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "15", + "north": "side", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "0", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "0", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "0", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "0", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "0", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "0", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "0", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "0", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "0", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "1", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "1", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "1", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "1", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "1", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "1", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "1", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "1", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "1", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "2", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "2", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "2", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "2", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "2", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "2", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "2", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "2", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "2", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "3", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "3", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "3", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "3", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "3", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "3", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "3", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "3", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "3", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "4", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "4", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "4", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "4", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "4", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "4", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "4", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "4", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "4", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "5", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "5", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "5", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "5", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "5", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "5", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "5", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "5", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "5", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "6", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "6", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "6", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "6", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "6", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "6", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "6", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "6", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "6", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "7", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "7", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "7", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "7", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "7", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "7", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "7", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "7", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "7", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "8", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "8", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "8", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "8", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "8", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "8", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "8", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "8", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "8", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "9", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "9", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "9", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "9", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "9", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "9", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "9", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "9", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "9", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "10", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "10", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "10", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "10", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "10", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "10", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "10", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "10", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "10", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "11", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "11", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "11", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "11", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "11", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "11", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "11", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "11", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "11", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "12", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "12", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "12", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "12", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "12", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "12", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "12", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "12", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "12", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "13", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "13", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "13", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "13", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "13", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "13", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "13", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "13", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "13", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "14", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "14", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "14", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "14", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "14", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "14", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "14", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "14", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "14", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "15", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "15", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "15", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "15", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "15", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "15", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "15", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "15", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "15", + "north": "none", + "east": "up" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "0", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "0", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "0", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "0", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "0", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "0", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "0", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "0", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "0", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "1", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "1", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "1", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "1", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "1", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "1", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "1", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "1", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "1", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "2", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "2", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "2", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "2", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "2", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "2", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "2", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "2", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "2", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "3", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "3", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "3", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "3", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "3", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "3", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "3", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "3", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "3", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "4", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "4", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "4", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "4", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "4", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "4", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "4", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "4", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "4", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "5", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "5", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "5", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "5", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "5", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "5", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "5", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "5", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "5", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "6", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "6", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "6", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "6", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "6", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "6", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "6", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "6", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "6", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "7", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "7", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "7", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "7", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "7", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "7", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "7", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "7", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "7", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "8", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "8", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "8", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "8", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "8", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "8", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "8", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "8", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "8", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "9", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "9", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "9", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "9", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "9", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "9", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "9", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "9", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "9", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "10", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "10", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "10", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "10", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "10", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "10", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "10", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "10", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "10", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "11", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "11", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "11", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "11", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "11", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "11", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "11", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "11", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "11", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "12", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "12", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "12", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "12", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "12", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "12", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "12", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "12", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "12", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "13", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "13", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "13", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "13", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "13", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "13", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "13", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "13", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "13", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "14", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "14", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "14", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "14", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "14", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "14", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "14", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "14", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "14", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "15", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "15", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "15", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "15", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "15", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "15", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "15", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "15", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "15", + "north": "up", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "0", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "0", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "0", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "0", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "0", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "0", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "0", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "0", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "0", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "1", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "1", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "1", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "1", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "1", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "1", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "1", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "1", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "1", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "2", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "2", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "2", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "2", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "2", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "2", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "2", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "2", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "2", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "3", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "3", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "3", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "3", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "3", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "3", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "3", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "3", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "3", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "4", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "4", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "4", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "4", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "4", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "4", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "4", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "4", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "4", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "5", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "5", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "5", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "5", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "5", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "5", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "5", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "5", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "5", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "6", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "6", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "6", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "6", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "6", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "6", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "6", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "6", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "6", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "7", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "7", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "7", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "7", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "7", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "7", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "7", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "7", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "7", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "8", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "8", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "8", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "8", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "8", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "8", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "8", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "8", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "8", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "9", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "9", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "9", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "9", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "9", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "9", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "9", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "9", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "9", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "10", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "10", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "10", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "10", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "10", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "10", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "10", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "10", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "10", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "11", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "11", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "11", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "11", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "11", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "11", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "11", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "11", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "11", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "12", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "12", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "12", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "12", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "12", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "12", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "12", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "12", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "12", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "13", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "13", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "13", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "13", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "13", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "13", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "13", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "13", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "13", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "14", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "14", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "14", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "14", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "14", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "14", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "14", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "14", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "14", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "15", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "15", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "15", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "15", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "15", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "15", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "15", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "15", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "15", + "north": "side", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "0", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "0", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "0", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "0", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "0", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "0", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "0", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "0", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "0", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "1", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "1", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "1", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "1", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "1", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "1", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "1", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "1", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "1", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "2", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "2", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "2", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "2", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "2", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "2", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "2", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "2", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "2", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "3", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "3", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "3", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "3", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "3", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "3", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "3", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "3", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "3", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "4", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "4", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "4", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "4", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "4", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "4", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "4", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "4", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "4", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "5", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "5", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "5", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "5", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "5", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "5", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "5", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "5", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "5", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "6", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "6", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "6", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "6", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "6", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "6", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "6", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "6", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "6", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "7", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "7", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "7", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "7", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "7", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "7", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "7", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "7", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "7", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "8", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "8", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "8", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "8", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "8", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "8", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "8", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "8", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "8", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "9", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "9", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "9", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "9", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "9", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "9", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "9", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "9", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "9", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "10", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "10", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "10", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "10", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "10", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "10", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "10", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "10", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "10", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "11", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "11", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "11", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "11", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "11", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "11", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "11", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "11", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "11", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "12", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "12", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "12", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "12", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "12", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "12", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "12", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "12", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "12", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "13", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "13", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "13", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "13", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "13", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "13", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "13", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "13", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "13", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "14", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "14", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "14", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "14", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "14", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "14", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "14", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "14", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "14", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "15", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "15", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "15", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "15", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "15", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "15", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "15", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "15", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "15", + "north": "none", + "east": "side" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "0", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "0", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "0", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "0", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "0", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "0", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "0", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "0", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "0", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "1", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "1", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "1", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "1", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "1", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "1", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "1", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "1", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "1", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "2", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "2", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "2", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "2", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "2", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "2", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "2", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "2", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "2", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "3", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "3", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "3", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "3", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "3", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "3", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "3", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "3", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "3", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "4", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "4", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "4", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "4", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "4", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "4", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "4", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "4", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "4", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "5", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "5", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "5", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "5", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "5", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "5", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "5", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "5", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "5", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "6", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "6", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "6", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "6", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "6", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "6", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "6", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "6", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "6", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "7", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "7", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "7", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "7", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "7", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "7", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "7", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "7", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "7", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "8", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "8", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "8", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "8", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "8", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "8", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "8", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "8", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "8", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "9", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "9", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "9", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "9", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "9", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "9", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "9", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "9", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "9", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "10", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "10", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "10", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "10", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "10", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "10", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "10", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "10", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "10", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "11", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "11", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "11", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "11", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "11", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "11", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "11", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "11", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "11", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "12", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "12", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "12", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "12", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "12", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "12", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "12", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "12", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "12", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "13", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "13", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "13", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "13", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "13", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "13", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "13", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "13", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "13", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "14", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "14", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "14", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "14", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "14", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "14", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "14", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "14", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "14", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "15", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "15", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "15", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "15", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "15", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "15", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "15", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "15", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "15", + "north": "up", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "0", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "0", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "0", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "0", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "0", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "0", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "0", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "0", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "0", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "1", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "1", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "1", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "1", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "1", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "1", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "1", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "1", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "1", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "2", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "2", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "2", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "2", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "2", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "2", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "2", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "2", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "2", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "3", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "3", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "3", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "3", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "3", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "3", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "3", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "3", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "3", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "4", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "4", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "4", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "4", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "4", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "4", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "4", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "4", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "4", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "5", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "5", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "5", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "5", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "5", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "5", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "5", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "5", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "5", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "6", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "6", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "6", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "6", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "6", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "6", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "6", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "6", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "6", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "7", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "7", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "7", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "7", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "7", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "7", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "7", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "7", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "7", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "8", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "8", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "8", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "8", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "8", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "8", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "8", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "8", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "8", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "9", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "9", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "9", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "9", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "9", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "9", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "9", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "9", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "9", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "10", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "10", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "10", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "10", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "10", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "10", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "10", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "10", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "10", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "11", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "11", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "11", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "11", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "11", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "11", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "11", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "11", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "11", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "12", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "12", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "12", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "12", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "12", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "12", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "12", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "12", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "12", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "13", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "13", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "13", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "13", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "13", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "13", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "13", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "13", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "13", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "14", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "14", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "14", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "14", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "14", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "14", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "14", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "14", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "14", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "15", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "15", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "15", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "15", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "15", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "15", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "15", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "15", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "15", + "north": "side", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "0", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "0", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "0", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "0", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "0", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "0", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "0", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "0", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "0", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "1", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "1", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "1", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "1", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "1", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "1", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "1", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "1", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "1", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "2", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "2", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "2", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "2", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "2", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "2", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "2", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "2", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "2", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "3", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "3", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "3", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "3", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "3", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "3", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "3", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "3", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "3", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "4", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "4", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "4", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "4", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "4", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "4", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "4", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "4", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "4", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "5", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "5", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "5", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "5", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "5", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "5", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "5", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "5", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "5", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "6", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "6", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "6", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "6", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "6", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "6", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "6", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "6", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "6", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "7", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "7", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "7", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "7", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "7", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "7", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "7", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "7", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "7", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "8", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "8", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "8", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "8", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "8", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "8", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "8", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "8", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "8", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "9", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "9", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "9", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "9", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "9", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "9", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "9", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "9", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "9", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "10", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "10", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "10", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "10", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "10", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "10", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "10", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "10", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "10", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "11", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "11", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "11", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "11", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "11", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "11", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "11", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "11", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "11", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "12", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "12", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "12", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "12", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "12", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "12", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "12", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "12", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "12", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "13", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "13", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "13", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "13", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "13", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "13", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "13", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "13", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "13", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "14", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "14", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "14", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "14", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "14", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "14", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "14", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "14", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "14", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "up", + "power": "15", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "up", + "power": "15", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "up", + "power": "15", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "side", + "power": "15", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "side", + "power": "15", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "side", + "power": "15", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "up", + "south": "none", + "power": "15", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "side", + "south": "none", + "power": "15", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "south": "none", + "power": "15", + "north": "none", + "east": "none" + }, + "Name": "minecraft:redstone_wire" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_wire", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Name": "minecraft:diamond_ore" + }, + "bedrock_state": { + "bedrock_identifier": "diamond_ore" + } + }, + { + "java_state": { + "Name": "minecraft:deepslate_diamond_ore" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_diamond_ore" + } + }, + { + "java_state": { + "Name": "minecraft:diamond_block" + }, + "bedrock_state": { + "bedrock_identifier": "diamond_block" + } + }, + { + "java_state": { + "Name": "minecraft:crafting_table" + }, + "bedrock_state": { + "bedrock_identifier": "crafting_table" + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:wheat" + }, + "bedrock_state": { + "bedrock_identifier": "wheat", + "state": { + "growth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:wheat" + }, + "bedrock_state": { + "bedrock_identifier": "wheat", + "state": { + "growth": 1 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:wheat" + }, + "bedrock_state": { + "bedrock_identifier": "wheat", + "state": { + "growth": 2 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:wheat" + }, + "bedrock_state": { + "bedrock_identifier": "wheat", + "state": { + "growth": 3 + } + } + }, + { + "java_state": { + "Properties": { + "age": "4" + }, + "Name": "minecraft:wheat" + }, + "bedrock_state": { + "bedrock_identifier": "wheat", + "state": { + "growth": 4 + } + } + }, + { + "java_state": { + "Properties": { + "age": "5" + }, + "Name": "minecraft:wheat" + }, + "bedrock_state": { + "bedrock_identifier": "wheat", + "state": { + "growth": 5 + } + } + }, + { + "java_state": { + "Properties": { + "age": "6" + }, + "Name": "minecraft:wheat" + }, + "bedrock_state": { + "bedrock_identifier": "wheat", + "state": { + "growth": 6 + } + } + }, + { + "java_state": { + "Properties": { + "age": "7" + }, + "Name": "minecraft:wheat" + }, + "bedrock_state": { + "bedrock_identifier": "wheat", + "state": { + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "moisture": "0" + }, + "Name": "minecraft:farmland" + }, + "bedrock_state": { + "bedrock_identifier": "farmland", + "state": { + "moisturized_amount": 0 + } + } + }, + { + "java_state": { + "Properties": { + "moisture": "1" + }, + "Name": "minecraft:farmland" + }, + "bedrock_state": { + "bedrock_identifier": "farmland", + "state": { + "moisturized_amount": 1 + } + } + }, + { + "java_state": { + "Properties": { + "moisture": "2" + }, + "Name": "minecraft:farmland" + }, + "bedrock_state": { + "bedrock_identifier": "farmland", + "state": { + "moisturized_amount": 2 + } + } + }, + { + "java_state": { + "Properties": { + "moisture": "3" + }, + "Name": "minecraft:farmland" + }, + "bedrock_state": { + "bedrock_identifier": "farmland", + "state": { + "moisturized_amount": 3 + } + } + }, + { + "java_state": { + "Properties": { + "moisture": "4" + }, + "Name": "minecraft:farmland" + }, + "bedrock_state": { + "bedrock_identifier": "farmland", + "state": { + "moisturized_amount": 4 + } + } + }, + { + "java_state": { + "Properties": { + "moisture": "5" + }, + "Name": "minecraft:farmland" + }, + "bedrock_state": { + "bedrock_identifier": "farmland", + "state": { + "moisturized_amount": 5 + } + } + }, + { + "java_state": { + "Properties": { + "moisture": "6" + }, + "Name": "minecraft:farmland" + }, + "bedrock_state": { + "bedrock_identifier": "farmland", + "state": { + "moisturized_amount": 6 + } + } + }, + { + "java_state": { + "Properties": { + "moisture": "7" + }, + "Name": "minecraft:farmland" + }, + "bedrock_state": { + "bedrock_identifier": "farmland", + "state": { + "moisturized_amount": 7 + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "north" + }, + "Name": "minecraft:furnace" + }, + "bedrock_state": { + "bedrock_identifier": "lit_furnace", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "north" + }, + "Name": "minecraft:furnace" + }, + "bedrock_state": { + "bedrock_identifier": "furnace", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "south" + }, + "Name": "minecraft:furnace" + }, + "bedrock_state": { + "bedrock_identifier": "lit_furnace", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "south" + }, + "Name": "minecraft:furnace" + }, + "bedrock_state": { + "bedrock_identifier": "furnace", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "west" + }, + "Name": "minecraft:furnace" + }, + "bedrock_state": { + "bedrock_identifier": "lit_furnace", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "west" + }, + "Name": "minecraft:furnace" + }, + "bedrock_state": { + "bedrock_identifier": "furnace", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "east" + }, + "Name": "minecraft:furnace" + }, + "bedrock_state": { + "bedrock_identifier": "lit_furnace", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "east" + }, + "Name": "minecraft:furnace" + }, + "bedrock_state": { + "bedrock_identifier": "furnace", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15" + }, + "Name": "minecraft:oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15" + }, + "Name": "minecraft:spruce_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15" + }, + "Name": "minecraft:birch_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15" + }, + "Name": "minecraft:acacia_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15" + }, + "Name": "minecraft:cherry_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15" + }, + "Name": "minecraft:jungle_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15" + }, + "Name": "minecraft:dark_oak_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15" + }, + "Name": "minecraft:mangrove_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15" + }, + "Name": "minecraft:bamboo_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:ladder" + }, + "bedrock_state": { + "bedrock_identifier": "ladder", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:ladder" + }, + "bedrock_state": { + "bedrock_identifier": "ladder", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:ladder" + }, + "bedrock_state": { + "bedrock_identifier": "ladder", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:ladder" + }, + "bedrock_state": { + "bedrock_identifier": "ladder", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:ladder" + }, + "bedrock_state": { + "bedrock_identifier": "ladder", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:ladder" + }, + "bedrock_state": { + "bedrock_identifier": "ladder", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:ladder" + }, + "bedrock_state": { + "bedrock_identifier": "ladder", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:ladder" + }, + "bedrock_state": { + "bedrock_identifier": "ladder", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "north_south" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "north_south" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "east_west" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "east_west" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_east" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_east" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_west" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_west" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_north" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_north" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_south" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_south" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "south_east" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "south_east" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "south_west" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "south_west" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "north_west" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "north_west" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "north_east" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "north_east" + }, + "Name": "minecraft:rail" + }, + "bedrock_state": { + "bedrock_identifier": "rail", + "state": { + "rail_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:spruce_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:spruce_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:spruce_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:spruce_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:spruce_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:spruce_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:spruce_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:spruce_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:birch_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:birch_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:birch_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:birch_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:birch_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:birch_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:birch_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:birch_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:acacia_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:acacia_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:acacia_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:acacia_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:acacia_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:acacia_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:acacia_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:acacia_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:cherry_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:cherry_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:cherry_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:cherry_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:cherry_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:cherry_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:cherry_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:cherry_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:jungle_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:jungle_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:jungle_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:jungle_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:jungle_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:jungle_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:jungle_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:jungle_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:dark_oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:dark_oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:dark_oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:dark_oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:dark_oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:dark_oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:dark_oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:dark_oak_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "darkoak_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:mangrove_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:mangrove_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:mangrove_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:mangrove_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:mangrove_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:mangrove_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:mangrove_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:mangrove_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:bamboo_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:bamboo_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:bamboo_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:bamboo_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:bamboo_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:bamboo_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:bamboo_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:bamboo_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:spruce_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:birch_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:acacia_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:cherry_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:jungle_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:dark_oak_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:crimson_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:warped_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:mangrove_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "true" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15", + "attached": "false" + }, + "Name": "minecraft:bamboo_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "oak_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:spruce_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:spruce_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:spruce_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:spruce_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:spruce_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:spruce_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:spruce_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:spruce_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:birch_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:birch_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:birch_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:birch_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:birch_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:birch_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:birch_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:birch_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "birch_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:acacia_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:acacia_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:acacia_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:acacia_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:acacia_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:acacia_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:acacia_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:acacia_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:cherry_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:cherry_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:cherry_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:cherry_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:cherry_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:cherry_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:cherry_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:cherry_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:jungle_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:jungle_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:jungle_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:jungle_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:jungle_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:jungle_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:jungle_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:jungle_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:dark_oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:dark_oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:dark_oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:dark_oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:dark_oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:dark_oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:dark_oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:dark_oak_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:mangrove_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:mangrove_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:mangrove_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:mangrove_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:mangrove_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:mangrove_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:mangrove_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:mangrove_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:crimson_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:crimson_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:crimson_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:crimson_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:crimson_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:crimson_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:crimson_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:crimson_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:warped_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:warped_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:warped_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:warped_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:warped_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:warped_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:warped_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:warped_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:bamboo_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:bamboo_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:bamboo_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:bamboo_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:bamboo_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:bamboo_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:bamboo_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:bamboo_wall_hanging_sign" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_hanging_sign", + "state": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": true, + "lever_direction": "up_north_south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": false, + "lever_direction": "up_north_south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": false, + "lever_direction": "up_north_south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": true, + "lever_direction": "up_north_south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": true, + "lever_direction": "up_east_west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": false, + "lever_direction": "up_east_west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": false, + "lever_direction": "up_east_west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": true, + "lever_direction": "up_east_west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": true, + "lever_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": false, + "lever_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": true, + "lever_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": false, + "lever_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": true, + "lever_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": false, + "lever_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": true, + "lever_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": false, + "lever_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": true, + "lever_direction": "down_north_south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": false, + "lever_direction": "down_north_south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": false, + "lever_direction": "down_north_south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": true, + "lever_direction": "down_north_south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": true, + "lever_direction": "down_east_west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": false, + "lever_direction": "down_east_west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": false, + "lever_direction": "down_east_west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:lever" + }, + "bedrock_state": { + "bedrock_identifier": "lever", + "state": { + "open_bit": true, + "lever_direction": "down_east_west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true" + }, + "Name": "minecraft:stone_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "stone_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false" + }, + "Name": "minecraft:stone_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "stone_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:iron_door" + }, + "bedrock_state": { + "bedrock_identifier": "iron_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true" + }, + "Name": "minecraft:oak_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false" + }, + "Name": "minecraft:oak_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true" + }, + "Name": "minecraft:spruce_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false" + }, + "Name": "minecraft:spruce_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true" + }, + "Name": "minecraft:birch_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false" + }, + "Name": "minecraft:birch_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true" + }, + "Name": "minecraft:jungle_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false" + }, + "Name": "minecraft:jungle_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true" + }, + "Name": "minecraft:acacia_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false" + }, + "Name": "minecraft:acacia_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true" + }, + "Name": "minecraft:cherry_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false" + }, + "Name": "minecraft:cherry_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true" + }, + "Name": "minecraft:dark_oak_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false" + }, + "Name": "minecraft:dark_oak_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true" + }, + "Name": "minecraft:mangrove_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false" + }, + "Name": "minecraft:mangrove_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true" + }, + "Name": "minecraft:bamboo_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false" + }, + "Name": "minecraft:bamboo_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:redstone_ore" + }, + "bedrock_state": { + "bedrock_identifier": "lit_redstone_ore" + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:redstone_ore" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_ore" + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:deepslate_redstone_ore" + }, + "bedrock_state": { + "bedrock_identifier": "lit_deepslate_redstone_ore" + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:deepslate_redstone_ore" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_redstone_ore" + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:redstone_torch" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_torch", + "state": { + "torch_facing_direction": "top" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:redstone_torch" + }, + "bedrock_state": { + "bedrock_identifier": "unlit_redstone_torch", + "state": { + "torch_facing_direction": "top" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "north" + }, + "Name": "minecraft:redstone_wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_torch", + "state": { + "torch_facing_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "north" + }, + "Name": "minecraft:redstone_wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "unlit_redstone_torch", + "state": { + "torch_facing_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "south" + }, + "Name": "minecraft:redstone_wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_torch", + "state": { + "torch_facing_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "south" + }, + "Name": "minecraft:redstone_wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "unlit_redstone_torch", + "state": { + "torch_facing_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "west" + }, + "Name": "minecraft:redstone_wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_torch", + "state": { + "torch_facing_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "west" + }, + "Name": "minecraft:redstone_wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "unlit_redstone_torch", + "state": { + "torch_facing_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "east" + }, + "Name": "minecraft:redstone_wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_torch", + "state": { + "torch_facing_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "east" + }, + "Name": "minecraft:redstone_wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "unlit_redstone_torch", + "state": { + "torch_facing_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:stone_button" + }, + "bedrock_state": { + "bedrock_identifier": "stone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "layers": "1" + }, + "Name": "minecraft:snow" + }, + "bedrock_state": { + "bedrock_identifier": "snow_layer", + "state": { + "covered_bit": false, + "height": 0 + } + } + }, + { + "java_state": { + "Properties": { + "layers": "2" + }, + "Name": "minecraft:snow" + }, + "bedrock_state": { + "bedrock_identifier": "snow_layer", + "state": { + "covered_bit": false, + "height": 1 + } + } + }, + { + "java_state": { + "Properties": { + "layers": "3" + }, + "Name": "minecraft:snow" + }, + "bedrock_state": { + "bedrock_identifier": "snow_layer", + "state": { + "covered_bit": false, + "height": 2 + } + } + }, + { + "java_state": { + "Properties": { + "layers": "4" + }, + "Name": "minecraft:snow" + }, + "bedrock_state": { + "bedrock_identifier": "snow_layer", + "state": { + "covered_bit": false, + "height": 3 + } + } + }, + { + "java_state": { + "Properties": { + "layers": "5" + }, + "Name": "minecraft:snow" + }, + "bedrock_state": { + "bedrock_identifier": "snow_layer", + "state": { + "covered_bit": false, + "height": 4 + } + } + }, + { + "java_state": { + "Properties": { + "layers": "6" + }, + "Name": "minecraft:snow" + }, + "bedrock_state": { + "bedrock_identifier": "snow_layer", + "state": { + "covered_bit": false, + "height": 5 + } + } + }, + { + "java_state": { + "Properties": { + "layers": "7" + }, + "Name": "minecraft:snow" + }, + "bedrock_state": { + "bedrock_identifier": "snow_layer", + "state": { + "covered_bit": false, + "height": 6 + } + } + }, + { + "java_state": { + "Properties": { + "layers": "8" + }, + "Name": "minecraft:snow" + }, + "bedrock_state": { + "bedrock_identifier": "snow_layer", + "state": { + "covered_bit": false, + "height": 7 + } + } + }, + { + "java_state": { + "Name": "minecraft:ice" + }, + "bedrock_state": { + "bedrock_identifier": "ice" + } + }, + { + "java_state": { + "Name": "minecraft:snow_block" + }, + "bedrock_state": { + "bedrock_identifier": "snow" + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "age": "4" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "age": "5" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "age": "6" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "age": "7" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "age": "8" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "age": "9" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "age": "10" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "age": "11" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "age": "12" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "age": "13" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "age": "14" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "age": "15" + }, + "Name": "minecraft:cactus" + }, + "bedrock_state": { + "bedrock_identifier": "cactus", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Name": "minecraft:clay" + }, + "bedrock_state": { + "bedrock_identifier": "clay" + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "age": "4" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "age": "5" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "age": "6" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "age": "7" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "age": "8" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "age": "9" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "age": "10" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "age": "11" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "age": "12" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "age": "13" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "age": "14" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "age": "15" + }, + "Name": "minecraft:sugar_cane" + }, + "bedrock_state": { + "bedrock_identifier": "reeds", + "state": { + "age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "has_record": "true" + }, + "Name": "minecraft:jukebox" + }, + "bedrock_state": { + "bedrock_identifier": "jukebox" + } + }, + { + "java_state": { + "Properties": { + "has_record": "false" + }, + "Name": "minecraft:jukebox" + }, + "bedrock_state": { + "bedrock_identifier": "jukebox" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "oak_fence" + } + }, + { + "java_state": { + "Name": "minecraft:netherrack" + }, + "bedrock_state": { + "bedrock_identifier": "netherrack" + } + }, + { + "java_state": { + "Name": "minecraft:soul_sand" + }, + "bedrock_state": { + "bedrock_identifier": "soul_sand" + } + }, + { + "java_state": { + "Name": "minecraft:soul_soil" + }, + "bedrock_state": { + "bedrock_identifier": "soul_soil" + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:basalt" + }, + "bedrock_state": { + "bedrock_identifier": "basalt", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:basalt" + }, + "bedrock_state": { + "bedrock_identifier": "basalt", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:basalt" + }, + "bedrock_state": { + "bedrock_identifier": "basalt", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:polished_basalt" + }, + "bedrock_state": { + "bedrock_identifier": "polished_basalt", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:polished_basalt" + }, + "bedrock_state": { + "bedrock_identifier": "polished_basalt", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:polished_basalt" + }, + "bedrock_state": { + "bedrock_identifier": "polished_basalt", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Name": "minecraft:soul_torch" + }, + "bedrock_state": { + "bedrock_identifier": "soul_torch", + "state": { + "torch_facing_direction": "top" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:soul_wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "soul_torch", + "state": { + "torch_facing_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:soul_wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "soul_torch", + "state": { + "torch_facing_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:soul_wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "soul_torch", + "state": { + "torch_facing_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:soul_wall_torch" + }, + "bedrock_state": { + "bedrock_identifier": "soul_torch", + "state": { + "torch_facing_direction": "west" + } + } + }, + { + "java_state": { + "Name": "minecraft:glowstone" + }, + "bedrock_state": { + "bedrock_identifier": "glowstone" + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:nether_portal" + }, + "bedrock_state": { + "bedrock_identifier": "portal", + "state": { + "portal_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:nether_portal" + }, + "bedrock_state": { + "bedrock_identifier": "portal", + "state": { + "portal_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:carved_pumpkin" + }, + "bedrock_state": { + "bedrock_identifier": "carved_pumpkin", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:carved_pumpkin" + }, + "bedrock_state": { + "bedrock_identifier": "carved_pumpkin", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:carved_pumpkin" + }, + "bedrock_state": { + "bedrock_identifier": "carved_pumpkin", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:carved_pumpkin" + }, + "bedrock_state": { + "bedrock_identifier": "carved_pumpkin", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:jack_o_lantern" + }, + "bedrock_state": { + "bedrock_identifier": "lit_pumpkin", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:jack_o_lantern" + }, + "bedrock_state": { + "bedrock_identifier": "lit_pumpkin", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:jack_o_lantern" + }, + "bedrock_state": { + "bedrock_identifier": "lit_pumpkin", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:jack_o_lantern" + }, + "bedrock_state": { + "bedrock_identifier": "lit_pumpkin", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "bites": "0" + }, + "Name": "minecraft:cake" + }, + "bedrock_state": { + "bedrock_identifier": "cake", + "state": { + "bite_counter": 0 + } + } + }, + { + "java_state": { + "Properties": { + "bites": "1" + }, + "Name": "minecraft:cake" + }, + "bedrock_state": { + "bedrock_identifier": "cake", + "state": { + "bite_counter": 1 + } + } + }, + { + "java_state": { + "Properties": { + "bites": "2" + }, + "Name": "minecraft:cake" + }, + "bedrock_state": { + "bedrock_identifier": "cake", + "state": { + "bite_counter": 2 + } + } + }, + { + "java_state": { + "Properties": { + "bites": "3" + }, + "Name": "minecraft:cake" + }, + "bedrock_state": { + "bedrock_identifier": "cake", + "state": { + "bite_counter": 3 + } + } + }, + { + "java_state": { + "Properties": { + "bites": "4" + }, + "Name": "minecraft:cake" + }, + "bedrock_state": { + "bedrock_identifier": "cake", + "state": { + "bite_counter": 4 + } + } + }, + { + "java_state": { + "Properties": { + "bites": "5" + }, + "Name": "minecraft:cake" + }, + "bedrock_state": { + "bedrock_identifier": "cake", + "state": { + "bite_counter": 5 + } + } + }, + { + "java_state": { + "Properties": { + "bites": "6" + }, + "Name": "minecraft:cake" + }, + "bedrock_state": { + "bedrock_identifier": "cake", + "state": { + "bite_counter": 6 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "north", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "north", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "north", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "north", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "south", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "south", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "south", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "south", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "west", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "west", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "west", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "west", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "east", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "east", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "east", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "east", + "delay": "1" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "north", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "north", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "north", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "north", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "south", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "south", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "south", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "south", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "west", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "west", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "west", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "west", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "east", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "east", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "east", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "east", + "delay": "2" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "north", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "north", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "north", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "north", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "south", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "south", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "south", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "south", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "west", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "west", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "west", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "west", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "east", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "east", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "east", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "east", + "delay": "3" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "north", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "north", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "north", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "north", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "south", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "south", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "south", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "south", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "west", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "west", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "west", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "west", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "true", + "facing": "east", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "true", + "facing": "east", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "locked": "false", + "facing": "east", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "powered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "locked": "false", + "facing": "east", + "delay": "4" + }, + "Name": "minecraft:repeater" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_repeater", + "state": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Name": "minecraft:white_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:orange_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:magenta_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:light_blue_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:yellow_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:lime_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:pink_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:gray_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:light_gray_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:cyan_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:purple_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:blue_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:brown_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:green_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:red_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass" + } + }, + { + "java_state": { + "Name": "minecraft:black_stained_glass" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "birch_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Name": "minecraft:stone_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "stonebrick", + "state": { + "stone_brick_type": "default" + } + } + }, + { + "java_state": { + "Name": "minecraft:mossy_stone_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "stonebrick", + "state": { + "stone_brick_type": "mossy" + } + } + }, + { + "java_state": { + "Name": "minecraft:cracked_stone_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "stonebrick", + "state": { + "stone_brick_type": "cracked" + } + } + }, + { + "java_state": { + "Name": "minecraft:chiseled_stone_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "stonebrick", + "state": { + "stone_brick_type": "chiseled" + } + } + }, + { + "java_state": { + "Name": "minecraft:packed_mud" + }, + "bedrock_state": { + "bedrock_identifier": "packed_mud" + } + }, + { + "java_state": { + "Name": "minecraft:mud_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "mud_bricks" + } + }, + { + "java_state": { + "Name": "minecraft:infested_stone" + }, + "bedrock_state": { + "bedrock_identifier": "monster_egg", + "state": { + "monster_egg_stone_type": "stone" + } + } + }, + { + "java_state": { + "Name": "minecraft:infested_cobblestone" + }, + "bedrock_state": { + "bedrock_identifier": "monster_egg", + "state": { + "monster_egg_stone_type": "cobblestone" + } + } + }, + { + "java_state": { + "Name": "minecraft:infested_stone_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "monster_egg", + "state": { + "monster_egg_stone_type": "stone_brick" + } + } + }, + { + "java_state": { + "Name": "minecraft:infested_mossy_stone_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "monster_egg", + "state": { + "monster_egg_stone_type": "mossy_stone_brick" + } + } + }, + { + "java_state": { + "Name": "minecraft:infested_cracked_stone_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "monster_egg", + "state": { + "monster_egg_stone_type": "cracked_stone_brick" + } + } + }, + { + "java_state": { + "Name": "minecraft:infested_chiseled_stone_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "monster_egg", + "state": { + "monster_egg_stone_type": "chiseled_stone_brick" + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:brown_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "brown_mushroom_block", + "state": { + "huge_mushroom_bits": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:red_mushroom_block" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:mushroom_stem" + }, + "bedrock_state": { + "bedrock_identifier": "red_mushroom_block", + "state": { + "huge_mushroom_bits": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:iron_bars" + }, + "bedrock_state": { + "bedrock_identifier": "iron_bars" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "axis": "x" + }, + "Name": "minecraft:chain" + }, + "bedrock_state": { + "bedrock_identifier": "chain", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "axis": "x" + }, + "Name": "minecraft:chain" + }, + "bedrock_state": { + "bedrock_identifier": "chain", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "axis": "y" + }, + "Name": "minecraft:chain" + }, + "bedrock_state": { + "bedrock_identifier": "chain", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "axis": "y" + }, + "Name": "minecraft:chain" + }, + "bedrock_state": { + "bedrock_identifier": "chain", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "axis": "z" + }, + "Name": "minecraft:chain" + }, + "bedrock_state": { + "bedrock_identifier": "chain", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "axis": "z" + }, + "Name": "minecraft:chain" + }, + "bedrock_state": { + "bedrock_identifier": "chain", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "glass_pane" + } + }, + { + "java_state": { + "Name": "minecraft:pumpkin" + }, + "bedrock_state": { + "bedrock_identifier": "pumpkin", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Name": "minecraft:melon" + }, + "bedrock_state": { + "bedrock_identifier": "melon_block" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:attached_pumpkin_stem" + }, + "bedrock_state": { + "bedrock_identifier": "pumpkin_stem", + "state": { + "facing_direction": 2, + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:attached_pumpkin_stem" + }, + "bedrock_state": { + "bedrock_identifier": "pumpkin_stem", + "state": { + "facing_direction": 3, + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:attached_pumpkin_stem" + }, + "bedrock_state": { + "bedrock_identifier": "pumpkin_stem", + "state": { + "facing_direction": 4, + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:attached_pumpkin_stem" + }, + "bedrock_state": { + "bedrock_identifier": "pumpkin_stem", + "state": { + "facing_direction": 5, + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:attached_melon_stem" + }, + "bedrock_state": { + "bedrock_identifier": "melon_stem", + "state": { + "facing_direction": 2, + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:attached_melon_stem" + }, + "bedrock_state": { + "bedrock_identifier": "melon_stem", + "state": { + "facing_direction": 3, + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:attached_melon_stem" + }, + "bedrock_state": { + "bedrock_identifier": "melon_stem", + "state": { + "facing_direction": 4, + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:attached_melon_stem" + }, + "bedrock_state": { + "bedrock_identifier": "melon_stem", + "state": { + "facing_direction": 5, + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:pumpkin_stem" + }, + "bedrock_state": { + "bedrock_identifier": "pumpkin_stem", + "state": { + "facing_direction": 0, + "growth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:pumpkin_stem" + }, + "bedrock_state": { + "bedrock_identifier": "pumpkin_stem", + "state": { + "facing_direction": 0, + "growth": 1 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:pumpkin_stem" + }, + "bedrock_state": { + "bedrock_identifier": "pumpkin_stem", + "state": { + "facing_direction": 0, + "growth": 2 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:pumpkin_stem" + }, + "bedrock_state": { + "bedrock_identifier": "pumpkin_stem", + "state": { + "facing_direction": 0, + "growth": 3 + } + } + }, + { + "java_state": { + "Properties": { + "age": "4" + }, + "Name": "minecraft:pumpkin_stem" + }, + "bedrock_state": { + "bedrock_identifier": "pumpkin_stem", + "state": { + "facing_direction": 0, + "growth": 4 + } + } + }, + { + "java_state": { + "Properties": { + "age": "5" + }, + "Name": "minecraft:pumpkin_stem" + }, + "bedrock_state": { + "bedrock_identifier": "pumpkin_stem", + "state": { + "facing_direction": 0, + "growth": 5 + } + } + }, + { + "java_state": { + "Properties": { + "age": "6" + }, + "Name": "minecraft:pumpkin_stem" + }, + "bedrock_state": { + "bedrock_identifier": "pumpkin_stem", + "state": { + "facing_direction": 0, + "growth": 6 + } + } + }, + { + "java_state": { + "Properties": { + "age": "7" + }, + "Name": "minecraft:pumpkin_stem" + }, + "bedrock_state": { + "bedrock_identifier": "pumpkin_stem", + "state": { + "facing_direction": 0, + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:melon_stem" + }, + "bedrock_state": { + "bedrock_identifier": "melon_stem", + "state": { + "facing_direction": 0, + "growth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:melon_stem" + }, + "bedrock_state": { + "bedrock_identifier": "melon_stem", + "state": { + "facing_direction": 0, + "growth": 1 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:melon_stem" + }, + "bedrock_state": { + "bedrock_identifier": "melon_stem", + "state": { + "facing_direction": 0, + "growth": 2 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:melon_stem" + }, + "bedrock_state": { + "bedrock_identifier": "melon_stem", + "state": { + "facing_direction": 0, + "growth": 3 + } + } + }, + { + "java_state": { + "Properties": { + "age": "4" + }, + "Name": "minecraft:melon_stem" + }, + "bedrock_state": { + "bedrock_identifier": "melon_stem", + "state": { + "facing_direction": 0, + "growth": 4 + } + } + }, + { + "java_state": { + "Properties": { + "age": "5" + }, + "Name": "minecraft:melon_stem" + }, + "bedrock_state": { + "bedrock_identifier": "melon_stem", + "state": { + "facing_direction": 0, + "growth": 5 + } + } + }, + { + "java_state": { + "Properties": { + "age": "6" + }, + "Name": "minecraft:melon_stem" + }, + "bedrock_state": { + "bedrock_identifier": "melon_stem", + "state": { + "facing_direction": 0, + "growth": 6 + } + } + }, + { + "java_state": { + "Properties": { + "age": "7" + }, + "Name": "minecraft:melon_stem" + }, + "bedrock_state": { + "bedrock_identifier": "melon_stem", + "state": { + "facing_direction": 0, + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:vine" + }, + "bedrock_state": { + "bedrock_identifier": "vine", + "state": { + "vine_direction_bits": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 63 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 55 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 63 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 55 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 61 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 53 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 61 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 53 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 59 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 51 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 59 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 51 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 57 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 49 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 57 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 49 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 47 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 39 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 47 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 39 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 45 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 37 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 45 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 37 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 43 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 35 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 43 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 35 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 41 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 33 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 41 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 33 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 31 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 23 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 31 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 23 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 29 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 21 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 29 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 21 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 27 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 19 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 27 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 19 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 25 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 17 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 25 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 17 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 62 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 54 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 62 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 54 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 60 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 52 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 60 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 52 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 58 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 50 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 58 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 50 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 56 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 48 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 56 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 48 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 46 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 38 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 46 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 38 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 44 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 36 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 44 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 36 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 42 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 34 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 42 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 34 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 40 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 32 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 40 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 32 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 30 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 22 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 30 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 22 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 28 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 20 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 28 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 20 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 26 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 18 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 26 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 18 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 24 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 16 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 24 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 16 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:glow_lichen" + }, + "bedrock_state": { + "bedrock_identifier": "glow_lichen", + "state": { + "multi_face_direction_bits": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mud_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "snowy": "true" + }, + "Name": "minecraft:mycelium" + }, + "bedrock_state": { + "bedrock_identifier": "mycelium" + } + }, + { + "java_state": { + "Properties": { + "snowy": "false" + }, + "Name": "minecraft:mycelium" + }, + "bedrock_state": { + "bedrock_identifier": "mycelium" + } + }, + { + "java_state": { + "Name": "minecraft:lily_pad" + }, + "bedrock_state": { + "bedrock_identifier": "waterlily" + } + }, + { + "java_state": { + "Name": "minecraft:nether_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:nether_brick_fence" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_fence" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:nether_wart" + }, + "bedrock_state": { + "bedrock_identifier": "nether_wart", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:nether_wart" + }, + "bedrock_state": { + "bedrock_identifier": "nether_wart", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:nether_wart" + }, + "bedrock_state": { + "bedrock_identifier": "nether_wart", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:nether_wart" + }, + "bedrock_state": { + "bedrock_identifier": "nether_wart", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Name": "minecraft:enchanting_table" + }, + "bedrock_state": { + "bedrock_identifier": "enchanting_table" + } + }, + { + "java_state": { + "Properties": { + "has_bottle_2": "true", + "has_bottle_1": "true", + "has_bottle_0": "true" + }, + "Name": "minecraft:brewing_stand" + }, + "bedrock_state": { + "bedrock_identifier": "brewing_stand", + "state": { + "brewing_stand_slot_c_bit": true, + "brewing_stand_slot_a_bit": true, + "brewing_stand_slot_b_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "has_bottle_2": "false", + "has_bottle_1": "true", + "has_bottle_0": "true" + }, + "Name": "minecraft:brewing_stand" + }, + "bedrock_state": { + "bedrock_identifier": "brewing_stand", + "state": { + "brewing_stand_slot_c_bit": false, + "brewing_stand_slot_a_bit": true, + "brewing_stand_slot_b_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "has_bottle_2": "true", + "has_bottle_1": "false", + "has_bottle_0": "true" + }, + "Name": "minecraft:brewing_stand" + }, + "bedrock_state": { + "bedrock_identifier": "brewing_stand", + "state": { + "brewing_stand_slot_c_bit": true, + "brewing_stand_slot_a_bit": true, + "brewing_stand_slot_b_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "has_bottle_2": "false", + "has_bottle_1": "false", + "has_bottle_0": "true" + }, + "Name": "minecraft:brewing_stand" + }, + "bedrock_state": { + "bedrock_identifier": "brewing_stand", + "state": { + "brewing_stand_slot_c_bit": false, + "brewing_stand_slot_a_bit": true, + "brewing_stand_slot_b_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "has_bottle_2": "true", + "has_bottle_1": "true", + "has_bottle_0": "false" + }, + "Name": "minecraft:brewing_stand" + }, + "bedrock_state": { + "bedrock_identifier": "brewing_stand", + "state": { + "brewing_stand_slot_c_bit": true, + "brewing_stand_slot_a_bit": false, + "brewing_stand_slot_b_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "has_bottle_2": "false", + "has_bottle_1": "true", + "has_bottle_0": "false" + }, + "Name": "minecraft:brewing_stand" + }, + "bedrock_state": { + "bedrock_identifier": "brewing_stand", + "state": { + "brewing_stand_slot_c_bit": false, + "brewing_stand_slot_a_bit": false, + "brewing_stand_slot_b_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "has_bottle_2": "true", + "has_bottle_1": "false", + "has_bottle_0": "false" + }, + "Name": "minecraft:brewing_stand" + }, + "bedrock_state": { + "bedrock_identifier": "brewing_stand", + "state": { + "brewing_stand_slot_c_bit": true, + "brewing_stand_slot_a_bit": false, + "brewing_stand_slot_b_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "has_bottle_2": "false", + "has_bottle_1": "false", + "has_bottle_0": "false" + }, + "Name": "minecraft:brewing_stand" + }, + "bedrock_state": { + "bedrock_identifier": "brewing_stand", + "state": { + "brewing_stand_slot_c_bit": false, + "brewing_stand_slot_a_bit": false, + "brewing_stand_slot_b_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:cauldron" + }, + "bedrock_state": { + "bedrock_identifier": "cauldron", + "state": { + "fill_level": 0, + "cauldron_liquid": "water" + } + } + }, + { + "java_state": { + "Properties": { + "level": "1" + }, + "Name": "minecraft:water_cauldron" + }, + "bedrock_state": { + "bedrock_identifier": "cauldron", + "state": { + "fill_level": 3, + "cauldron_liquid": "water" + } + } + }, + { + "java_state": { + "Properties": { + "level": "2" + }, + "Name": "minecraft:water_cauldron" + }, + "bedrock_state": { + "bedrock_identifier": "cauldron", + "state": { + "fill_level": 4, + "cauldron_liquid": "water" + } + } + }, + { + "java_state": { + "Properties": { + "level": "3" + }, + "Name": "minecraft:water_cauldron" + }, + "bedrock_state": { + "bedrock_identifier": "cauldron", + "state": { + "fill_level": 6, + "cauldron_liquid": "water" + } + } + }, + { + "java_state": { + "Name": "minecraft:lava_cauldron" + }, + "bedrock_state": { + "bedrock_identifier": "cauldron", + "state": { + "fill_level": 6, + "cauldron_liquid": "lava" + } + } + }, + { + "java_state": { + "Properties": { + "level": "1" + }, + "Name": "minecraft:powder_snow_cauldron" + }, + "bedrock_state": { + "bedrock_identifier": "cauldron", + "state": { + "fill_level": 3, + "cauldron_liquid": "powder_snow" + } + } + }, + { + "java_state": { + "Properties": { + "level": "2" + }, + "Name": "minecraft:powder_snow_cauldron" + }, + "bedrock_state": { + "bedrock_identifier": "cauldron", + "state": { + "fill_level": 4, + "cauldron_liquid": "powder_snow" + } + } + }, + { + "java_state": { + "Properties": { + "level": "3" + }, + "Name": "minecraft:powder_snow_cauldron" + }, + "bedrock_state": { + "bedrock_identifier": "cauldron", + "state": { + "fill_level": 6, + "cauldron_liquid": "powder_snow" + } + } + }, + { + "java_state": { + "Name": "minecraft:end_portal" + }, + "bedrock_state": { + "bedrock_identifier": "end_portal" + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "eye": "true" + }, + "Name": "minecraft:end_portal_frame" + }, + "bedrock_state": { + "bedrock_identifier": "end_portal_frame", + "state": { + "end_portal_eye_bit": true, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "eye": "true" + }, + "Name": "minecraft:end_portal_frame" + }, + "bedrock_state": { + "bedrock_identifier": "end_portal_frame", + "state": { + "end_portal_eye_bit": true, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "eye": "true" + }, + "Name": "minecraft:end_portal_frame" + }, + "bedrock_state": { + "bedrock_identifier": "end_portal_frame", + "state": { + "end_portal_eye_bit": true, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "eye": "true" + }, + "Name": "minecraft:end_portal_frame" + }, + "bedrock_state": { + "bedrock_identifier": "end_portal_frame", + "state": { + "end_portal_eye_bit": true, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "eye": "false" + }, + "Name": "minecraft:end_portal_frame" + }, + "bedrock_state": { + "bedrock_identifier": "end_portal_frame", + "state": { + "end_portal_eye_bit": false, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "eye": "false" + }, + "Name": "minecraft:end_portal_frame" + }, + "bedrock_state": { + "bedrock_identifier": "end_portal_frame", + "state": { + "end_portal_eye_bit": false, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "eye": "false" + }, + "Name": "minecraft:end_portal_frame" + }, + "bedrock_state": { + "bedrock_identifier": "end_portal_frame", + "state": { + "end_portal_eye_bit": false, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "eye": "false" + }, + "Name": "minecraft:end_portal_frame" + }, + "bedrock_state": { + "bedrock_identifier": "end_portal_frame", + "state": { + "end_portal_eye_bit": false, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Name": "minecraft:end_stone" + }, + "bedrock_state": { + "bedrock_identifier": "end_stone" + } + }, + { + "java_state": { + "Name": "minecraft:dragon_egg" + }, + "bedrock_state": { + "bedrock_identifier": "dragon_egg" + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:redstone_lamp" + }, + "bedrock_state": { + "bedrock_identifier": "lit_redstone_lamp" + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:redstone_lamp" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_lamp" + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "age": "0" + }, + "Name": "minecraft:cocoa" + }, + "bedrock_state": { + "bedrock_identifier": "cocoa", + "state": { + "age": 0, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "age": "0" + }, + "Name": "minecraft:cocoa" + }, + "bedrock_state": { + "bedrock_identifier": "cocoa", + "state": { + "age": 0, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "age": "0" + }, + "Name": "minecraft:cocoa" + }, + "bedrock_state": { + "bedrock_identifier": "cocoa", + "state": { + "age": 0, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "age": "0" + }, + "Name": "minecraft:cocoa" + }, + "bedrock_state": { + "bedrock_identifier": "cocoa", + "state": { + "age": 0, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "age": "1" + }, + "Name": "minecraft:cocoa" + }, + "bedrock_state": { + "bedrock_identifier": "cocoa", + "state": { + "age": 1, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "age": "1" + }, + "Name": "minecraft:cocoa" + }, + "bedrock_state": { + "bedrock_identifier": "cocoa", + "state": { + "age": 1, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "age": "1" + }, + "Name": "minecraft:cocoa" + }, + "bedrock_state": { + "bedrock_identifier": "cocoa", + "state": { + "age": 1, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "age": "1" + }, + "Name": "minecraft:cocoa" + }, + "bedrock_state": { + "bedrock_identifier": "cocoa", + "state": { + "age": 1, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "age": "2" + }, + "Name": "minecraft:cocoa" + }, + "bedrock_state": { + "bedrock_identifier": "cocoa", + "state": { + "age": 2, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "age": "2" + }, + "Name": "minecraft:cocoa" + }, + "bedrock_state": { + "bedrock_identifier": "cocoa", + "state": { + "age": 2, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "age": "2" + }, + "Name": "minecraft:cocoa" + }, + "bedrock_state": { + "bedrock_identifier": "cocoa", + "state": { + "age": 2, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "age": "2" + }, + "Name": "minecraft:cocoa" + }, + "bedrock_state": { + "bedrock_identifier": "cocoa", + "state": { + "age": 2, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Name": "minecraft:emerald_ore" + }, + "bedrock_state": { + "bedrock_identifier": "emerald_ore" + } + }, + { + "java_state": { + "Name": "minecraft:deepslate_emerald_ore" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_emerald_ore" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:ender_chest" + }, + "bedrock_state": { + "bedrock_identifier": "ender_chest", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:ender_chest" + }, + "bedrock_state": { + "bedrock_identifier": "ender_chest", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:ender_chest" + }, + "bedrock_state": { + "bedrock_identifier": "ender_chest", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:ender_chest" + }, + "bedrock_state": { + "bedrock_identifier": "ender_chest", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:ender_chest" + }, + "bedrock_state": { + "bedrock_identifier": "ender_chest", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:ender_chest" + }, + "bedrock_state": { + "bedrock_identifier": "ender_chest", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:ender_chest" + }, + "bedrock_state": { + "bedrock_identifier": "ender_chest", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:ender_chest" + }, + "bedrock_state": { + "bedrock_identifier": "ender_chest", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "attached": "true" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": true, + "attached_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "attached": "true" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": false, + "attached_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "attached": "true" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": true, + "attached_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "attached": "true" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": false, + "attached_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "attached": "true" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": true, + "attached_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "attached": "true" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": false, + "attached_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "attached": "true" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": true, + "attached_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "attached": "true" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": false, + "attached_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "attached": "false" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": true, + "attached_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "attached": "false" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": false, + "attached_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "attached": "false" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": true, + "attached_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "attached": "false" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": false, + "attached_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "attached": "false" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": true, + "attached_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "attached": "false" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": false, + "attached_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "attached": "false" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": true, + "attached_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "attached": "false" + }, + "Name": "minecraft:tripwire_hook" + }, + "bedrock_state": { + "bedrock_identifier": "tripwire_hook", + "state": { + "powered_bit": false, + "attached_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "true" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "true", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "true", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "false", + "east": "true", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "true", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "true", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "true", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "true", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "south": "false", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "south": "false", + "powered": "false", + "north": "false", + "east": "false", + "disarmed": "false", + "attached": "false" + }, + "Name": "minecraft:tripwire" + }, + "bedrock_state": { + "bedrock_identifier": "trip_wire", + "state": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:emerald_block" + }, + "bedrock_state": { + "bedrock_identifier": "emerald_block" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:spruce_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:birch_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "birch_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:jungle_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "conditional": "true" + }, + "Name": "minecraft:command_block" + }, + "bedrock_state": { + "bedrock_identifier": "command_block", + "state": { + "conditional_bit": true, + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "conditional": "true" + }, + "Name": "minecraft:command_block" + }, + "bedrock_state": { + "bedrock_identifier": "command_block", + "state": { + "conditional_bit": true, + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "conditional": "true" + }, + "Name": "minecraft:command_block" + }, + "bedrock_state": { + "bedrock_identifier": "command_block", + "state": { + "conditional_bit": true, + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "conditional": "true" + }, + "Name": "minecraft:command_block" + }, + "bedrock_state": { + "bedrock_identifier": "command_block", + "state": { + "conditional_bit": true, + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "up", + "conditional": "true" + }, + "Name": "minecraft:command_block" + }, + "bedrock_state": { + "bedrock_identifier": "command_block", + "state": { + "conditional_bit": true, + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "down", + "conditional": "true" + }, + "Name": "minecraft:command_block" + }, + "bedrock_state": { + "bedrock_identifier": "command_block", + "state": { + "conditional_bit": true, + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "conditional": "false" + }, + "Name": "minecraft:command_block" + }, + "bedrock_state": { + "bedrock_identifier": "command_block", + "state": { + "conditional_bit": false, + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "conditional": "false" + }, + "Name": "minecraft:command_block" + }, + "bedrock_state": { + "bedrock_identifier": "command_block", + "state": { + "conditional_bit": false, + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "conditional": "false" + }, + "Name": "minecraft:command_block" + }, + "bedrock_state": { + "bedrock_identifier": "command_block", + "state": { + "conditional_bit": false, + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "conditional": "false" + }, + "Name": "minecraft:command_block" + }, + "bedrock_state": { + "bedrock_identifier": "command_block", + "state": { + "conditional_bit": false, + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "up", + "conditional": "false" + }, + "Name": "minecraft:command_block" + }, + "bedrock_state": { + "bedrock_identifier": "command_block", + "state": { + "conditional_bit": false, + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "down", + "conditional": "false" + }, + "Name": "minecraft:command_block" + }, + "bedrock_state": { + "bedrock_identifier": "command_block", + "state": { + "conditional_bit": false, + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Name": "minecraft:beacon" + }, + "bedrock_state": { + "bedrock_identifier": "beacon" + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_cobblestone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_cobblestone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Name": "minecraft:flower_pot" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_torchflower" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_oak_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_spruce_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_birch_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_jungle_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_acacia_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_cherry_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_dark_oak_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_mangrove_propagule" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_fern" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_dandelion" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_poppy" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_blue_orchid" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_allium" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_azure_bluet" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_red_tulip" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_orange_tulip" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_white_tulip" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_pink_tulip" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_oxeye_daisy" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_cornflower" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_lily_of_the_valley" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_wither_rose" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_red_mushroom" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_brown_mushroom" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_dead_bush" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_cactus" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:carrots" + }, + "bedrock_state": { + "bedrock_identifier": "carrots", + "state": { + "growth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:carrots" + }, + "bedrock_state": { + "bedrock_identifier": "carrots", + "state": { + "growth": 1 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:carrots" + }, + "bedrock_state": { + "bedrock_identifier": "carrots", + "state": { + "growth": 2 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:carrots" + }, + "bedrock_state": { + "bedrock_identifier": "carrots", + "state": { + "growth": 3 + } + } + }, + { + "java_state": { + "Properties": { + "age": "4" + }, + "Name": "minecraft:carrots" + }, + "bedrock_state": { + "bedrock_identifier": "carrots", + "state": { + "growth": 4 + } + } + }, + { + "java_state": { + "Properties": { + "age": "5" + }, + "Name": "minecraft:carrots" + }, + "bedrock_state": { + "bedrock_identifier": "carrots", + "state": { + "growth": 5 + } + } + }, + { + "java_state": { + "Properties": { + "age": "6" + }, + "Name": "minecraft:carrots" + }, + "bedrock_state": { + "bedrock_identifier": "carrots", + "state": { + "growth": 6 + } + } + }, + { + "java_state": { + "Properties": { + "age": "7" + }, + "Name": "minecraft:carrots" + }, + "bedrock_state": { + "bedrock_identifier": "carrots", + "state": { + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:potatoes" + }, + "bedrock_state": { + "bedrock_identifier": "potatoes", + "state": { + "growth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:potatoes" + }, + "bedrock_state": { + "bedrock_identifier": "potatoes", + "state": { + "growth": 1 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:potatoes" + }, + "bedrock_state": { + "bedrock_identifier": "potatoes", + "state": { + "growth": 2 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:potatoes" + }, + "bedrock_state": { + "bedrock_identifier": "potatoes", + "state": { + "growth": 3 + } + } + }, + { + "java_state": { + "Properties": { + "age": "4" + }, + "Name": "minecraft:potatoes" + }, + "bedrock_state": { + "bedrock_identifier": "potatoes", + "state": { + "growth": 4 + } + } + }, + { + "java_state": { + "Properties": { + "age": "5" + }, + "Name": "minecraft:potatoes" + }, + "bedrock_state": { + "bedrock_identifier": "potatoes", + "state": { + "growth": 5 + } + } + }, + { + "java_state": { + "Properties": { + "age": "6" + }, + "Name": "minecraft:potatoes" + }, + "bedrock_state": { + "bedrock_identifier": "potatoes", + "state": { + "growth": 6 + } + } + }, + { + "java_state": { + "Properties": { + "age": "7" + }, + "Name": "minecraft:potatoes" + }, + "bedrock_state": { + "bedrock_identifier": "potatoes", + "state": { + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "wooden_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:spruce_button" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:birch_button" + }, + "bedrock_state": { + "bedrock_identifier": "birch_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:jungle_button" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:acacia_button" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:cherry_button" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:dark_oak_button" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:mangrove_button" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:bamboo_button" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15", + "powered": "true" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15", + "powered": "false" + }, + "Name": "minecraft:skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north" + }, + "Name": "minecraft:skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north" + }, + "Name": "minecraft:skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south" + }, + "Name": "minecraft:skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south" + }, + "Name": "minecraft:skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west" + }, + "Name": "minecraft:skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west" + }, + "Name": "minecraft:skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east" + }, + "Name": "minecraft:skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east" + }, + "Name": "minecraft:skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15", + "powered": "true" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15", + "powered": "false" + }, + "Name": "minecraft:wither_skeleton_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north" + }, + "Name": "minecraft:wither_skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north" + }, + "Name": "minecraft:wither_skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south" + }, + "Name": "minecraft:wither_skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south" + }, + "Name": "minecraft:wither_skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west" + }, + "Name": "minecraft:wither_skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west" + }, + "Name": "minecraft:wither_skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east" + }, + "Name": "minecraft:wither_skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east" + }, + "Name": "minecraft:wither_skeleton_wall_skull" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15", + "powered": "true" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15", + "powered": "false" + }, + "Name": "minecraft:zombie_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north" + }, + "Name": "minecraft:zombie_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north" + }, + "Name": "minecraft:zombie_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south" + }, + "Name": "minecraft:zombie_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south" + }, + "Name": "minecraft:zombie_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west" + }, + "Name": "minecraft:zombie_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west" + }, + "Name": "minecraft:zombie_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east" + }, + "Name": "minecraft:zombie_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east" + }, + "Name": "minecraft:zombie_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15", + "powered": "true" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15", + "powered": "false" + }, + "Name": "minecraft:player_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north" + }, + "Name": "minecraft:player_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north" + }, + "Name": "minecraft:player_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south" + }, + "Name": "minecraft:player_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south" + }, + "Name": "minecraft:player_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west" + }, + "Name": "minecraft:player_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west" + }, + "Name": "minecraft:player_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east" + }, + "Name": "minecraft:player_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east" + }, + "Name": "minecraft:player_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15", + "powered": "true" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15", + "powered": "false" + }, + "Name": "minecraft:creeper_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north" + }, + "Name": "minecraft:creeper_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north" + }, + "Name": "minecraft:creeper_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south" + }, + "Name": "minecraft:creeper_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south" + }, + "Name": "minecraft:creeper_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west" + }, + "Name": "minecraft:creeper_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west" + }, + "Name": "minecraft:creeper_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east" + }, + "Name": "minecraft:creeper_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east" + }, + "Name": "minecraft:creeper_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15", + "powered": "true" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15", + "powered": "false" + }, + "Name": "minecraft:dragon_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north" + }, + "Name": "minecraft:dragon_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north" + }, + "Name": "minecraft:dragon_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south" + }, + "Name": "minecraft:dragon_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south" + }, + "Name": "minecraft:dragon_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west" + }, + "Name": "minecraft:dragon_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west" + }, + "Name": "minecraft:dragon_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east" + }, + "Name": "minecraft:dragon_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east" + }, + "Name": "minecraft:dragon_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15", + "powered": "true" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15", + "powered": "false" + }, + "Name": "minecraft:piglin_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north" + }, + "Name": "minecraft:piglin_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north" + }, + "Name": "minecraft:piglin_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south" + }, + "Name": "minecraft:piglin_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south" + }, + "Name": "minecraft:piglin_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west" + }, + "Name": "minecraft:piglin_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west" + }, + "Name": "minecraft:piglin_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east" + }, + "Name": "minecraft:piglin_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east" + }, + "Name": "minecraft:piglin_wall_head" + }, + "bedrock_state": { + "bedrock_identifier": "skull", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:anvil" + }, + "bedrock_state": { + "bedrock_identifier": "anvil", + "state": { + "damage": "undamaged", + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:anvil" + }, + "bedrock_state": { + "bedrock_identifier": "anvil", + "state": { + "damage": "undamaged", + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:anvil" + }, + "bedrock_state": { + "bedrock_identifier": "anvil", + "state": { + "damage": "undamaged", + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:anvil" + }, + "bedrock_state": { + "bedrock_identifier": "anvil", + "state": { + "damage": "undamaged", + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:chipped_anvil" + }, + "bedrock_state": { + "bedrock_identifier": "anvil", + "state": { + "damage": "slightly_damaged", + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:chipped_anvil" + }, + "bedrock_state": { + "bedrock_identifier": "anvil", + "state": { + "damage": "slightly_damaged", + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:chipped_anvil" + }, + "bedrock_state": { + "bedrock_identifier": "anvil", + "state": { + "damage": "slightly_damaged", + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:chipped_anvil" + }, + "bedrock_state": { + "bedrock_identifier": "anvil", + "state": { + "damage": "slightly_damaged", + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:damaged_anvil" + }, + "bedrock_state": { + "bedrock_identifier": "anvil", + "state": { + "damage": "very_damaged", + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:damaged_anvil" + }, + "bedrock_state": { + "bedrock_identifier": "anvil", + "state": { + "damage": "very_damaged", + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:damaged_anvil" + }, + "bedrock_state": { + "bedrock_identifier": "anvil", + "state": { + "damage": "very_damaged", + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:damaged_anvil" + }, + "bedrock_state": { + "bedrock_identifier": "anvil", + "state": { + "damage": "very_damaged", + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "single", + "facing": "north" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "single", + "facing": "north" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "left", + "facing": "north" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "left", + "facing": "north" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "right", + "facing": "north" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "right", + "facing": "north" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "single", + "facing": "south" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "single", + "facing": "south" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "left", + "facing": "south" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "left", + "facing": "south" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "right", + "facing": "south" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "right", + "facing": "south" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "single", + "facing": "west" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "single", + "facing": "west" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "left", + "facing": "west" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "left", + "facing": "west" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "right", + "facing": "west" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "right", + "facing": "west" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "single", + "facing": "east" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "single", + "facing": "east" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "left", + "facing": "east" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "left", + "facing": "east" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "right", + "facing": "east" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "right", + "facing": "east" + }, + "Name": "minecraft:trapped_chest" + }, + "bedrock_state": { + "bedrock_identifier": "trapped_chest", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "power": "0" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "power": "1" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "power": "2" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "power": "3" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "power": "4" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "power": "5" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "power": "6" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "power": "7" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "power": "8" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "power": "9" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "power": "10" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "power": "11" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "power": "12" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "power": "13" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "power": "14" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "power": "15" + }, + "Name": "minecraft:light_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "light_weighted_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "power": "0" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "power": "1" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "power": "2" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "power": "3" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "power": "4" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "power": "5" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "power": "6" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "power": "7" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "power": "8" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "power": "9" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "power": "10" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "power": "11" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "power": "12" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "power": "13" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "power": "14" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "power": "15" + }, + "Name": "minecraft:heavy_weighted_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_weighted_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "mode": "compare", + "facing": "north" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "powered_comparator", + "state": { + "output_subtract_bit": false, + "minecraft:cardinal_direction": "north", + "output_lit_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "mode": "compare", + "facing": "north" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_comparator", + "state": { + "output_subtract_bit": false, + "minecraft:cardinal_direction": "north", + "output_lit_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "mode": "subtract", + "facing": "north" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "powered_comparator", + "state": { + "output_subtract_bit": true, + "minecraft:cardinal_direction": "north", + "output_lit_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "mode": "subtract", + "facing": "north" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_comparator", + "state": { + "output_subtract_bit": true, + "minecraft:cardinal_direction": "north", + "output_lit_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "mode": "compare", + "facing": "south" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "powered_comparator", + "state": { + "output_subtract_bit": false, + "minecraft:cardinal_direction": "south", + "output_lit_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "mode": "compare", + "facing": "south" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_comparator", + "state": { + "output_subtract_bit": false, + "minecraft:cardinal_direction": "south", + "output_lit_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "mode": "subtract", + "facing": "south" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "powered_comparator", + "state": { + "output_subtract_bit": true, + "minecraft:cardinal_direction": "south", + "output_lit_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "mode": "subtract", + "facing": "south" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_comparator", + "state": { + "output_subtract_bit": true, + "minecraft:cardinal_direction": "south", + "output_lit_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "mode": "compare", + "facing": "west" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "powered_comparator", + "state": { + "output_subtract_bit": false, + "minecraft:cardinal_direction": "west", + "output_lit_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "mode": "compare", + "facing": "west" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_comparator", + "state": { + "output_subtract_bit": false, + "minecraft:cardinal_direction": "west", + "output_lit_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "mode": "subtract", + "facing": "west" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "powered_comparator", + "state": { + "output_subtract_bit": true, + "minecraft:cardinal_direction": "west", + "output_lit_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "mode": "subtract", + "facing": "west" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_comparator", + "state": { + "output_subtract_bit": true, + "minecraft:cardinal_direction": "west", + "output_lit_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "mode": "compare", + "facing": "east" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "powered_comparator", + "state": { + "output_subtract_bit": false, + "minecraft:cardinal_direction": "east", + "output_lit_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "mode": "compare", + "facing": "east" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_comparator", + "state": { + "output_subtract_bit": false, + "minecraft:cardinal_direction": "east", + "output_lit_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "mode": "subtract", + "facing": "east" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "powered_comparator", + "state": { + "output_subtract_bit": true, + "minecraft:cardinal_direction": "east", + "output_lit_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "mode": "subtract", + "facing": "east" + }, + "Name": "minecraft:comparator" + }, + "bedrock_state": { + "bedrock_identifier": "unpowered_comparator", + "state": { + "output_subtract_bit": true, + "minecraft:cardinal_direction": "east", + "output_lit_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "power": "0", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "power": "1", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "power": "2", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "power": "3", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "power": "4", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "power": "5", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "power": "6", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "power": "7", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "power": "8", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "power": "9", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "power": "10", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "power": "11", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "power": "12", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "power": "13", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "power": "14", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "power": "15", + "inverted": "true" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector_inverted", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "power": "0", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "power": "1", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 1 + } + } + }, + { + "java_state": { + "Properties": { + "power": "2", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 2 + } + } + }, + { + "java_state": { + "Properties": { + "power": "3", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 3 + } + } + }, + { + "java_state": { + "Properties": { + "power": "4", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 4 + } + } + }, + { + "java_state": { + "Properties": { + "power": "5", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 5 + } + } + }, + { + "java_state": { + "Properties": { + "power": "6", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 6 + } + } + }, + { + "java_state": { + "Properties": { + "power": "7", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 7 + } + } + }, + { + "java_state": { + "Properties": { + "power": "8", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 8 + } + } + }, + { + "java_state": { + "Properties": { + "power": "9", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 9 + } + } + }, + { + "java_state": { + "Properties": { + "power": "10", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 10 + } + } + }, + { + "java_state": { + "Properties": { + "power": "11", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 11 + } + } + }, + { + "java_state": { + "Properties": { + "power": "12", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 12 + } + } + }, + { + "java_state": { + "Properties": { + "power": "13", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 13 + } + } + }, + { + "java_state": { + "Properties": { + "power": "14", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 14 + } + } + }, + { + "java_state": { + "Properties": { + "power": "15", + "inverted": "false" + }, + "Name": "minecraft:daylight_detector" + }, + "bedrock_state": { + "bedrock_identifier": "daylight_detector", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Name": "minecraft:redstone_block" + }, + "bedrock_state": { + "bedrock_identifier": "redstone_block" + } + }, + { + "java_state": { + "Name": "minecraft:nether_quartz_ore" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_ore" + } + }, + { + "java_state": { + "Properties": { + "facing": "down", + "enabled": "true" + }, + "Name": "minecraft:hopper" + }, + "bedrock_state": { + "bedrock_identifier": "hopper", + "state": { + "facing_direction": 0, + "toggle_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "enabled": "true" + }, + "Name": "minecraft:hopper" + }, + "bedrock_state": { + "bedrock_identifier": "hopper", + "state": { + "facing_direction": 2, + "toggle_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "enabled": "true" + }, + "Name": "minecraft:hopper" + }, + "bedrock_state": { + "bedrock_identifier": "hopper", + "state": { + "facing_direction": 3, + "toggle_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "enabled": "true" + }, + "Name": "minecraft:hopper" + }, + "bedrock_state": { + "bedrock_identifier": "hopper", + "state": { + "facing_direction": 4, + "toggle_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "enabled": "true" + }, + "Name": "minecraft:hopper" + }, + "bedrock_state": { + "bedrock_identifier": "hopper", + "state": { + "facing_direction": 5, + "toggle_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "facing": "down", + "enabled": "false" + }, + "Name": "minecraft:hopper" + }, + "bedrock_state": { + "bedrock_identifier": "hopper", + "state": { + "facing_direction": 0, + "toggle_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "enabled": "false" + }, + "Name": "minecraft:hopper" + }, + "bedrock_state": { + "bedrock_identifier": "hopper", + "state": { + "facing_direction": 2, + "toggle_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "enabled": "false" + }, + "Name": "minecraft:hopper" + }, + "bedrock_state": { + "bedrock_identifier": "hopper", + "state": { + "facing_direction": 3, + "toggle_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "enabled": "false" + }, + "Name": "minecraft:hopper" + }, + "bedrock_state": { + "bedrock_identifier": "hopper", + "state": { + "facing_direction": 4, + "toggle_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "enabled": "false" + }, + "Name": "minecraft:hopper" + }, + "bedrock_state": { + "bedrock_identifier": "hopper", + "state": { + "facing_direction": 5, + "toggle_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:quartz_block" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_block", + "state": { + "chisel_type": "default", + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Name": "minecraft:chiseled_quartz_block" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_block", + "state": { + "chisel_type": "chiseled", + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:quartz_pillar" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_block", + "state": { + "chisel_type": "lines", + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:quartz_pillar" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_block", + "state": { + "chisel_type": "lines", + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:quartz_pillar" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_block", + "state": { + "chisel_type": "lines", + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "north_south", + "powered": "true" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 0, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "north_south", + "powered": "true" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 0, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "east_west", + "powered": "true" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 1, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "east_west", + "powered": "true" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 1, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_east", + "powered": "true" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 2, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_east", + "powered": "true" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 2, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_west", + "powered": "true" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 3, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_west", + "powered": "true" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 3, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_north", + "powered": "true" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 4, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_north", + "powered": "true" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 4, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_south", + "powered": "true" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 5, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_south", + "powered": "true" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 5, + "rail_data_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "north_south", + "powered": "false" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 0, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "north_south", + "powered": "false" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 0, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "east_west", + "powered": "false" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 1, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "east_west", + "powered": "false" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 1, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_east", + "powered": "false" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 2, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_east", + "powered": "false" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 2, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_west", + "powered": "false" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 3, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_west", + "powered": "false" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 3, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_north", + "powered": "false" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 4, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_north", + "powered": "false" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 4, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "ascending_south", + "powered": "false" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 5, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "ascending_south", + "powered": "false" + }, + "Name": "minecraft:activator_rail" + }, + "bedrock_state": { + "bedrock_identifier": "activator_rail", + "state": { + "rail_direction": 5, + "rail_data_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "facing": "north" + }, + "Name": "minecraft:dropper" + }, + "bedrock_state": { + "bedrock_identifier": "dropper", + "state": { + "facing_direction": 2, + "triggered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "facing": "north" + }, + "Name": "minecraft:dropper" + }, + "bedrock_state": { + "bedrock_identifier": "dropper", + "state": { + "facing_direction": 2, + "triggered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "facing": "east" + }, + "Name": "minecraft:dropper" + }, + "bedrock_state": { + "bedrock_identifier": "dropper", + "state": { + "facing_direction": 5, + "triggered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "facing": "east" + }, + "Name": "minecraft:dropper" + }, + "bedrock_state": { + "bedrock_identifier": "dropper", + "state": { + "facing_direction": 5, + "triggered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "facing": "south" + }, + "Name": "minecraft:dropper" + }, + "bedrock_state": { + "bedrock_identifier": "dropper", + "state": { + "facing_direction": 3, + "triggered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "facing": "south" + }, + "Name": "minecraft:dropper" + }, + "bedrock_state": { + "bedrock_identifier": "dropper", + "state": { + "facing_direction": 3, + "triggered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "facing": "west" + }, + "Name": "minecraft:dropper" + }, + "bedrock_state": { + "bedrock_identifier": "dropper", + "state": { + "facing_direction": 4, + "triggered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "facing": "west" + }, + "Name": "minecraft:dropper" + }, + "bedrock_state": { + "bedrock_identifier": "dropper", + "state": { + "facing_direction": 4, + "triggered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "facing": "up" + }, + "Name": "minecraft:dropper" + }, + "bedrock_state": { + "bedrock_identifier": "dropper", + "state": { + "facing_direction": 1, + "triggered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "facing": "up" + }, + "Name": "minecraft:dropper" + }, + "bedrock_state": { + "bedrock_identifier": "dropper", + "state": { + "facing_direction": 1, + "triggered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "facing": "down" + }, + "Name": "minecraft:dropper" + }, + "bedrock_state": { + "bedrock_identifier": "dropper", + "state": { + "facing_direction": 0, + "triggered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "facing": "down" + }, + "Name": "minecraft:dropper" + }, + "bedrock_state": { + "bedrock_identifier": "dropper", + "state": { + "facing_direction": 0, + "triggered_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:white_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "white_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:orange_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "orange_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:magenta_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:light_blue_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:yellow_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:lime_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "lime_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:pink_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "pink_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:gray_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "gray_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:light_gray_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:cyan_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:purple_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "purple_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:blue_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "blue_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:brown_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "brown_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:green_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "green_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:red_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "red_terracotta" + } + }, + { + "java_state": { + "Name": "minecraft:black_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "black_terracotta" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:white_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "white_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:orange_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "orange_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:magenta_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:yellow_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:lime_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "lime_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:pink_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "pink_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:light_gray_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cyan_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:purple_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "purple_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:blue_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "blue_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:brown_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "brown_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:green_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "green_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:red_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "red_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:black_stained_glass_pane" + }, + "bedrock_state": { + "bedrock_identifier": "black_stained_glass_pane" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:acacia_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cherry_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_oak_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mangrove_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:bamboo_mosaic_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:slime_block" + }, + "bedrock_state": { + "bedrock_identifier": "slime" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:barrier" + }, + "bedrock_state": { + "bedrock_identifier": "barrier" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:barrier" + }, + "bedrock_state": { + "bedrock_identifier": "barrier" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "0" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "0" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "1" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "1" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "2" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "2" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "3" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "3" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "4" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "4" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "5" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "5" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "6" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "6" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "7" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "7" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "8" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "8" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "9" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "9" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "10" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "10" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "11" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "11" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "12" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "12" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "13" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "13" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "14" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "14" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "level": "15" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "level": "15" + }, + "Name": "minecraft:light" + }, + "bedrock_state": { + "bedrock_identifier": "light_block", + "state": { + "block_light_level": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:iron_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "iron_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Name": "minecraft:prismarine" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine", + "state": { + "prismarine_block_type": "default" + } + } + }, + { + "java_state": { + "Name": "minecraft:prismarine_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine", + "state": { + "prismarine_block_type": "bricks" + } + } + }, + { + "java_state": { + "Name": "minecraft:dark_prismarine" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine", + "state": { + "prismarine_block_type": "dark" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:prismarine_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "prismarine_bricks_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:dark_prismarine_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "dark_prismarine_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:prismarine_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_rough", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:prismarine_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_rough", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:prismarine_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_rough", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:prismarine_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_rough", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:prismarine_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_rough", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:prismarine_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_rough", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:prismarine_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_brick", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:prismarine_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_brick", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:prismarine_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:prismarine_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:prismarine_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:prismarine_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:dark_prismarine_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_dark", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:dark_prismarine_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_dark", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:dark_prismarine_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_dark", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:dark_prismarine_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_dark", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:dark_prismarine_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_dark", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:dark_prismarine_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "prismarine_dark", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Name": "minecraft:sea_lantern" + }, + "bedrock_state": { + "bedrock_identifier": "sea_lantern" + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:hay_block" + }, + "bedrock_state": { + "bedrock_identifier": "hay_block", + "state": { + "pillar_axis": "x", + "deprecated": 0 + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:hay_block" + }, + "bedrock_state": { + "bedrock_identifier": "hay_block", + "state": { + "pillar_axis": "y", + "deprecated": 0 + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:hay_block" + }, + "bedrock_state": { + "bedrock_identifier": "hay_block", + "state": { + "pillar_axis": "z", + "deprecated": 0 + } + } + }, + { + "java_state": { + "Name": "minecraft:white_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "white_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:orange_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "orange_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:magenta_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:light_blue_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:yellow_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:lime_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "lime_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:pink_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "pink_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:gray_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "gray_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:light_gray_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:cyan_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:purple_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "purple_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:blue_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "blue_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:brown_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "brown_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:green_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "green_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:red_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "red_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:black_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "black_carpet" + } + }, + { + "java_state": { + "Name": "minecraft:terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "hardened_clay" + } + }, + { + "java_state": { + "Name": "minecraft:coal_block" + }, + "bedrock_state": { + "bedrock_identifier": "coal_block" + } + }, + { + "java_state": { + "Name": "minecraft:packed_ice" + }, + "bedrock_state": { + "bedrock_identifier": "packed_ice" + } + }, + { + "java_state": { + "Properties": { + "half": "upper" + }, + "Name": "minecraft:sunflower" + }, + "bedrock_state": { + "bedrock_identifier": "sunflower", + "state": { + "upper_block_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "half": "lower" + }, + "Name": "minecraft:sunflower" + }, + "bedrock_state": { + "bedrock_identifier": "sunflower", + "state": { + "upper_block_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "half": "upper" + }, + "Name": "minecraft:lilac" + }, + "bedrock_state": { + "bedrock_identifier": "lilac", + "state": { + "upper_block_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "half": "lower" + }, + "Name": "minecraft:lilac" + }, + "bedrock_state": { + "bedrock_identifier": "lilac", + "state": { + "upper_block_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "half": "upper" + }, + "Name": "minecraft:rose_bush" + }, + "bedrock_state": { + "bedrock_identifier": "rose_bush", + "state": { + "upper_block_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "half": "lower" + }, + "Name": "minecraft:rose_bush" + }, + "bedrock_state": { + "bedrock_identifier": "rose_bush", + "state": { + "upper_block_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "half": "upper" + }, + "Name": "minecraft:peony" + }, + "bedrock_state": { + "bedrock_identifier": "peony", + "state": { + "upper_block_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "half": "lower" + }, + "Name": "minecraft:peony" + }, + "bedrock_state": { + "bedrock_identifier": "peony", + "state": { + "upper_block_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "half": "upper" + }, + "Name": "minecraft:tall_grass" + }, + "bedrock_state": { + "bedrock_identifier": "tall_grass", + "state": { + "upper_block_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "half": "lower" + }, + "Name": "minecraft:tall_grass" + }, + "bedrock_state": { + "bedrock_identifier": "tall_grass", + "state": { + "upper_block_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "half": "upper" + }, + "Name": "minecraft:large_fern" + }, + "bedrock_state": { + "bedrock_identifier": "large_fern", + "state": { + "upper_block_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "half": "lower" + }, + "Name": "minecraft:large_fern" + }, + "bedrock_state": { + "bedrock_identifier": "large_fern", + "state": { + "upper_block_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:white_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:orange_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:magenta_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:light_blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:yellow_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:lime_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:pink_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:light_gray_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:cyan_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:purple_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:blue_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:brown_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:green_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:red_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "0" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "1" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "2" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "3" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "4" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "5" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "6" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "7" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "8" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "9" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "10" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "11" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "12" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "13" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "14" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "rotation": "15" + }, + "Name": "minecraft:black_banner" + }, + "bedrock_state": { + "bedrock_identifier": "standing_banner", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:white_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:white_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:white_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:white_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:orange_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:orange_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:orange_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:orange_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:magenta_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:magenta_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:magenta_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:magenta_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:light_blue_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:light_blue_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:light_blue_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:light_blue_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:yellow_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:yellow_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:yellow_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:yellow_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:lime_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:lime_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:lime_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:lime_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:pink_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:pink_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:pink_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:pink_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:gray_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:gray_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:gray_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:gray_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:light_gray_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:light_gray_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:light_gray_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:light_gray_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:cyan_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:cyan_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:cyan_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:cyan_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:purple_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:purple_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:purple_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:purple_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:blue_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:blue_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:blue_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:blue_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:brown_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:brown_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:brown_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:brown_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:green_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:green_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:green_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:green_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:red_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:red_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:red_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:red_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:black_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:black_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:black_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:black_wall_banner" + }, + "bedrock_state": { + "bedrock_identifier": "wall_banner", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Name": "minecraft:red_sandstone" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone", + "state": { + "sand_stone_type": "default" + } + } + }, + { + "java_state": { + "Name": "minecraft:chiseled_red_sandstone" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone", + "state": { + "sand_stone_type": "heiroglyphs" + } + } + }, + { + "java_state": { + "Name": "minecraft:cut_red_sandstone" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone", + "state": { + "sand_stone_type": "cut" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "oak_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "oak_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "oak_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "oak_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "oak_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "oak_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:spruce_slab" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:spruce_slab" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:spruce_slab" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:spruce_slab" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:spruce_slab" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:spruce_slab" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:birch_slab" + }, + "bedrock_state": { + "bedrock_identifier": "birch_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:birch_slab" + }, + "bedrock_state": { + "bedrock_identifier": "birch_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:birch_slab" + }, + "bedrock_state": { + "bedrock_identifier": "birch_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:birch_slab" + }, + "bedrock_state": { + "bedrock_identifier": "birch_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:birch_slab" + }, + "bedrock_state": { + "bedrock_identifier": "birch_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:birch_slab" + }, + "bedrock_state": { + "bedrock_identifier": "birch_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:jungle_slab" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:jungle_slab" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:jungle_slab" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:jungle_slab" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:jungle_slab" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:jungle_slab" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:acacia_slab" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:acacia_slab" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:acacia_slab" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:acacia_slab" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:acacia_slab" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:acacia_slab" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:cherry_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:cherry_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:cherry_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:cherry_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:cherry_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:cherry_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:dark_oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:dark_oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:dark_oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:dark_oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:dark_oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:dark_oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:mangrove_slab" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:mangrove_slab" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:mangrove_slab" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:mangrove_slab" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:mangrove_slab" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:mangrove_slab" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:bamboo_slab" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:bamboo_slab" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:bamboo_slab" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:bamboo_slab" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:bamboo_slab" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:bamboo_slab" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:bamboo_mosaic_slab" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:bamboo_mosaic_slab" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:bamboo_mosaic_slab" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:bamboo_mosaic_slab" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:bamboo_mosaic_slab" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:bamboo_mosaic_slab" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_mosaic_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:stone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "stone", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:stone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "stone", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:stone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "stone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:stone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "stone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:stone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab4", + "state": { + "stone_slab_type_4": "stone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:stone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab4", + "state": { + "stone_slab_type_4": "stone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:smooth_stone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_stone_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:smooth_stone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_stone_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:smooth_stone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_stone_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:smooth_stone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_stone_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:smooth_stone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "smooth_stone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:smooth_stone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "smooth_stone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:cut_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "cut_sandstone", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:cut_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "cut_sandstone", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:cut_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "cut_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:cut_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "cut_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:cut_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab4", + "state": { + "stone_slab_type_4": "cut_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:cut_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab4", + "state": { + "stone_slab_type_4": "cut_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:petrified_oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "petrified_oak_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:petrified_oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "petrified_oak_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:petrified_oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "petrified_oak_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:petrified_oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "petrified_oak_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:petrified_oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "wood", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:petrified_oak_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "wood", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:cobblestone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:cobblestone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:cobblestone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:cobblestone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:cobblestone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "cobblestone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:cobblestone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "cobblestone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "brick_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "brick_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "brick_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "brick_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_brick_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "stone_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "stone_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:mud_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:mud_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:mud_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:mud_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:mud_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:mud_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:nether_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:nether_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:nether_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:nether_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "nether_brick_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:nether_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "nether_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:nether_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "nether_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:quartz_slab" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:quartz_slab" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:quartz_slab" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:quartz_slab" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:quartz_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "quartz", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:quartz_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab", + "state": { + "stone_slab_type": "quartz", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "red_sandstone", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "red_sandstone", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "red_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "red_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "red_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "red_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:cut_red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "cut_red_sandstone", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:cut_red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "cut_red_sandstone", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:cut_red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "cut_red_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:cut_red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "cut_red_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:cut_red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab4", + "state": { + "stone_slab_type_4": "cut_red_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:cut_red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab4", + "state": { + "stone_slab_type_4": "cut_red_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:purpur_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "purpur", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:purpur_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "purpur", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:purpur_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "purpur", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:purpur_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "purpur", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:purpur_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "purpur", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:purpur_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "purpur", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Name": "minecraft:smooth_stone" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_stone" + } + }, + { + "java_state": { + "Name": "minecraft:smooth_sandstone" + }, + "bedrock_state": { + "bedrock_identifier": "sandstone", + "state": { + "sand_stone_type": "smooth" + } + } + }, + { + "java_state": { + "Name": "minecraft:smooth_quartz" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_block", + "state": { + "chisel_type": "smooth", + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Name": "minecraft:smooth_red_sandstone" + }, + "bedrock_state": { + "bedrock_identifier": "red_sandstone", + "state": { + "sand_stone_type": "smooth" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:spruce_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:birch_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:jungle_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:acacia_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:cherry_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:dark_oak_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:mangrove_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:bamboo_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:spruce_fence" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:birch_fence" + }, + "bedrock_state": { + "bedrock_identifier": "birch_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:jungle_fence" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:acacia_fence" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:cherry_fence" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:dark_oak_fence" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:mangrove_fence" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:bamboo_fence" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_fence" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:spruce_door" + }, + "bedrock_state": { + "bedrock_identifier": "spruce_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:birch_door" + }, + "bedrock_state": { + "bedrock_identifier": "birch_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:jungle_door" + }, + "bedrock_state": { + "bedrock_identifier": "jungle_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:acacia_door" + }, + "bedrock_state": { + "bedrock_identifier": "acacia_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:cherry_door" + }, + "bedrock_state": { + "bedrock_identifier": "cherry_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:dark_oak_door" + }, + "bedrock_state": { + "bedrock_identifier": "dark_oak_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:mangrove_door" + }, + "bedrock_state": { + "bedrock_identifier": "mangrove_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:bamboo_door" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:end_rod" + }, + "bedrock_state": { + "bedrock_identifier": "end_rod", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:end_rod" + }, + "bedrock_state": { + "bedrock_identifier": "end_rod", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:end_rod" + }, + "bedrock_state": { + "bedrock_identifier": "end_rod", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:end_rod" + }, + "bedrock_state": { + "bedrock_identifier": "end_rod", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:end_rod" + }, + "bedrock_state": { + "bedrock_identifier": "end_rod", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:end_rod" + }, + "bedrock_state": { + "bedrock_identifier": "end_rod", + "state": { + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:chorus_plant" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_plant" + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:chorus_flower" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_flower", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:chorus_flower" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_flower", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:chorus_flower" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_flower", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:chorus_flower" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_flower", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "age": "4" + }, + "Name": "minecraft:chorus_flower" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_flower", + "state": { + "age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "age": "5" + }, + "Name": "minecraft:chorus_flower" + }, + "bedrock_state": { + "bedrock_identifier": "chorus_flower", + "state": { + "age": 5 + } + } + }, + { + "java_state": { + "Name": "minecraft:purpur_block" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_block", + "state": { + "chisel_type": "default", + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:purpur_pillar" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_block", + "state": { + "chisel_type": "lines", + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:purpur_pillar" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_block", + "state": { + "chisel_type": "lines", + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:purpur_pillar" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_block", + "state": { + "chisel_type": "lines", + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:purpur_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "purpur_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Name": "minecraft:end_stone_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "end_bricks" + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:torchflower_crop" + }, + "bedrock_state": { + "bedrock_identifier": "torchflower_crop", + "state": { + "growth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:torchflower_crop" + }, + "bedrock_state": { + "bedrock_identifier": "torchflower_crop", + "state": { + "growth": 4 + } + } + }, + { + "java_state": { + "Properties": { + "half": "upper", + "age": "0" + }, + "Name": "minecraft:pitcher_crop" + }, + "bedrock_state": { + "bedrock_identifier": "pitcher_crop", + "state": { + "upper_block_bit": true, + "growth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "half": "lower", + "age": "0" + }, + "Name": "minecraft:pitcher_crop" + }, + "bedrock_state": { + "bedrock_identifier": "pitcher_crop", + "state": { + "upper_block_bit": false, + "growth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "half": "upper", + "age": "1" + }, + "Name": "minecraft:pitcher_crop" + }, + "bedrock_state": { + "bedrock_identifier": "pitcher_crop", + "state": { + "upper_block_bit": true, + "growth": 1 + } + } + }, + { + "java_state": { + "Properties": { + "half": "lower", + "age": "1" + }, + "Name": "minecraft:pitcher_crop" + }, + "bedrock_state": { + "bedrock_identifier": "pitcher_crop", + "state": { + "upper_block_bit": false, + "growth": 1 + } + } + }, + { + "java_state": { + "Properties": { + "half": "upper", + "age": "2" + }, + "Name": "minecraft:pitcher_crop" + }, + "bedrock_state": { + "bedrock_identifier": "pitcher_crop", + "state": { + "upper_block_bit": true, + "growth": 3 + } + } + }, + { + "java_state": { + "Properties": { + "half": "lower", + "age": "2" + }, + "Name": "minecraft:pitcher_crop" + }, + "bedrock_state": { + "bedrock_identifier": "pitcher_crop", + "state": { + "upper_block_bit": false, + "growth": 3 + } + } + }, + { + "java_state": { + "Properties": { + "half": "upper", + "age": "3" + }, + "Name": "minecraft:pitcher_crop" + }, + "bedrock_state": { + "bedrock_identifier": "pitcher_crop", + "state": { + "upper_block_bit": true, + "growth": 5 + } + } + }, + { + "java_state": { + "Properties": { + "half": "lower", + "age": "3" + }, + "Name": "minecraft:pitcher_crop" + }, + "bedrock_state": { + "bedrock_identifier": "pitcher_crop", + "state": { + "upper_block_bit": false, + "growth": 5 + } + } + }, + { + "java_state": { + "Properties": { + "half": "upper", + "age": "4" + }, + "Name": "minecraft:pitcher_crop" + }, + "bedrock_state": { + "bedrock_identifier": "pitcher_crop", + "state": { + "upper_block_bit": true, + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "half": "lower", + "age": "4" + }, + "Name": "minecraft:pitcher_crop" + }, + "bedrock_state": { + "bedrock_identifier": "pitcher_crop", + "state": { + "upper_block_bit": false, + "growth": 7 + } + } + }, + { + "java_state": { + "Properties": { + "half": "upper" + }, + "Name": "minecraft:pitcher_plant" + }, + "bedrock_state": { + "bedrock_identifier": "pitcher_plant", + "state": { + "upper_block_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "half": "lower" + }, + "Name": "minecraft:pitcher_plant" + }, + "bedrock_state": { + "bedrock_identifier": "pitcher_plant", + "state": { + "upper_block_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:beetroots" + }, + "bedrock_state": { + "bedrock_identifier": "beetroot", + "state": { + "growth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:beetroots" + }, + "bedrock_state": { + "bedrock_identifier": "beetroot", + "state": { + "growth": 3 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:beetroots" + }, + "bedrock_state": { + "bedrock_identifier": "beetroot", + "state": { + "growth": 4 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:beetroots" + }, + "bedrock_state": { + "bedrock_identifier": "beetroot", + "state": { + "growth": 7 + } + } + }, + { + "java_state": { + "Name": "minecraft:dirt_path" + }, + "bedrock_state": { + "bedrock_identifier": "grass_path" + } + }, + { + "java_state": { + "Name": "minecraft:end_gateway" + }, + "bedrock_state": { + "bedrock_identifier": "end_gateway" + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "conditional": "true" + }, + "Name": "minecraft:repeating_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "repeating_command_block", + "state": { + "conditional_bit": true, + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "conditional": "true" + }, + "Name": "minecraft:repeating_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "repeating_command_block", + "state": { + "conditional_bit": true, + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "conditional": "true" + }, + "Name": "minecraft:repeating_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "repeating_command_block", + "state": { + "conditional_bit": true, + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "conditional": "true" + }, + "Name": "minecraft:repeating_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "repeating_command_block", + "state": { + "conditional_bit": true, + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "up", + "conditional": "true" + }, + "Name": "minecraft:repeating_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "repeating_command_block", + "state": { + "conditional_bit": true, + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "down", + "conditional": "true" + }, + "Name": "minecraft:repeating_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "repeating_command_block", + "state": { + "conditional_bit": true, + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "conditional": "false" + }, + "Name": "minecraft:repeating_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "repeating_command_block", + "state": { + "conditional_bit": false, + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "conditional": "false" + }, + "Name": "minecraft:repeating_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "repeating_command_block", + "state": { + "conditional_bit": false, + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "conditional": "false" + }, + "Name": "minecraft:repeating_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "repeating_command_block", + "state": { + "conditional_bit": false, + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "conditional": "false" + }, + "Name": "minecraft:repeating_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "repeating_command_block", + "state": { + "conditional_bit": false, + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "up", + "conditional": "false" + }, + "Name": "minecraft:repeating_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "repeating_command_block", + "state": { + "conditional_bit": false, + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "down", + "conditional": "false" + }, + "Name": "minecraft:repeating_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "repeating_command_block", + "state": { + "conditional_bit": false, + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "conditional": "true" + }, + "Name": "minecraft:chain_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "chain_command_block", + "state": { + "conditional_bit": true, + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "conditional": "true" + }, + "Name": "minecraft:chain_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "chain_command_block", + "state": { + "conditional_bit": true, + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "conditional": "true" + }, + "Name": "minecraft:chain_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "chain_command_block", + "state": { + "conditional_bit": true, + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "conditional": "true" + }, + "Name": "minecraft:chain_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "chain_command_block", + "state": { + "conditional_bit": true, + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "up", + "conditional": "true" + }, + "Name": "minecraft:chain_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "chain_command_block", + "state": { + "conditional_bit": true, + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "down", + "conditional": "true" + }, + "Name": "minecraft:chain_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "chain_command_block", + "state": { + "conditional_bit": true, + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "conditional": "false" + }, + "Name": "minecraft:chain_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "chain_command_block", + "state": { + "conditional_bit": false, + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "conditional": "false" + }, + "Name": "minecraft:chain_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "chain_command_block", + "state": { + "conditional_bit": false, + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "conditional": "false" + }, + "Name": "minecraft:chain_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "chain_command_block", + "state": { + "conditional_bit": false, + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "conditional": "false" + }, + "Name": "minecraft:chain_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "chain_command_block", + "state": { + "conditional_bit": false, + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "up", + "conditional": "false" + }, + "Name": "minecraft:chain_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "chain_command_block", + "state": { + "conditional_bit": false, + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "down", + "conditional": "false" + }, + "Name": "minecraft:chain_command_block" + }, + "bedrock_state": { + "bedrock_identifier": "chain_command_block", + "state": { + "conditional_bit": false, + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:frosted_ice" + }, + "bedrock_state": { + "bedrock_identifier": "frosted_ice", + "state": { + "age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:frosted_ice" + }, + "bedrock_state": { + "bedrock_identifier": "frosted_ice", + "state": { + "age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:frosted_ice" + }, + "bedrock_state": { + "bedrock_identifier": "frosted_ice", + "state": { + "age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:frosted_ice" + }, + "bedrock_state": { + "bedrock_identifier": "frosted_ice", + "state": { + "age": 3 + } + } + }, + { + "java_state": { + "Name": "minecraft:magma_block" + }, + "bedrock_state": { + "bedrock_identifier": "magma" + } + }, + { + "java_state": { + "Name": "minecraft:nether_wart_block" + }, + "bedrock_state": { + "bedrock_identifier": "nether_wart_block" + } + }, + { + "java_state": { + "Name": "minecraft:red_nether_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick" + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:bone_block" + }, + "bedrock_state": { + "bedrock_identifier": "bone_block", + "state": { + "pillar_axis": "x", + "deprecated": 0 + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:bone_block" + }, + "bedrock_state": { + "bedrock_identifier": "bone_block", + "state": { + "pillar_axis": "y", + "deprecated": 0 + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:bone_block" + }, + "bedrock_state": { + "bedrock_identifier": "bone_block", + "state": { + "pillar_axis": "z", + "deprecated": 0 + } + } + }, + { + "java_state": { + "Name": "minecraft:structure_void" + }, + "bedrock_state": { + "bedrock_identifier": "structure_void", + "state": { + "structure_void_type": "air" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north" + }, + "Name": "minecraft:observer" + }, + "bedrock_state": { + "bedrock_identifier": "observer", + "state": { + "minecraft:facing_direction": "north", + "powered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north" + }, + "Name": "minecraft:observer" + }, + "bedrock_state": { + "bedrock_identifier": "observer", + "state": { + "minecraft:facing_direction": "north", + "powered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east" + }, + "Name": "minecraft:observer" + }, + "bedrock_state": { + "bedrock_identifier": "observer", + "state": { + "minecraft:facing_direction": "east", + "powered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east" + }, + "Name": "minecraft:observer" + }, + "bedrock_state": { + "bedrock_identifier": "observer", + "state": { + "minecraft:facing_direction": "east", + "powered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south" + }, + "Name": "minecraft:observer" + }, + "bedrock_state": { + "bedrock_identifier": "observer", + "state": { + "minecraft:facing_direction": "south", + "powered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south" + }, + "Name": "minecraft:observer" + }, + "bedrock_state": { + "bedrock_identifier": "observer", + "state": { + "minecraft:facing_direction": "south", + "powered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west" + }, + "Name": "minecraft:observer" + }, + "bedrock_state": { + "bedrock_identifier": "observer", + "state": { + "minecraft:facing_direction": "west", + "powered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west" + }, + "Name": "minecraft:observer" + }, + "bedrock_state": { + "bedrock_identifier": "observer", + "state": { + "minecraft:facing_direction": "west", + "powered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "up" + }, + "Name": "minecraft:observer" + }, + "bedrock_state": { + "bedrock_identifier": "observer", + "state": { + "minecraft:facing_direction": "up", + "powered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "up" + }, + "Name": "minecraft:observer" + }, + "bedrock_state": { + "bedrock_identifier": "observer", + "state": { + "minecraft:facing_direction": "up", + "powered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "down" + }, + "Name": "minecraft:observer" + }, + "bedrock_state": { + "bedrock_identifier": "observer", + "state": { + "minecraft:facing_direction": "down", + "powered_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "down" + }, + "Name": "minecraft:observer" + }, + "bedrock_state": { + "bedrock_identifier": "observer", + "state": { + "minecraft:facing_direction": "down", + "powered_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "undyed_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "undyed_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "undyed_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "undyed_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "undyed_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "undyed_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:white_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "white_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:white_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "white_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:white_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "white_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:white_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "white_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:white_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "white_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:white_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "white_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:orange_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "orange_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:orange_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "orange_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:orange_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "orange_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:orange_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "orange_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:orange_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "orange_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:orange_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "orange_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:magenta_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:magenta_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:magenta_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:magenta_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:magenta_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:magenta_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:light_blue_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:light_blue_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:light_blue_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:light_blue_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:light_blue_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:light_blue_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:yellow_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:yellow_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:yellow_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:yellow_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:yellow_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:yellow_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:lime_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "lime_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:lime_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "lime_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:lime_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "lime_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:lime_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "lime_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:lime_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "lime_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:lime_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "lime_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:pink_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "pink_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:pink_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "pink_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:pink_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "pink_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:pink_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "pink_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:pink_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "pink_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:pink_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "pink_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:gray_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "gray_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:gray_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "gray_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:gray_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "gray_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:gray_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "gray_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:gray_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "gray_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:gray_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "gray_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:light_gray_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:light_gray_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:light_gray_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:light_gray_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:light_gray_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:light_gray_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:cyan_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:cyan_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:cyan_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:cyan_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:cyan_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:cyan_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:purple_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "purple_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:purple_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "purple_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:purple_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "purple_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:purple_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "purple_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:purple_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "purple_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:purple_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "purple_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:blue_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "blue_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:blue_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "blue_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:blue_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "blue_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:blue_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "blue_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:blue_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "blue_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:blue_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "blue_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:brown_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "brown_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:brown_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "brown_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:brown_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "brown_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:brown_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "brown_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:brown_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "brown_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:brown_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "brown_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:green_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "green_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:green_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "green_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:green_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "green_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:green_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "green_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:green_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "green_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:green_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "green_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:red_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "red_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:red_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "red_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:red_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "red_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:red_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "red_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:red_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "red_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:red_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "red_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:black_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "black_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:black_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "black_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:black_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "black_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:black_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "black_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "up" + }, + "Name": "minecraft:black_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "black_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "down" + }, + "Name": "minecraft:black_shulker_box" + }, + "bedrock_state": { + "bedrock_identifier": "black_shulker_box" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:white_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "white_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:white_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "white_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:white_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "white_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:white_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "white_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:orange_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "orange_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:orange_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "orange_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:orange_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "orange_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:orange_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "orange_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:magenta_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:magenta_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:magenta_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:magenta_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:light_blue_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:light_blue_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:light_blue_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:light_blue_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:yellow_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:yellow_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:yellow_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:yellow_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:lime_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "lime_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:lime_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "lime_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:lime_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "lime_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:lime_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "lime_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:pink_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "pink_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:pink_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "pink_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:pink_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "pink_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:pink_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "pink_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:gray_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "gray_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:gray_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "gray_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:gray_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "gray_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:gray_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "gray_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:light_gray_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "silver_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:light_gray_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "silver_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:light_gray_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "silver_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:light_gray_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "silver_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:cyan_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:cyan_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:cyan_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:cyan_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:purple_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "purple_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:purple_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "purple_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:purple_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "purple_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:purple_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "purple_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:blue_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "blue_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:blue_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "blue_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:blue_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "blue_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:blue_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "blue_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:brown_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "brown_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:brown_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "brown_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:brown_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "brown_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:brown_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "brown_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:green_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "green_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:green_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "green_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:green_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "green_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:green_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "green_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:red_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "red_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:red_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "red_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:red_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "red_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:red_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "red_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:black_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "black_glazed_terracotta", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:black_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "black_glazed_terracotta", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:black_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "black_glazed_terracotta", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:black_glazed_terracotta" + }, + "bedrock_state": { + "bedrock_identifier": "black_glazed_terracotta", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Name": "minecraft:white_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "white_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:orange_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "orange_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:magenta_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:light_blue_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:yellow_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:lime_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "lime_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:pink_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "pink_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:gray_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "gray_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:light_gray_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:cyan_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:purple_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "purple_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:blue_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "blue_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:brown_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "brown_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:green_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "green_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:red_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "red_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:black_concrete" + }, + "bedrock_state": { + "bedrock_identifier": "black_concrete" + } + }, + { + "java_state": { + "Name": "minecraft:white_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "white_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:orange_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "orange_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:magenta_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:light_blue_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:yellow_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:lime_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "lime_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:pink_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "pink_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:gray_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "gray_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:light_gray_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:cyan_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:purple_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "purple_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:blue_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "blue_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:brown_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "brown_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:green_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "green_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:red_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "red_concrete_powder" + } + }, + { + "java_state": { + "Name": "minecraft:black_concrete_powder" + }, + "bedrock_state": { + "bedrock_identifier": "black_concrete_powder" + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "age": "4" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "age": "5" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "age": "6" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "age": "7" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "age": "8" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "age": "9" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "age": "10" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "age": "11" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "age": "12" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "age": "13" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "age": "14" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "age": "15" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "age": "16" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 16 + } + } + }, + { + "java_state": { + "Properties": { + "age": "17" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 17 + } + } + }, + { + "java_state": { + "Properties": { + "age": "18" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 18 + } + } + }, + { + "java_state": { + "Properties": { + "age": "19" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 19 + } + } + }, + { + "java_state": { + "Properties": { + "age": "20" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 20 + } + } + }, + { + "java_state": { + "Properties": { + "age": "21" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 21 + } + } + }, + { + "java_state": { + "Properties": { + "age": "22" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 22 + } + } + }, + { + "java_state": { + "Properties": { + "age": "23" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 23 + } + } + }, + { + "java_state": { + "Properties": { + "age": "24" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 24 + } + } + }, + { + "java_state": { + "Properties": { + "age": "25" + }, + "Name": "minecraft:kelp" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 25 + } + } + }, + { + "java_state": { + "Name": "minecraft:kelp_plant" + }, + "bedrock_state": { + "bedrock_identifier": "kelp", + "state": { + "kelp_age": 0 + } + } + }, + { + "java_state": { + "Name": "minecraft:dried_kelp_block" + }, + "bedrock_state": { + "bedrock_identifier": "dried_kelp_block" + } + }, + { + "java_state": { + "Properties": { + "hatch": "0", + "eggs": "1" + }, + "Name": "minecraft:turtle_egg" + }, + "bedrock_state": { + "bedrock_identifier": "turtle_egg", + "state": { + "turtle_egg_count": "one_egg", + "cracked_state": "no_cracks" + } + } + }, + { + "java_state": { + "Properties": { + "hatch": "1", + "eggs": "1" + }, + "Name": "minecraft:turtle_egg" + }, + "bedrock_state": { + "bedrock_identifier": "turtle_egg", + "state": { + "turtle_egg_count": "one_egg", + "cracked_state": "cracked" + } + } + }, + { + "java_state": { + "Properties": { + "hatch": "2", + "eggs": "1" + }, + "Name": "minecraft:turtle_egg" + }, + "bedrock_state": { + "bedrock_identifier": "turtle_egg", + "state": { + "turtle_egg_count": "one_egg", + "cracked_state": "max_cracked" + } + } + }, + { + "java_state": { + "Properties": { + "hatch": "0", + "eggs": "2" + }, + "Name": "minecraft:turtle_egg" + }, + "bedrock_state": { + "bedrock_identifier": "turtle_egg", + "state": { + "turtle_egg_count": "two_egg", + "cracked_state": "no_cracks" + } + } + }, + { + "java_state": { + "Properties": { + "hatch": "1", + "eggs": "2" + }, + "Name": "minecraft:turtle_egg" + }, + "bedrock_state": { + "bedrock_identifier": "turtle_egg", + "state": { + "turtle_egg_count": "two_egg", + "cracked_state": "cracked" + } + } + }, + { + "java_state": { + "Properties": { + "hatch": "2", + "eggs": "2" + }, + "Name": "minecraft:turtle_egg" + }, + "bedrock_state": { + "bedrock_identifier": "turtle_egg", + "state": { + "turtle_egg_count": "two_egg", + "cracked_state": "max_cracked" + } + } + }, + { + "java_state": { + "Properties": { + "hatch": "0", + "eggs": "3" + }, + "Name": "minecraft:turtle_egg" + }, + "bedrock_state": { + "bedrock_identifier": "turtle_egg", + "state": { + "turtle_egg_count": "three_egg", + "cracked_state": "no_cracks" + } + } + }, + { + "java_state": { + "Properties": { + "hatch": "1", + "eggs": "3" + }, + "Name": "minecraft:turtle_egg" + }, + "bedrock_state": { + "bedrock_identifier": "turtle_egg", + "state": { + "turtle_egg_count": "three_egg", + "cracked_state": "cracked" + } + } + }, + { + "java_state": { + "Properties": { + "hatch": "2", + "eggs": "3" + }, + "Name": "minecraft:turtle_egg" + }, + "bedrock_state": { + "bedrock_identifier": "turtle_egg", + "state": { + "turtle_egg_count": "three_egg", + "cracked_state": "max_cracked" + } + } + }, + { + "java_state": { + "Properties": { + "hatch": "0", + "eggs": "4" + }, + "Name": "minecraft:turtle_egg" + }, + "bedrock_state": { + "bedrock_identifier": "turtle_egg", + "state": { + "turtle_egg_count": "four_egg", + "cracked_state": "no_cracks" + } + } + }, + { + "java_state": { + "Properties": { + "hatch": "1", + "eggs": "4" + }, + "Name": "minecraft:turtle_egg" + }, + "bedrock_state": { + "bedrock_identifier": "turtle_egg", + "state": { + "turtle_egg_count": "four_egg", + "cracked_state": "cracked" + } + } + }, + { + "java_state": { + "Properties": { + "hatch": "2", + "eggs": "4" + }, + "Name": "minecraft:turtle_egg" + }, + "bedrock_state": { + "bedrock_identifier": "turtle_egg", + "state": { + "turtle_egg_count": "four_egg", + "cracked_state": "max_cracked" + } + } + }, + { + "java_state": { + "Properties": { + "hatch": "0" + }, + "Name": "minecraft:sniffer_egg" + }, + "bedrock_state": { + "bedrock_identifier": "sniffer_egg", + "state": { + "cracked_state": "no_cracks" + } + } + }, + { + "java_state": { + "Properties": { + "hatch": "1" + }, + "Name": "minecraft:sniffer_egg" + }, + "bedrock_state": { + "bedrock_identifier": "sniffer_egg", + "state": { + "cracked_state": "cracked" + } + } + }, + { + "java_state": { + "Properties": { + "hatch": "2" + }, + "Name": "minecraft:sniffer_egg" + }, + "bedrock_state": { + "bedrock_identifier": "sniffer_egg", + "state": { + "cracked_state": "max_cracked" + } + } + }, + { + "java_state": { + "Name": "minecraft:dead_tube_coral_block" + }, + "bedrock_state": { + "bedrock_identifier": "dead_tube_coral_block" + } + }, + { + "java_state": { + "Name": "minecraft:dead_brain_coral_block" + }, + "bedrock_state": { + "bedrock_identifier": "dead_brain_coral_block" + } + }, + { + "java_state": { + "Name": "minecraft:dead_bubble_coral_block" + }, + "bedrock_state": { + "bedrock_identifier": "dead_bubble_coral_block" + } + }, + { + "java_state": { + "Name": "minecraft:dead_fire_coral_block" + }, + "bedrock_state": { + "bedrock_identifier": "dead_fire_coral_block" + } + }, + { + "java_state": { + "Name": "minecraft:dead_horn_coral_block" + }, + "bedrock_state": { + "bedrock_identifier": "dead_horn_coral_block" + } + }, + { + "java_state": { + "Name": "minecraft:tube_coral_block" + }, + "bedrock_state": { + "bedrock_identifier": "tube_coral_block" + } + }, + { + "java_state": { + "Name": "minecraft:brain_coral_block" + }, + "bedrock_state": { + "bedrock_identifier": "brain_coral_block" + } + }, + { + "java_state": { + "Name": "minecraft:bubble_coral_block" + }, + "bedrock_state": { + "bedrock_identifier": "bubble_coral_block" + } + }, + { + "java_state": { + "Name": "minecraft:fire_coral_block" + }, + "bedrock_state": { + "bedrock_identifier": "fire_coral_block" + } + }, + { + "java_state": { + "Name": "minecraft:horn_coral_block" + }, + "bedrock_state": { + "bedrock_identifier": "horn_coral_block" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:dead_tube_coral" + }, + "bedrock_state": { + "bedrock_identifier": "dead_tube_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:dead_tube_coral" + }, + "bedrock_state": { + "bedrock_identifier": "dead_tube_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:dead_brain_coral" + }, + "bedrock_state": { + "bedrock_identifier": "dead_brain_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:dead_brain_coral" + }, + "bedrock_state": { + "bedrock_identifier": "dead_brain_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:dead_bubble_coral" + }, + "bedrock_state": { + "bedrock_identifier": "dead_bubble_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:dead_bubble_coral" + }, + "bedrock_state": { + "bedrock_identifier": "dead_bubble_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:dead_fire_coral" + }, + "bedrock_state": { + "bedrock_identifier": "dead_fire_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:dead_fire_coral" + }, + "bedrock_state": { + "bedrock_identifier": "dead_fire_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:dead_horn_coral" + }, + "bedrock_state": { + "bedrock_identifier": "dead_horn_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:dead_horn_coral" + }, + "bedrock_state": { + "bedrock_identifier": "dead_horn_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:tube_coral" + }, + "bedrock_state": { + "bedrock_identifier": "tube_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:tube_coral" + }, + "bedrock_state": { + "bedrock_identifier": "tube_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:brain_coral" + }, + "bedrock_state": { + "bedrock_identifier": "brain_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:brain_coral" + }, + "bedrock_state": { + "bedrock_identifier": "brain_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:bubble_coral" + }, + "bedrock_state": { + "bedrock_identifier": "bubble_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:bubble_coral" + }, + "bedrock_state": { + "bedrock_identifier": "bubble_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:fire_coral" + }, + "bedrock_state": { + "bedrock_identifier": "fire_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:fire_coral" + }, + "bedrock_state": { + "bedrock_identifier": "fire_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:horn_coral" + }, + "bedrock_state": { + "bedrock_identifier": "horn_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:horn_coral" + }, + "bedrock_state": { + "bedrock_identifier": "horn_coral" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:dead_tube_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "dead_tube_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:dead_tube_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "dead_tube_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:dead_brain_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "dead_brain_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:dead_brain_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "dead_brain_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:dead_bubble_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "dead_bubble_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:dead_bubble_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "dead_bubble_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:dead_fire_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "dead_fire_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:dead_fire_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "dead_fire_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:dead_horn_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "dead_horn_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:dead_horn_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "dead_horn_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:tube_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "tube_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:tube_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "tube_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:brain_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "brain_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:brain_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "brain_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:bubble_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "bubble_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:bubble_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "bubble_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:fire_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "fire_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:fire_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "fire_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:horn_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "horn_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:horn_coral_fan" + }, + "bedrock_state": { + "bedrock_identifier": "horn_coral_fan", + "state": { + "coral_fan_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:dead_tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 2, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:dead_tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 2, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:dead_tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 3, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:dead_tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 3, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:dead_tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 0, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:dead_tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 0, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:dead_tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 1, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:dead_tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 1, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:dead_brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 2, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:dead_brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 2, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:dead_brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 3, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:dead_brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 3, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:dead_brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 0, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:dead_brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 0, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:dead_brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 1, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:dead_brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 1, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:dead_bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 2, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:dead_bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 2, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:dead_bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 3, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:dead_bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 3, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:dead_bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 0, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:dead_bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 0, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:dead_bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 1, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:dead_bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 1, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:dead_fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 2, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:dead_fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 2, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:dead_fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 3, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:dead_fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 3, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:dead_fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 0, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:dead_fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 0, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:dead_fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 1, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:dead_fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 1, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:dead_horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 2, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:dead_horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 2, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:dead_horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 3, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:dead_horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 3, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:dead_horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 0, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:dead_horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 0, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:dead_horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 1, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:dead_horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 1, + "dead_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 2, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 2, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 3, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 3, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 0, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 0, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 1, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:tube_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 1, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 2, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 2, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 3, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 3, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 0, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 0, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 1, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:brain_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 1, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 2, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 2, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 3, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 3, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 0, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 0, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 1, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:bubble_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 1, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 2, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 2, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 3, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 3, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 0, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 0, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 1, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:fire_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang2", + "state": { + "coral_hang_type_bit": true, + "coral_direction": 1, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 2, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 2, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 3, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 3, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 0, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 0, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 1, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:horn_coral_wall_fan" + }, + "bedrock_state": { + "bedrock_identifier": "coral_fan_hang3", + "state": { + "coral_hang_type_bit": false, + "coral_direction": 1, + "dead_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "pickles": "1" + }, + "Name": "minecraft:sea_pickle" + }, + "bedrock_state": { + "bedrock_identifier": "sea_pickle", + "state": { + "dead_bit": false, + "cluster_count": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "pickles": "1" + }, + "Name": "minecraft:sea_pickle" + }, + "bedrock_state": { + "bedrock_identifier": "sea_pickle", + "state": { + "dead_bit": true, + "cluster_count": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "pickles": "2" + }, + "Name": "minecraft:sea_pickle" + }, + "bedrock_state": { + "bedrock_identifier": "sea_pickle", + "state": { + "dead_bit": false, + "cluster_count": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "pickles": "2" + }, + "Name": "minecraft:sea_pickle" + }, + "bedrock_state": { + "bedrock_identifier": "sea_pickle", + "state": { + "dead_bit": true, + "cluster_count": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "pickles": "3" + }, + "Name": "minecraft:sea_pickle" + }, + "bedrock_state": { + "bedrock_identifier": "sea_pickle", + "state": { + "dead_bit": false, + "cluster_count": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "pickles": "3" + }, + "Name": "minecraft:sea_pickle" + }, + "bedrock_state": { + "bedrock_identifier": "sea_pickle", + "state": { + "dead_bit": true, + "cluster_count": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "pickles": "4" + }, + "Name": "minecraft:sea_pickle" + }, + "bedrock_state": { + "bedrock_identifier": "sea_pickle", + "state": { + "dead_bit": false, + "cluster_count": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "pickles": "4" + }, + "Name": "minecraft:sea_pickle" + }, + "bedrock_state": { + "bedrock_identifier": "sea_pickle", + "state": { + "dead_bit": true, + "cluster_count": 3 + } + } + }, + { + "java_state": { + "Name": "minecraft:blue_ice" + }, + "bedrock_state": { + "bedrock_identifier": "blue_ice" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:conduit" + }, + "bedrock_state": { + "bedrock_identifier": "conduit" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:conduit" + }, + "bedrock_state": { + "bedrock_identifier": "conduit" + } + }, + { + "java_state": { + "Name": "minecraft:bamboo_sapling" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo_sapling", + "state": { + "age_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "stage": "0", + "leaves": "none", + "age": "0" + }, + "Name": "minecraft:bamboo" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo", + "state": { + "bamboo_leaf_size": "no_leaves", + "age_bit": false, + "bamboo_stalk_thickness": "thin" + } + } + }, + { + "java_state": { + "Properties": { + "stage": "1", + "leaves": "none", + "age": "0" + }, + "Name": "minecraft:bamboo" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo", + "state": { + "bamboo_leaf_size": "no_leaves", + "age_bit": false, + "bamboo_stalk_thickness": "thin" + } + } + }, + { + "java_state": { + "Properties": { + "stage": "0", + "leaves": "small", + "age": "0" + }, + "Name": "minecraft:bamboo" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo", + "state": { + "bamboo_leaf_size": "small_leaves", + "age_bit": false, + "bamboo_stalk_thickness": "thin" + } + } + }, + { + "java_state": { + "Properties": { + "stage": "1", + "leaves": "small", + "age": "0" + }, + "Name": "minecraft:bamboo" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo", + "state": { + "bamboo_leaf_size": "small_leaves", + "age_bit": false, + "bamboo_stalk_thickness": "thin" + } + } + }, + { + "java_state": { + "Properties": { + "stage": "0", + "leaves": "large", + "age": "0" + }, + "Name": "minecraft:bamboo" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo", + "state": { + "bamboo_leaf_size": "large_leaves", + "age_bit": false, + "bamboo_stalk_thickness": "thin" + } + } + }, + { + "java_state": { + "Properties": { + "stage": "1", + "leaves": "large", + "age": "0" + }, + "Name": "minecraft:bamboo" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo", + "state": { + "bamboo_leaf_size": "large_leaves", + "age_bit": false, + "bamboo_stalk_thickness": "thin" + } + } + }, + { + "java_state": { + "Properties": { + "stage": "0", + "leaves": "none", + "age": "1" + }, + "Name": "minecraft:bamboo" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo", + "state": { + "bamboo_leaf_size": "no_leaves", + "age_bit": false, + "bamboo_stalk_thickness": "thick" + } + } + }, + { + "java_state": { + "Properties": { + "stage": "1", + "leaves": "none", + "age": "1" + }, + "Name": "minecraft:bamboo" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo", + "state": { + "bamboo_leaf_size": "no_leaves", + "age_bit": false, + "bamboo_stalk_thickness": "thick" + } + } + }, + { + "java_state": { + "Properties": { + "stage": "0", + "leaves": "small", + "age": "1" + }, + "Name": "minecraft:bamboo" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo", + "state": { + "bamboo_leaf_size": "small_leaves", + "age_bit": false, + "bamboo_stalk_thickness": "thick" + } + } + }, + { + "java_state": { + "Properties": { + "stage": "1", + "leaves": "small", + "age": "1" + }, + "Name": "minecraft:bamboo" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo", + "state": { + "bamboo_leaf_size": "small_leaves", + "age_bit": false, + "bamboo_stalk_thickness": "thick" + } + } + }, + { + "java_state": { + "Properties": { + "stage": "0", + "leaves": "large", + "age": "1" + }, + "Name": "minecraft:bamboo" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo", + "state": { + "bamboo_leaf_size": "large_leaves", + "age_bit": false, + "bamboo_stalk_thickness": "thick" + } + } + }, + { + "java_state": { + "Properties": { + "stage": "1", + "leaves": "large", + "age": "1" + }, + "Name": "minecraft:bamboo" + }, + "bedrock_state": { + "bedrock_identifier": "bamboo", + "state": { + "bamboo_leaf_size": "large_leaves", + "age_bit": false, + "bamboo_stalk_thickness": "thick" + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_bamboo" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:void_air" + }, + "bedrock_state": { + "bedrock_identifier": "air" + } + }, + { + "java_state": { + "Name": "minecraft:cave_air" + }, + "bedrock_state": { + "bedrock_identifier": "air" + } + }, + { + "java_state": { + "Properties": { + "drag": "true" + }, + "Name": "minecraft:bubble_column" + }, + "bedrock_state": { + "bedrock_identifier": "bubble_column", + "state": { + "drag_down": true + } + } + }, + { + "java_state": { + "Properties": { + "drag": "false" + }, + "Name": "minecraft:bubble_column" + }, + "bedrock_state": { + "bedrock_identifier": "bubble_column", + "state": { + "drag_down": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_red_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_red_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_stone_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:mossy_cobblestone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "mossy_cobblestone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:end_stone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "end_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:stone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "normal_stone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_sandstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_sandstone_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:smooth_quartz_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_quartz_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:granite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "granite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:red_nether_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "red_nether_brick_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_andesite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_andesite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:diorite_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "diorite_stairs", + "state": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:polished_granite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_granite", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:polished_granite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_granite", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:polished_granite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_granite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:polished_granite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_granite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:polished_granite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_granite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:polished_granite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_granite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:smooth_red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "smooth_red_sandstone", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:smooth_red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "smooth_red_sandstone", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:smooth_red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "smooth_red_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:smooth_red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "smooth_red_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:smooth_red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "smooth_red_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:smooth_red_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "smooth_red_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:mossy_stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "mossy_stone_brick", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:mossy_stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "mossy_stone_brick", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:mossy_stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "mossy_stone_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:mossy_stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "mossy_stone_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:mossy_stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab4", + "state": { + "stone_slab_type_4": "mossy_stone_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:mossy_stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab4", + "state": { + "stone_slab_type_4": "mossy_stone_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:polished_diorite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_diorite", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:polished_diorite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_diorite", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:polished_diorite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_diorite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:polished_diorite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_diorite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:polished_diorite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_diorite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:polished_diorite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_diorite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:mossy_cobblestone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "mossy_cobblestone", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:mossy_cobblestone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "mossy_cobblestone", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:mossy_cobblestone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "mossy_cobblestone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:mossy_cobblestone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "mossy_cobblestone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:mossy_cobblestone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "mossy_cobblestone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:mossy_cobblestone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "mossy_cobblestone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:end_stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "end_stone_brick", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:end_stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "end_stone_brick", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:end_stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "end_stone_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:end_stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "end_stone_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:end_stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "end_stone_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:end_stone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "end_stone_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:smooth_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "smooth_sandstone", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:smooth_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "smooth_sandstone", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:smooth_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "smooth_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:smooth_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "smooth_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:smooth_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "smooth_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:smooth_sandstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "smooth_sandstone", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:smooth_quartz_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "smooth_quartz", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:smooth_quartz_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "smooth_quartz", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:smooth_quartz_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "smooth_quartz", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:smooth_quartz_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab4", + "state": { + "stone_slab_type_4": "smooth_quartz", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:smooth_quartz_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab4", + "state": { + "stone_slab_type_4": "smooth_quartz", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:smooth_quartz_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab4", + "state": { + "stone_slab_type_4": "smooth_quartz", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:granite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "granite", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:granite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "granite", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:granite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "granite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:granite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "granite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:granite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "granite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:granite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "granite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:andesite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "andesite", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:andesite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "andesite", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:andesite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "andesite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:andesite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "andesite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:andesite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "andesite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:andesite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "andesite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:red_nether_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "red_nether_brick", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:red_nether_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "red_nether_brick", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:red_nether_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "red_nether_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:red_nether_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab2", + "state": { + "stone_slab_type_2": "red_nether_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:red_nether_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "red_nether_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:red_nether_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab2", + "state": { + "stone_slab_type_2": "red_nether_brick", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:polished_andesite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_andesite", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:polished_andesite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_andesite", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:polished_andesite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_andesite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:polished_andesite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_andesite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:polished_andesite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_andesite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:polished_andesite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "polished_andesite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:diorite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "diorite", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:diorite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "diorite", + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:diorite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "diorite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:diorite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "stone_block_slab3", + "state": { + "stone_slab_type_3": "diorite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:diorite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "diorite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:diorite_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_stone_block_slab3", + "state": { + "stone_slab_type_3": "diorite", + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:prismarine_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mossy_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:granite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "granite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:mud_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "mud_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:andesite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:red_nether_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "red_nether_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:sandstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "sandstone", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:end_stone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "end_brick", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:diorite_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobblestone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_block_type": "diorite", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "0", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 0, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "0", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 0, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "1", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 1, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "1", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 1, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "2", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 2, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "2", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 2, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "3", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 3, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "3", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 3, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "4", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 4, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "4", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 4, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "5", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 5, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "5", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 5, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "6", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 6, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "6", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 6, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "7", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 7, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "7", + "bottom": "true" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 7, + "stability_check": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "0", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 0, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "0", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 0, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "1", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 1, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "1", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 1, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "2", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 2, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "2", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 2, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "3", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 3, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "3", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 3, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "4", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 4, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "4", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 4, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "5", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 5, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "5", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 5, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "6", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 6, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "6", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 6, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "distance": "7", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 7, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "distance": "7", + "bottom": "false" + }, + "Name": "minecraft:scaffolding" + }, + "bedrock_state": { + "bedrock_identifier": "scaffolding", + "state": { + "stability": 7, + "stability_check": true + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:loom" + }, + "bedrock_state": { + "bedrock_identifier": "loom", + "state": { + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:loom" + }, + "bedrock_state": { + "bedrock_identifier": "loom", + "state": { + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:loom" + }, + "bedrock_state": { + "bedrock_identifier": "loom", + "state": { + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:loom" + }, + "bedrock_state": { + "bedrock_identifier": "loom", + "state": { + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "open": "true", + "facing": "north" + }, + "Name": "minecraft:barrel" + }, + "bedrock_state": { + "bedrock_identifier": "barrel", + "state": { + "facing_direction": 2, + "open_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "open": "false", + "facing": "north" + }, + "Name": "minecraft:barrel" + }, + "bedrock_state": { + "bedrock_identifier": "barrel", + "state": { + "facing_direction": 2, + "open_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "open": "true", + "facing": "east" + }, + "Name": "minecraft:barrel" + }, + "bedrock_state": { + "bedrock_identifier": "barrel", + "state": { + "facing_direction": 5, + "open_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "open": "false", + "facing": "east" + }, + "Name": "minecraft:barrel" + }, + "bedrock_state": { + "bedrock_identifier": "barrel", + "state": { + "facing_direction": 5, + "open_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "open": "true", + "facing": "south" + }, + "Name": "minecraft:barrel" + }, + "bedrock_state": { + "bedrock_identifier": "barrel", + "state": { + "facing_direction": 3, + "open_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "open": "false", + "facing": "south" + }, + "Name": "minecraft:barrel" + }, + "bedrock_state": { + "bedrock_identifier": "barrel", + "state": { + "facing_direction": 3, + "open_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "open": "true", + "facing": "west" + }, + "Name": "minecraft:barrel" + }, + "bedrock_state": { + "bedrock_identifier": "barrel", + "state": { + "facing_direction": 4, + "open_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "open": "false", + "facing": "west" + }, + "Name": "minecraft:barrel" + }, + "bedrock_state": { + "bedrock_identifier": "barrel", + "state": { + "facing_direction": 4, + "open_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "open": "true", + "facing": "up" + }, + "Name": "minecraft:barrel" + }, + "bedrock_state": { + "bedrock_identifier": "barrel", + "state": { + "facing_direction": 1, + "open_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "open": "false", + "facing": "up" + }, + "Name": "minecraft:barrel" + }, + "bedrock_state": { + "bedrock_identifier": "barrel", + "state": { + "facing_direction": 1, + "open_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "open": "true", + "facing": "down" + }, + "Name": "minecraft:barrel" + }, + "bedrock_state": { + "bedrock_identifier": "barrel", + "state": { + "facing_direction": 0, + "open_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "open": "false", + "facing": "down" + }, + "Name": "minecraft:barrel" + }, + "bedrock_state": { + "bedrock_identifier": "barrel", + "state": { + "facing_direction": 0, + "open_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "north" + }, + "Name": "minecraft:smoker" + }, + "bedrock_state": { + "bedrock_identifier": "lit_smoker", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "north" + }, + "Name": "minecraft:smoker" + }, + "bedrock_state": { + "bedrock_identifier": "smoker", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "south" + }, + "Name": "minecraft:smoker" + }, + "bedrock_state": { + "bedrock_identifier": "lit_smoker", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "south" + }, + "Name": "minecraft:smoker" + }, + "bedrock_state": { + "bedrock_identifier": "smoker", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "west" + }, + "Name": "minecraft:smoker" + }, + "bedrock_state": { + "bedrock_identifier": "lit_smoker", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "west" + }, + "Name": "minecraft:smoker" + }, + "bedrock_state": { + "bedrock_identifier": "smoker", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "east" + }, + "Name": "minecraft:smoker" + }, + "bedrock_state": { + "bedrock_identifier": "lit_smoker", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "east" + }, + "Name": "minecraft:smoker" + }, + "bedrock_state": { + "bedrock_identifier": "smoker", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "north" + }, + "Name": "minecraft:blast_furnace" + }, + "bedrock_state": { + "bedrock_identifier": "lit_blast_furnace", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "north" + }, + "Name": "minecraft:blast_furnace" + }, + "bedrock_state": { + "bedrock_identifier": "blast_furnace", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "south" + }, + "Name": "minecraft:blast_furnace" + }, + "bedrock_state": { + "bedrock_identifier": "lit_blast_furnace", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "south" + }, + "Name": "minecraft:blast_furnace" + }, + "bedrock_state": { + "bedrock_identifier": "blast_furnace", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "west" + }, + "Name": "minecraft:blast_furnace" + }, + "bedrock_state": { + "bedrock_identifier": "lit_blast_furnace", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "west" + }, + "Name": "minecraft:blast_furnace" + }, + "bedrock_state": { + "bedrock_identifier": "blast_furnace", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true", + "facing": "east" + }, + "Name": "minecraft:blast_furnace" + }, + "bedrock_state": { + "bedrock_identifier": "lit_blast_furnace", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false", + "facing": "east" + }, + "Name": "minecraft:blast_furnace" + }, + "bedrock_state": { + "bedrock_identifier": "blast_furnace", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Name": "minecraft:cartography_table" + }, + "bedrock_state": { + "bedrock_identifier": "cartography_table" + } + }, + { + "java_state": { + "Name": "minecraft:fletching_table" + }, + "bedrock_state": { + "bedrock_identifier": "fletching_table" + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:grindstone" + }, + "bedrock_state": { + "bedrock_identifier": "grindstone", + "state": { + "attachment": "standing", + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:grindstone" + }, + "bedrock_state": { + "bedrock_identifier": "grindstone", + "state": { + "attachment": "standing", + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:grindstone" + }, + "bedrock_state": { + "bedrock_identifier": "grindstone", + "state": { + "attachment": "standing", + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:grindstone" + }, + "bedrock_state": { + "bedrock_identifier": "grindstone", + "state": { + "attachment": "standing", + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:grindstone" + }, + "bedrock_state": { + "bedrock_identifier": "grindstone", + "state": { + "attachment": "side", + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:grindstone" + }, + "bedrock_state": { + "bedrock_identifier": "grindstone", + "state": { + "attachment": "side", + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:grindstone" + }, + "bedrock_state": { + "bedrock_identifier": "grindstone", + "state": { + "attachment": "side", + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:grindstone" + }, + "bedrock_state": { + "bedrock_identifier": "grindstone", + "state": { + "attachment": "side", + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:grindstone" + }, + "bedrock_state": { + "bedrock_identifier": "grindstone", + "state": { + "attachment": "hanging", + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:grindstone" + }, + "bedrock_state": { + "bedrock_identifier": "grindstone", + "state": { + "attachment": "hanging", + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:grindstone" + }, + "bedrock_state": { + "bedrock_identifier": "grindstone", + "state": { + "attachment": "hanging", + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:grindstone" + }, + "bedrock_state": { + "bedrock_identifier": "grindstone", + "state": { + "attachment": "hanging", + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "has_book": "true", + "facing": "north" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": true, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "has_book": "true", + "facing": "north" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": false, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "has_book": "false", + "facing": "north" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": true, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "has_book": "false", + "facing": "north" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": false, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "has_book": "true", + "facing": "south" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": true, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "has_book": "true", + "facing": "south" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": false, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "has_book": "false", + "facing": "south" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": true, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "has_book": "false", + "facing": "south" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": false, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "has_book": "true", + "facing": "west" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": true, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "has_book": "true", + "facing": "west" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": false, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "has_book": "false", + "facing": "west" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": true, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "has_book": "false", + "facing": "west" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": false, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "has_book": "true", + "facing": "east" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": true, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "has_book": "true", + "facing": "east" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": false, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "has_book": "false", + "facing": "east" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": true, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "has_book": "false", + "facing": "east" + }, + "Name": "minecraft:lectern" + }, + "bedrock_state": { + "bedrock_identifier": "lectern", + "state": { + "powered_bit": false, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Name": "minecraft:smithing_table" + }, + "bedrock_state": { + "bedrock_identifier": "smithing_table" + } + }, + { + "java_state": { + "Properties": { + "facing": "north" + }, + "Name": "minecraft:stonecutter" + }, + "bedrock_state": { + "bedrock_identifier": "stonecutter_block", + "state": { + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "south" + }, + "Name": "minecraft:stonecutter" + }, + "bedrock_state": { + "bedrock_identifier": "stonecutter_block", + "state": { + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "west" + }, + "Name": "minecraft:stonecutter" + }, + "bedrock_state": { + "bedrock_identifier": "stonecutter_block", + "state": { + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "facing": "east" + }, + "Name": "minecraft:stonecutter" + }, + "bedrock_state": { + "bedrock_identifier": "stonecutter_block", + "state": { + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "attachment": "floor" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "standing", + "toggle_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "attachment": "floor" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "standing", + "toggle_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "attachment": "floor" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "standing", + "toggle_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "attachment": "floor" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "standing", + "toggle_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "attachment": "floor" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "standing", + "toggle_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "attachment": "floor" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "standing", + "toggle_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "attachment": "floor" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "standing", + "toggle_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "attachment": "floor" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "standing", + "toggle_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "attachment": "ceiling" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "hanging", + "toggle_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "attachment": "ceiling" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "hanging", + "toggle_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "attachment": "ceiling" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "hanging", + "toggle_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "attachment": "ceiling" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "hanging", + "toggle_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "attachment": "ceiling" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "hanging", + "toggle_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "attachment": "ceiling" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "hanging", + "toggle_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "attachment": "ceiling" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "hanging", + "toggle_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "attachment": "ceiling" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "hanging", + "toggle_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "attachment": "single_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "side", + "toggle_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "attachment": "single_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "side", + "toggle_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "attachment": "single_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "side", + "toggle_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "attachment": "single_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "side", + "toggle_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "attachment": "single_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "side", + "toggle_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "attachment": "single_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "side", + "toggle_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "attachment": "single_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "side", + "toggle_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "attachment": "single_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "side", + "toggle_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "attachment": "double_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "multiple", + "toggle_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "attachment": "double_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "multiple", + "toggle_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "attachment": "double_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "multiple", + "toggle_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "attachment": "double_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "multiple", + "toggle_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "attachment": "double_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "multiple", + "toggle_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "attachment": "double_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "multiple", + "toggle_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "attachment": "double_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "multiple", + "toggle_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "attachment": "double_wall" + }, + "Name": "minecraft:bell" + }, + "bedrock_state": { + "bedrock_identifier": "bell", + "state": { + "attachment": "multiple", + "toggle_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "hanging": "true" + }, + "Name": "minecraft:lantern" + }, + "bedrock_state": { + "bedrock_identifier": "lantern", + "state": { + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "hanging": "true" + }, + "Name": "minecraft:lantern" + }, + "bedrock_state": { + "bedrock_identifier": "lantern", + "state": { + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "hanging": "false" + }, + "Name": "minecraft:lantern" + }, + "bedrock_state": { + "bedrock_identifier": "lantern", + "state": { + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "hanging": "false" + }, + "Name": "minecraft:lantern" + }, + "bedrock_state": { + "bedrock_identifier": "lantern", + "state": { + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "hanging": "true" + }, + "Name": "minecraft:soul_lantern" + }, + "bedrock_state": { + "bedrock_identifier": "soul_lantern", + "state": { + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "hanging": "true" + }, + "Name": "minecraft:soul_lantern" + }, + "bedrock_state": { + "bedrock_identifier": "soul_lantern", + "state": { + "hanging": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "hanging": "false" + }, + "Name": "minecraft:soul_lantern" + }, + "bedrock_state": { + "bedrock_identifier": "soul_lantern", + "state": { + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "hanging": "false" + }, + "Name": "minecraft:soul_lantern" + }, + "bedrock_state": { + "bedrock_identifier": "soul_lantern", + "state": { + "hanging": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "true", + "facing": "north" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "true", + "facing": "north" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "true", + "facing": "north" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "true", + "facing": "north" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "false", + "facing": "north" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "false", + "facing": "north" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "false", + "facing": "north" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "false", + "facing": "north" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "true", + "facing": "south" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "true", + "facing": "south" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "true", + "facing": "south" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "true", + "facing": "south" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "false", + "facing": "south" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "false", + "facing": "south" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "false", + "facing": "south" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "false", + "facing": "south" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "true", + "facing": "west" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "true", + "facing": "west" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "true", + "facing": "west" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "true", + "facing": "west" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "false", + "facing": "west" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "false", + "facing": "west" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "false", + "facing": "west" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "false", + "facing": "west" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "true", + "facing": "east" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "true", + "facing": "east" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "true", + "facing": "east" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "true", + "facing": "east" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "false", + "facing": "east" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "false", + "facing": "east" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "false", + "facing": "east" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "false", + "facing": "east" + }, + "Name": "minecraft:campfire" + }, + "bedrock_state": { + "bedrock_identifier": "campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "true", + "facing": "north" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "true", + "facing": "north" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "true", + "facing": "north" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "true", + "facing": "north" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "false", + "facing": "north" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "false", + "facing": "north" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "false", + "facing": "north" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "false", + "facing": "north" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "north", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "true", + "facing": "south" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "true", + "facing": "south" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "true", + "facing": "south" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "true", + "facing": "south" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "false", + "facing": "south" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "false", + "facing": "south" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "false", + "facing": "south" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "false", + "facing": "south" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "south", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "true", + "facing": "west" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "true", + "facing": "west" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "true", + "facing": "west" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "true", + "facing": "west" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "false", + "facing": "west" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "false", + "facing": "west" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "false", + "facing": "west" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "false", + "facing": "west" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "west", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "true", + "facing": "east" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "true", + "facing": "east" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "true", + "facing": "east" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "true", + "facing": "east" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "true", + "lit": "false", + "facing": "east" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "true", + "lit": "false", + "facing": "east" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "signal_fire": "false", + "lit": "false", + "facing": "east" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "signal_fire": "false", + "lit": "false", + "facing": "east" + }, + "Name": "minecraft:soul_campfire" + }, + "bedrock_state": { + "bedrock_identifier": "soul_campfire", + "state": { + "minecraft:cardinal_direction": "east", + "extinguished": true + } + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:sweet_berry_bush" + }, + "bedrock_state": { + "bedrock_identifier": "sweet_berry_bush", + "state": { + "growth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:sweet_berry_bush" + }, + "bedrock_state": { + "bedrock_identifier": "sweet_berry_bush", + "state": { + "growth": 1 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:sweet_berry_bush" + }, + "bedrock_state": { + "bedrock_identifier": "sweet_berry_bush", + "state": { + "growth": 2 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:sweet_berry_bush" + }, + "bedrock_state": { + "bedrock_identifier": "sweet_berry_bush", + "state": { + "growth": 3 + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:warped_stem" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stem", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:warped_stem" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stem", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:warped_stem" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stem", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_warped_stem" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_warped_stem", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_warped_stem" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_warped_stem", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_warped_stem" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_warped_stem", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:warped_hyphae" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hyphae", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:warped_hyphae" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hyphae", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:warped_hyphae" + }, + "bedrock_state": { + "bedrock_identifier": "warped_hyphae", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_warped_hyphae" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_warped_hyphae", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_warped_hyphae" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_warped_hyphae", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_warped_hyphae" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_warped_hyphae", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Name": "minecraft:warped_nylium" + }, + "bedrock_state": { + "bedrock_identifier": "warped_nylium" + } + }, + { + "java_state": { + "Name": "minecraft:warped_fungus" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fungus" + } + }, + { + "java_state": { + "Name": "minecraft:warped_wart_block" + }, + "bedrock_state": { + "bedrock_identifier": "warped_wart_block" + } + }, + { + "java_state": { + "Name": "minecraft:warped_roots" + }, + "bedrock_state": { + "bedrock_identifier": "warped_roots" + } + }, + { + "java_state": { + "Name": "minecraft:nether_sprouts" + }, + "bedrock_state": { + "bedrock_identifier": "nether_sprouts" + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:crimson_stem" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stem", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:crimson_stem" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stem", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:crimson_stem" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stem", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_crimson_stem" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_crimson_stem", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_crimson_stem" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_crimson_stem", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_crimson_stem" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_crimson_stem", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:crimson_hyphae" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hyphae", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:crimson_hyphae" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hyphae", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:crimson_hyphae" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_hyphae", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:stripped_crimson_hyphae" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_crimson_hyphae", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:stripped_crimson_hyphae" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_crimson_hyphae", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:stripped_crimson_hyphae" + }, + "bedrock_state": { + "bedrock_identifier": "stripped_crimson_hyphae", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Name": "minecraft:crimson_nylium" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_nylium" + } + }, + { + "java_state": { + "Name": "minecraft:crimson_fungus" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fungus" + } + }, + { + "java_state": { + "Name": "minecraft:shroomlight" + }, + "bedrock_state": { + "bedrock_identifier": "shroomlight" + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "age": "4" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "age": "5" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "age": "6" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "age": "7" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "age": "8" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "age": "9" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "age": "10" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "age": "11" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "age": "12" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "age": "13" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "age": "14" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "age": "15" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "age": "16" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 16 + } + } + }, + { + "java_state": { + "Properties": { + "age": "17" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 17 + } + } + }, + { + "java_state": { + "Properties": { + "age": "18" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 18 + } + } + }, + { + "java_state": { + "Properties": { + "age": "19" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 19 + } + } + }, + { + "java_state": { + "Properties": { + "age": "20" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 20 + } + } + }, + { + "java_state": { + "Properties": { + "age": "21" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 21 + } + } + }, + { + "java_state": { + "Properties": { + "age": "22" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 22 + } + } + }, + { + "java_state": { + "Properties": { + "age": "23" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 23 + } + } + }, + { + "java_state": { + "Properties": { + "age": "24" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 24 + } + } + }, + { + "java_state": { + "Properties": { + "age": "25" + }, + "Name": "minecraft:weeping_vines" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 25 + } + } + }, + { + "java_state": { + "Name": "minecraft:weeping_vines_plant" + }, + "bedrock_state": { + "bedrock_identifier": "weeping_vines", + "state": { + "weeping_vines_age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "0" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "age": "1" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "age": "2" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "age": "3" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "age": "4" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "age": "5" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "age": "6" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "age": "7" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "age": "8" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "age": "9" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "age": "10" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "age": "11" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "age": "12" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "age": "13" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "age": "14" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "age": "15" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "age": "16" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 16 + } + } + }, + { + "java_state": { + "Properties": { + "age": "17" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 17 + } + } + }, + { + "java_state": { + "Properties": { + "age": "18" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 18 + } + } + }, + { + "java_state": { + "Properties": { + "age": "19" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 19 + } + } + }, + { + "java_state": { + "Properties": { + "age": "20" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 20 + } + } + }, + { + "java_state": { + "Properties": { + "age": "21" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 21 + } + } + }, + { + "java_state": { + "Properties": { + "age": "22" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 22 + } + } + }, + { + "java_state": { + "Properties": { + "age": "23" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 23 + } + } + }, + { + "java_state": { + "Properties": { + "age": "24" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 24 + } + } + }, + { + "java_state": { + "Properties": { + "age": "25" + }, + "Name": "minecraft:twisting_vines" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 25 + } + } + }, + { + "java_state": { + "Name": "minecraft:twisting_vines_plant" + }, + "bedrock_state": { + "bedrock_identifier": "twisting_vines", + "state": { + "twisting_vines_age": 0 + } + } + }, + { + "java_state": { + "Name": "minecraft:crimson_roots" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_roots" + } + }, + { + "java_state": { + "Name": "minecraft:crimson_planks" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_planks" + } + }, + { + "java_state": { + "Name": "minecraft:warped_planks" + }, + "bedrock_state": { + "bedrock_identifier": "warped_planks" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:crimson_slab" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:crimson_slab" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:crimson_slab" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:crimson_slab" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:crimson_slab" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:crimson_slab" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:warped_slab" + }, + "bedrock_state": { + "bedrock_identifier": "warped_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:warped_slab" + }, + "bedrock_state": { + "bedrock_identifier": "warped_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:warped_slab" + }, + "bedrock_state": { + "bedrock_identifier": "warped_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:warped_slab" + }, + "bedrock_state": { + "bedrock_identifier": "warped_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:warped_slab" + }, + "bedrock_state": { + "bedrock_identifier": "warped_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:warped_slab" + }, + "bedrock_state": { + "bedrock_identifier": "warped_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true" + }, + "Name": "minecraft:crimson_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false" + }, + "Name": "minecraft:crimson_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true" + }, + "Name": "minecraft:warped_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false" + }, + "Name": "minecraft:warped_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:crimson_fence" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "true" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "true", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "true", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "true", + "north": "false", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "south": "false", + "north": "false", + "east": "false" + }, + "Name": "minecraft:warped_fence" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "warped_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:crimson_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "north" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "north" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "south" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "south" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "west" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "west" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "true", + "facing": "east" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "in_wall": "false", + "facing": "east" + }, + "Name": "minecraft:warped_fence_gate" + }, + "bedrock_state": { + "bedrock_identifier": "warped_fence_gate", + "state": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:crimson_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:warped_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "warped_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:crimson_button" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:warped_button" + }, + "bedrock_state": { + "bedrock_identifier": "warped_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:crimson_door" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:warped_door" + }, + "bedrock_state": { + "bedrock_identifier": "warped_door", + "state": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15" + }, + "Name": "minecraft:crimson_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "0" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "0" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "1" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "1" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "2" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "2" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "3" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "3" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "4" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "4" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "5" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "5" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "6" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "6" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 6 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "7" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "7" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 7 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "8" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "8" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 8 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "9" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "9" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 9 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "10" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "10" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 10 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "11" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "11" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 11 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "12" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "12" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 12 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "13" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "13" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 13 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "14" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "14" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 14 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "rotation": "15" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "rotation": "15" + }, + "Name": "minecraft:warped_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_standing_sign", + "state": { + "ground_sign_direction": 15 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:crimson_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:crimson_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:crimson_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:crimson_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:crimson_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:crimson_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:crimson_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:crimson_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "crimson_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:warped_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:warped_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_wall_sign", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:warped_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:warped_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_wall_sign", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:warped_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:warped_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_wall_sign", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:warped_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:warped_wall_sign" + }, + "bedrock_state": { + "bedrock_identifier": "warped_wall_sign", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "mode": "save" + }, + "Name": "minecraft:structure_block" + }, + "bedrock_state": { + "bedrock_identifier": "structure_block", + "state": { + "structure_block_type": "save" + } + } + }, + { + "java_state": { + "Properties": { + "mode": "load" + }, + "Name": "minecraft:structure_block" + }, + "bedrock_state": { + "bedrock_identifier": "structure_block", + "state": { + "structure_block_type": "load" + } + } + }, + { + "java_state": { + "Properties": { + "mode": "corner" + }, + "Name": "minecraft:structure_block" + }, + "bedrock_state": { + "bedrock_identifier": "structure_block", + "state": { + "structure_block_type": "corner" + } + } + }, + { + "java_state": { + "Properties": { + "mode": "data" + }, + "Name": "minecraft:structure_block" + }, + "bedrock_state": { + "bedrock_identifier": "structure_block", + "state": { + "structure_block_type": "data" + } + } + }, + { + "java_state": { + "Properties": { + "orientation": "down_east" + }, + "Name": "minecraft:jigsaw" + }, + "bedrock_state": { + "bedrock_identifier": "jigsaw", + "state": { + "facing_direction": 0, + "rotation": 0 + } + } + }, + { + "java_state": { + "Properties": { + "orientation": "down_north" + }, + "Name": "minecraft:jigsaw" + }, + "bedrock_state": { + "bedrock_identifier": "jigsaw", + "state": { + "facing_direction": 0, + "rotation": 0 + } + } + }, + { + "java_state": { + "Properties": { + "orientation": "down_south" + }, + "Name": "minecraft:jigsaw" + }, + "bedrock_state": { + "bedrock_identifier": "jigsaw", + "state": { + "facing_direction": 0, + "rotation": 0 + } + } + }, + { + "java_state": { + "Properties": { + "orientation": "down_west" + }, + "Name": "minecraft:jigsaw" + }, + "bedrock_state": { + "bedrock_identifier": "jigsaw", + "state": { + "facing_direction": 0, + "rotation": 0 + } + } + }, + { + "java_state": { + "Properties": { + "orientation": "up_east" + }, + "Name": "minecraft:jigsaw" + }, + "bedrock_state": { + "bedrock_identifier": "jigsaw", + "state": { + "facing_direction": 0, + "rotation": 0 + } + } + }, + { + "java_state": { + "Properties": { + "orientation": "up_north" + }, + "Name": "minecraft:jigsaw" + }, + "bedrock_state": { + "bedrock_identifier": "jigsaw", + "state": { + "facing_direction": 0, + "rotation": 0 + } + } + }, + { + "java_state": { + "Properties": { + "orientation": "up_south" + }, + "Name": "minecraft:jigsaw" + }, + "bedrock_state": { + "bedrock_identifier": "jigsaw", + "state": { + "facing_direction": 0, + "rotation": 0 + } + } + }, + { + "java_state": { + "Properties": { + "orientation": "up_west" + }, + "Name": "minecraft:jigsaw" + }, + "bedrock_state": { + "bedrock_identifier": "jigsaw", + "state": { + "facing_direction": 0, + "rotation": 0 + } + } + }, + { + "java_state": { + "Properties": { + "orientation": "west_up" + }, + "Name": "minecraft:jigsaw" + }, + "bedrock_state": { + "bedrock_identifier": "jigsaw", + "state": { + "facing_direction": 0, + "rotation": 0 + } + } + }, + { + "java_state": { + "Properties": { + "orientation": "east_up" + }, + "Name": "minecraft:jigsaw" + }, + "bedrock_state": { + "bedrock_identifier": "jigsaw", + "state": { + "facing_direction": 0, + "rotation": 0 + } + } + }, + { + "java_state": { + "Properties": { + "orientation": "north_up" + }, + "Name": "minecraft:jigsaw" + }, + "bedrock_state": { + "bedrock_identifier": "jigsaw", + "state": { + "facing_direction": 0, + "rotation": 0 + } + } + }, + { + "java_state": { + "Properties": { + "orientation": "south_up" + }, + "Name": "minecraft:jigsaw" + }, + "bedrock_state": { + "bedrock_identifier": "jigsaw", + "state": { + "facing_direction": 0, + "rotation": 0 + } + } + }, + { + "java_state": { + "Properties": { + "level": "0" + }, + "Name": "minecraft:composter" + }, + "bedrock_state": { + "bedrock_identifier": "composter", + "state": { + "composter_fill_level": 0 + } + } + }, + { + "java_state": { + "Properties": { + "level": "1" + }, + "Name": "minecraft:composter" + }, + "bedrock_state": { + "bedrock_identifier": "composter", + "state": { + "composter_fill_level": 1 + } + } + }, + { + "java_state": { + "Properties": { + "level": "2" + }, + "Name": "minecraft:composter" + }, + "bedrock_state": { + "bedrock_identifier": "composter", + "state": { + "composter_fill_level": 2 + } + } + }, + { + "java_state": { + "Properties": { + "level": "3" + }, + "Name": "minecraft:composter" + }, + "bedrock_state": { + "bedrock_identifier": "composter", + "state": { + "composter_fill_level": 3 + } + } + }, + { + "java_state": { + "Properties": { + "level": "4" + }, + "Name": "minecraft:composter" + }, + "bedrock_state": { + "bedrock_identifier": "composter", + "state": { + "composter_fill_level": 4 + } + } + }, + { + "java_state": { + "Properties": { + "level": "5" + }, + "Name": "minecraft:composter" + }, + "bedrock_state": { + "bedrock_identifier": "composter", + "state": { + "composter_fill_level": 5 + } + } + }, + { + "java_state": { + "Properties": { + "level": "6" + }, + "Name": "minecraft:composter" + }, + "bedrock_state": { + "bedrock_identifier": "composter", + "state": { + "composter_fill_level": 6 + } + } + }, + { + "java_state": { + "Properties": { + "level": "7" + }, + "Name": "minecraft:composter" + }, + "bedrock_state": { + "bedrock_identifier": "composter", + "state": { + "composter_fill_level": 7 + } + } + }, + { + "java_state": { + "Properties": { + "level": "8" + }, + "Name": "minecraft:composter" + }, + "bedrock_state": { + "bedrock_identifier": "composter", + "state": { + "composter_fill_level": 8 + } + } + }, + { + "java_state": { + "Properties": { + "power": "0" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "1" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "2" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "3" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "4" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "5" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "6" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "7" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "8" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "9" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "10" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "11" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "12" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "13" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "14" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "power": "15" + }, + "Name": "minecraft:target" + }, + "bedrock_state": { + "bedrock_identifier": "target" + } + }, + { + "java_state": { + "Properties": { + "honey_level": "0", + "facing": "north" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 0, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "1", + "facing": "north" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 1, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "2", + "facing": "north" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 2, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "3", + "facing": "north" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 3, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "4", + "facing": "north" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 4, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "5", + "facing": "north" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 5, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "0", + "facing": "south" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 0, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "1", + "facing": "south" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 1, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "2", + "facing": "south" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 2, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "3", + "facing": "south" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 3, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "4", + "facing": "south" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 4, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "5", + "facing": "south" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 5, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "0", + "facing": "west" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 0, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "1", + "facing": "west" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 1, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "2", + "facing": "west" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 2, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "3", + "facing": "west" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 3, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "4", + "facing": "west" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 4, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "5", + "facing": "west" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 5, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "0", + "facing": "east" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 0, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "1", + "facing": "east" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 1, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "2", + "facing": "east" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 2, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "3", + "facing": "east" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 3, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "4", + "facing": "east" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 4, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "5", + "facing": "east" + }, + "Name": "minecraft:bee_nest" + }, + "bedrock_state": { + "bedrock_identifier": "bee_nest", + "state": { + "honey_level": 5, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "0", + "facing": "north" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 0, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "1", + "facing": "north" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 1, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "2", + "facing": "north" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 2, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "3", + "facing": "north" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 3, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "4", + "facing": "north" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 4, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "5", + "facing": "north" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 5, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "0", + "facing": "south" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 0, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "1", + "facing": "south" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 1, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "2", + "facing": "south" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 2, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "3", + "facing": "south" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 3, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "4", + "facing": "south" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 4, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "5", + "facing": "south" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 5, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "0", + "facing": "west" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 0, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "1", + "facing": "west" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 1, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "2", + "facing": "west" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 2, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "3", + "facing": "west" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 3, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "4", + "facing": "west" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 4, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "5", + "facing": "west" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 5, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "0", + "facing": "east" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 0, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "1", + "facing": "east" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 1, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "2", + "facing": "east" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 2, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "3", + "facing": "east" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 3, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "4", + "facing": "east" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 4, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "honey_level": "5", + "facing": "east" + }, + "Name": "minecraft:beehive" + }, + "bedrock_state": { + "bedrock_identifier": "beehive", + "state": { + "honey_level": 5, + "direction": 3 + } + } + }, + { + "java_state": { + "Name": "minecraft:honey_block" + }, + "bedrock_state": { + "bedrock_identifier": "honey_block" + } + }, + { + "java_state": { + "Name": "minecraft:honeycomb_block" + }, + "bedrock_state": { + "bedrock_identifier": "honeycomb_block" + } + }, + { + "java_state": { + "Name": "minecraft:netherite_block" + }, + "bedrock_state": { + "bedrock_identifier": "netherite_block" + } + }, + { + "java_state": { + "Name": "minecraft:ancient_debris" + }, + "bedrock_state": { + "bedrock_identifier": "ancient_debris" + } + }, + { + "java_state": { + "Name": "minecraft:crying_obsidian" + }, + "bedrock_state": { + "bedrock_identifier": "crying_obsidian" + } + }, + { + "java_state": { + "Properties": { + "charges": "0" + }, + "Name": "minecraft:respawn_anchor" + }, + "bedrock_state": { + "bedrock_identifier": "respawn_anchor", + "state": { + "respawn_anchor_charge": 0 + } + } + }, + { + "java_state": { + "Properties": { + "charges": "1" + }, + "Name": "minecraft:respawn_anchor" + }, + "bedrock_state": { + "bedrock_identifier": "respawn_anchor", + "state": { + "respawn_anchor_charge": 1 + } + } + }, + { + "java_state": { + "Properties": { + "charges": "2" + }, + "Name": "minecraft:respawn_anchor" + }, + "bedrock_state": { + "bedrock_identifier": "respawn_anchor", + "state": { + "respawn_anchor_charge": 2 + } + } + }, + { + "java_state": { + "Properties": { + "charges": "3" + }, + "Name": "minecraft:respawn_anchor" + }, + "bedrock_state": { + "bedrock_identifier": "respawn_anchor", + "state": { + "respawn_anchor_charge": 3 + } + } + }, + { + "java_state": { + "Properties": { + "charges": "4" + }, + "Name": "minecraft:respawn_anchor" + }, + "bedrock_state": { + "bedrock_identifier": "respawn_anchor", + "state": { + "respawn_anchor_charge": 4 + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_crimson_fungus" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_warped_fungus" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_crimson_roots" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_warped_roots" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:lodestone" + }, + "bedrock_state": { + "bedrock_identifier": "lodestone" + } + }, + { + "java_state": { + "Name": "minecraft:blackstone" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:blackstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:blackstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:blackstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:blackstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:blackstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:blackstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "blackstone_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Name": "minecraft:polished_blackstone" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone" + } + }, + { + "java_state": { + "Name": "minecraft:polished_blackstone_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_bricks" + } + }, + { + "java_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "cracked_polished_blackstone_bricks" + } + }, + { + "java_state": { + "Name": "minecraft:chiseled_polished_blackstone" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_polished_blackstone" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:polished_blackstone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:polished_blackstone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:polished_blackstone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:polished_blackstone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:polished_blackstone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:polished_blackstone_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Name": "minecraft:gilded_blackstone" + }, + "bedrock_state": { + "bedrock_identifier": "gilded_blackstone" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_blackstone_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:polished_blackstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:polished_blackstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:polished_blackstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:polished_blackstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:polished_blackstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:polished_blackstone_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true" + }, + "Name": "minecraft:polished_blackstone_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_pressure_plate", + "state": { + "redstone_signal": 15 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false" + }, + "Name": "minecraft:polished_blackstone_pressure_plate" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_pressure_plate", + "state": { + "redstone_signal": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "floor" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "floor" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "floor" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "floor" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 1, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "wall" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 2, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "wall" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 3, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "wall" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 4, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "wall" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 5, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "north", + "face": "ceiling" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "south", + "face": "ceiling" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "west", + "face": "ceiling" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "facing": "east", + "face": "ceiling" + }, + "Name": "minecraft:polished_blackstone_button" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_button", + "state": { + "facing_direction": 0, + "button_pressed_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_blackstone_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_blackstone_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Name": "minecraft:chiseled_nether_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_nether_bricks" + } + }, + { + "java_state": { + "Name": "minecraft:cracked_nether_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "cracked_nether_bricks" + } + }, + { + "java_state": { + "Name": "minecraft:quartz_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "quartz_bricks" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:candle" + }, + "bedrock_state": { + "bedrock_identifier": "candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:white_candle" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:orange_candle" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:magenta_candle" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:light_blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:yellow_candle" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:lime_candle" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:pink_candle" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:light_gray_candle" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:cyan_candle" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:purple_candle" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:blue_candle" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:brown_candle" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:green_candle" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:red_candle" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "1" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": true, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "1" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": false, + "candles": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "2" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": true, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "2" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": false, + "candles": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "3" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": true, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "3" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": false, + "candles": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "true", + "candles": "4" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": true, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "lit": "false", + "candles": "4" + }, + "Name": "minecraft:black_candle" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle", + "state": { + "lit": false, + "candles": 3 + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:white_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:white_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "white_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:orange_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:orange_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "orange_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:magenta_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:magenta_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "magenta_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:light_blue_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:light_blue_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "light_blue_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:yellow_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:yellow_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "yellow_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:lime_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:lime_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "lime_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:pink_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:pink_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "pink_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:gray_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:gray_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "gray_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:light_gray_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:light_gray_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "light_gray_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:cyan_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:cyan_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "cyan_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:purple_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:purple_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "purple_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:blue_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:blue_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "blue_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:brown_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:brown_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "brown_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:green_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:green_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "green_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:red_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:red_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "red_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "lit": "true" + }, + "Name": "minecraft:black_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle_cake", + "state": { + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "lit": "false" + }, + "Name": "minecraft:black_candle_cake" + }, + "bedrock_state": { + "bedrock_identifier": "black_candle_cake", + "state": { + "lit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:amethyst_block" + }, + "bedrock_state": { + "bedrock_identifier": "amethyst_block" + } + }, + { + "java_state": { + "Name": "minecraft:budding_amethyst" + }, + "bedrock_state": { + "bedrock_identifier": "budding_amethyst" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:amethyst_cluster" + }, + "bedrock_state": { + "bedrock_identifier": "amethyst_cluster", + "state": { + "minecraft:block_face": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:amethyst_cluster" + }, + "bedrock_state": { + "bedrock_identifier": "amethyst_cluster", + "state": { + "minecraft:block_face": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:amethyst_cluster" + }, + "bedrock_state": { + "bedrock_identifier": "amethyst_cluster", + "state": { + "minecraft:block_face": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:amethyst_cluster" + }, + "bedrock_state": { + "bedrock_identifier": "amethyst_cluster", + "state": { + "minecraft:block_face": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:amethyst_cluster" + }, + "bedrock_state": { + "bedrock_identifier": "amethyst_cluster", + "state": { + "minecraft:block_face": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:amethyst_cluster" + }, + "bedrock_state": { + "bedrock_identifier": "amethyst_cluster", + "state": { + "minecraft:block_face": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:amethyst_cluster" + }, + "bedrock_state": { + "bedrock_identifier": "amethyst_cluster", + "state": { + "minecraft:block_face": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:amethyst_cluster" + }, + "bedrock_state": { + "bedrock_identifier": "amethyst_cluster", + "state": { + "minecraft:block_face": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "up" + }, + "Name": "minecraft:amethyst_cluster" + }, + "bedrock_state": { + "bedrock_identifier": "amethyst_cluster", + "state": { + "minecraft:block_face": "up" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "up" + }, + "Name": "minecraft:amethyst_cluster" + }, + "bedrock_state": { + "bedrock_identifier": "amethyst_cluster", + "state": { + "minecraft:block_face": "up" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "down" + }, + "Name": "minecraft:amethyst_cluster" + }, + "bedrock_state": { + "bedrock_identifier": "amethyst_cluster", + "state": { + "minecraft:block_face": "down" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "down" + }, + "Name": "minecraft:amethyst_cluster" + }, + "bedrock_state": { + "bedrock_identifier": "amethyst_cluster", + "state": { + "minecraft:block_face": "down" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:large_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "large_amethyst_bud", + "state": { + "minecraft:block_face": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:large_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "large_amethyst_bud", + "state": { + "minecraft:block_face": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:large_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "large_amethyst_bud", + "state": { + "minecraft:block_face": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:large_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "large_amethyst_bud", + "state": { + "minecraft:block_face": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:large_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "large_amethyst_bud", + "state": { + "minecraft:block_face": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:large_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "large_amethyst_bud", + "state": { + "minecraft:block_face": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:large_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "large_amethyst_bud", + "state": { + "minecraft:block_face": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:large_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "large_amethyst_bud", + "state": { + "minecraft:block_face": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "up" + }, + "Name": "minecraft:large_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "large_amethyst_bud", + "state": { + "minecraft:block_face": "up" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "up" + }, + "Name": "minecraft:large_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "large_amethyst_bud", + "state": { + "minecraft:block_face": "up" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "down" + }, + "Name": "minecraft:large_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "large_amethyst_bud", + "state": { + "minecraft:block_face": "down" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "down" + }, + "Name": "minecraft:large_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "large_amethyst_bud", + "state": { + "minecraft:block_face": "down" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:medium_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "medium_amethyst_bud", + "state": { + "minecraft:block_face": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:medium_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "medium_amethyst_bud", + "state": { + "minecraft:block_face": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:medium_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "medium_amethyst_bud", + "state": { + "minecraft:block_face": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:medium_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "medium_amethyst_bud", + "state": { + "minecraft:block_face": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:medium_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "medium_amethyst_bud", + "state": { + "minecraft:block_face": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:medium_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "medium_amethyst_bud", + "state": { + "minecraft:block_face": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:medium_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "medium_amethyst_bud", + "state": { + "minecraft:block_face": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:medium_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "medium_amethyst_bud", + "state": { + "minecraft:block_face": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "up" + }, + "Name": "minecraft:medium_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "medium_amethyst_bud", + "state": { + "minecraft:block_face": "up" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "up" + }, + "Name": "minecraft:medium_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "medium_amethyst_bud", + "state": { + "minecraft:block_face": "up" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "down" + }, + "Name": "minecraft:medium_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "medium_amethyst_bud", + "state": { + "minecraft:block_face": "down" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "down" + }, + "Name": "minecraft:medium_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "medium_amethyst_bud", + "state": { + "minecraft:block_face": "down" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:small_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "small_amethyst_bud", + "state": { + "minecraft:block_face": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:small_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "small_amethyst_bud", + "state": { + "minecraft:block_face": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:small_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "small_amethyst_bud", + "state": { + "minecraft:block_face": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:small_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "small_amethyst_bud", + "state": { + "minecraft:block_face": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:small_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "small_amethyst_bud", + "state": { + "minecraft:block_face": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:small_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "small_amethyst_bud", + "state": { + "minecraft:block_face": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:small_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "small_amethyst_bud", + "state": { + "minecraft:block_face": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:small_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "small_amethyst_bud", + "state": { + "minecraft:block_face": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "up" + }, + "Name": "minecraft:small_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "small_amethyst_bud", + "state": { + "minecraft:block_face": "up" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "up" + }, + "Name": "minecraft:small_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "small_amethyst_bud", + "state": { + "minecraft:block_face": "up" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "down" + }, + "Name": "minecraft:small_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "small_amethyst_bud", + "state": { + "minecraft:block_face": "down" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "down" + }, + "Name": "minecraft:small_amethyst_bud" + }, + "bedrock_state": { + "bedrock_identifier": "small_amethyst_bud", + "state": { + "minecraft:block_face": "down" + } + } + }, + { + "java_state": { + "Name": "minecraft:tuff" + }, + "bedrock_state": { + "bedrock_identifier": "tuff" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:tuff_slab" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:tuff_slab" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:tuff_slab" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:tuff_slab" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:tuff_slab" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:tuff_slab" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Name": "minecraft:polished_tuff" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:polished_tuff_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:polished_tuff_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:polished_tuff_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:polished_tuff_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:polished_tuff_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:polished_tuff_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_tuff_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_tuff_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_tuff_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Name": "minecraft:chiseled_tuff" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_tuff" + } + }, + { + "java_state": { + "Name": "minecraft:tuff_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_bricks" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:tuff_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:tuff_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:tuff_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:tuff_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:tuff_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:tuff_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:tuff_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:tuff_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "tuff_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Name": "minecraft:chiseled_tuff_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_tuff_bricks" + } + }, + { + "java_state": { + "Name": "minecraft:calcite" + }, + "bedrock_state": { + "bedrock_identifier": "calcite" + } + }, + { + "java_state": { + "Name": "minecraft:tinted_glass" + }, + "bedrock_state": { + "bedrock_identifier": "tinted_glass" + } + }, + { + "java_state": { + "Name": "minecraft:powder_snow" + }, + "bedrock_state": { + "bedrock_identifier": "powder_snow" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "0" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "0" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "0" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "0" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "0" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "0" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "1" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "1" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "1" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "1" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "1" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "1" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "2" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "2" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "2" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "2" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "2" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "2" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "3" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "3" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "3" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "3" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "3" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "3" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "4" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "4" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "4" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "4" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "4" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "4" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "5" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "5" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "5" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "5" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "5" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "5" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "6" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "6" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "6" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "6" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "6" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "6" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "7" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "7" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "7" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "7" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "7" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "7" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "8" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "8" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "8" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "8" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "8" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "8" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "9" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "9" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "9" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "9" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "9" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "9" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "10" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "10" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "10" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "10" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "10" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "10" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "11" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "11" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "11" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "11" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "11" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "11" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "12" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "12" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "12" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "12" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "12" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "12" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "13" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "13" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "13" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "13" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "13" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "13" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "14" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "14" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "14" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "14" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "14" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "14" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "15" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "15" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "15" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "15" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "15" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "15" + }, + "Name": "minecraft:sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_sensor", + "state": { + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "0", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "0", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "0", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "0", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "0", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "0", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "1", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "1", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "1", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "1", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "1", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "1", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "2", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "2", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "2", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "2", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "2", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "2", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "3", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "3", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "3", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "3", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "3", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "3", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "4", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "4", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "4", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "4", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "4", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "4", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "5", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "5", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "5", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "5", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "5", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "5", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "6", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "6", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "6", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "6", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "6", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "6", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "7", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "7", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "7", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "7", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "7", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "7", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "8", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "8", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "8", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "8", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "8", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "8", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "9", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "9", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "9", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "9", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "9", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "9", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "10", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "10", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "10", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "10", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "10", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "10", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "11", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "11", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "11", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "11", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "11", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "11", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "12", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "12", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "12", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "12", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "12", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "12", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "13", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "13", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "13", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "13", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "13", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "13", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "14", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "14", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "14", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "14", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "14", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "14", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "15", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "15", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "15", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "15", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "15", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "15", + "facing": "north" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "north", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "0", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "0", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "0", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "0", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "0", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "0", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "1", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "1", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "1", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "1", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "1", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "1", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "2", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "2", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "2", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "2", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "2", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "2", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "3", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "3", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "3", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "3", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "3", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "3", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "4", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "4", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "4", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "4", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "4", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "4", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "5", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "5", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "5", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "5", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "5", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "5", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "6", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "6", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "6", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "6", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "6", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "6", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "7", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "7", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "7", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "7", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "7", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "7", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "8", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "8", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "8", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "8", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "8", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "8", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "9", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "9", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "9", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "9", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "9", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "9", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "10", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "10", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "10", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "10", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "10", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "10", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "11", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "11", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "11", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "11", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "11", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "11", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "12", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "12", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "12", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "12", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "12", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "12", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "13", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "13", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "13", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "13", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "13", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "13", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "14", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "14", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "14", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "14", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "14", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "14", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "15", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "15", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "15", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "15", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "15", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "15", + "facing": "south" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "south", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "0", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "0", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "0", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "0", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "0", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "0", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "1", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "1", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "1", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "1", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "1", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "1", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "2", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "2", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "2", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "2", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "2", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "2", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "3", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "3", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "3", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "3", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "3", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "3", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "4", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "4", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "4", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "4", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "4", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "4", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "5", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "5", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "5", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "5", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "5", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "5", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "6", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "6", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "6", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "6", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "6", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "6", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "7", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "7", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "7", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "7", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "7", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "7", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "8", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "8", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "8", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "8", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "8", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "8", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "9", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "9", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "9", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "9", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "9", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "9", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "10", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "10", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "10", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "10", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "10", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "10", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "11", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "11", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "11", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "11", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "11", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "11", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "12", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "12", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "12", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "12", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "12", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "12", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "13", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "13", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "13", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "13", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "13", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "13", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "14", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "14", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "14", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "14", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "14", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "14", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "15", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "15", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "15", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "15", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "15", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "15", + "facing": "west" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "west", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "0", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "0", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "0", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "0", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "0", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "0", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "1", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "1", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "1", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "1", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "1", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "1", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "2", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "2", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "2", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "2", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "2", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "2", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "3", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "3", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "3", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "3", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "3", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "3", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "4", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "4", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "4", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "4", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "4", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "4", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "5", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "5", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "5", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "5", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "5", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "5", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "6", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "6", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "6", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "6", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "6", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "6", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "7", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "7", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "7", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "7", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "7", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "7", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "8", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "8", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "8", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "8", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "8", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "8", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "9", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "9", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "9", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "9", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "9", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "9", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "10", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "10", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "10", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "10", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "10", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "10", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "11", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "11", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "11", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "11", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "11", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "11", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "12", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "12", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "12", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "12", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "12", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "12", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "13", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "13", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "13", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "13", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "13", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "13", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "14", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "14", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "14", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "14", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "14", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "14", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "inactive", + "power": "15", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "inactive", + "power": "15", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "active", + "power": "15", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "active", + "power": "15", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "sculk_sensor_phase": "cooldown", + "power": "15", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "sculk_sensor_phase": "cooldown", + "power": "15", + "facing": "east" + }, + "Name": "minecraft:calibrated_sculk_sensor" + }, + "bedrock_state": { + "bedrock_identifier": "calibrated_sculk_sensor", + "state": { + "minecraft:cardinal_direction": "east", + "sculk_sensor_phase": 2 + } + } + }, + { + "java_state": { + "Name": "minecraft:sculk" + }, + "bedrock_state": { + "bedrock_identifier": "sculk" + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 63 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 55 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 63 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 55 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 61 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 53 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 61 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 53 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 59 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 51 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 59 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 51 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 57 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 49 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 57 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 49 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 47 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 39 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 47 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 39 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 45 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 37 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 45 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 37 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 43 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 35 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 43 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 35 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 41 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 33 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 41 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 33 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 31 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 23 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 31 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 23 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 29 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 21 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 29 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 21 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 27 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 19 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 27 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 19 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 25 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 17 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 25 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 17 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 15 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 7 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 13 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 5 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 11 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 3 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 9 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "true" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 1 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 62 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 54 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 62 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 54 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 60 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 52 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 60 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 52 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 58 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 50 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 58 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 50 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 56 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 48 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 56 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 48 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 46 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 38 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 46 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 38 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 44 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 36 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 44 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 36 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 42 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 34 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 42 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 34 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 40 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 32 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 40 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "true", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 32 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 30 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 22 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 30 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 22 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 28 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 20 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 28 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 20 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 26 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 18 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 26 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 18 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 24 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 16 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 24 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "true", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 16 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 14 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 6 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 12 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "true", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 4 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 10 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "true", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 2 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "true", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 0 + } + } + }, + { + "java_state": { + "Properties": { + "west": "true", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 8 + } + } + }, + { + "java_state": { + "Properties": { + "west": "false", + "waterlogged": "false", + "up": "false", + "south": "false", + "north": "false", + "east": "false", + "down": "false" + }, + "Name": "minecraft:sculk_vein" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_vein", + "state": { + "multi_face_direction_bits": 0 + } + } + }, + { + "java_state": { + "Properties": { + "bloom": "true" + }, + "Name": "minecraft:sculk_catalyst" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_catalyst", + "state": { + "bloom": true + } + } + }, + { + "java_state": { + "Properties": { + "bloom": "false" + }, + "Name": "minecraft:sculk_catalyst" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_catalyst", + "state": { + "bloom": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shrieking": "true", + "can_summon": "true" + }, + "Name": "minecraft:sculk_shrieker" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_shrieker", + "state": { + "active": true, + "can_summon": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shrieking": "true", + "can_summon": "true" + }, + "Name": "minecraft:sculk_shrieker" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_shrieker", + "state": { + "active": true, + "can_summon": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shrieking": "false", + "can_summon": "true" + }, + "Name": "minecraft:sculk_shrieker" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_shrieker", + "state": { + "active": false, + "can_summon": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shrieking": "false", + "can_summon": "true" + }, + "Name": "minecraft:sculk_shrieker" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_shrieker", + "state": { + "active": false, + "can_summon": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shrieking": "true", + "can_summon": "false" + }, + "Name": "minecraft:sculk_shrieker" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_shrieker", + "state": { + "active": true, + "can_summon": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shrieking": "true", + "can_summon": "false" + }, + "Name": "minecraft:sculk_shrieker" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_shrieker", + "state": { + "active": true, + "can_summon": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shrieking": "false", + "can_summon": "false" + }, + "Name": "minecraft:sculk_shrieker" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_shrieker", + "state": { + "active": false, + "can_summon": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shrieking": "false", + "can_summon": "false" + }, + "Name": "minecraft:sculk_shrieker" + }, + "bedrock_state": { + "bedrock_identifier": "sculk_shrieker", + "state": { + "active": false, + "can_summon": false + } + } + }, + { + "java_state": { + "Name": "minecraft:copper_block" + }, + "bedrock_state": { + "bedrock_identifier": "copper_block" + } + }, + { + "java_state": { + "Name": "minecraft:exposed_copper" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper" + } + }, + { + "java_state": { + "Name": "minecraft:weathered_copper" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper" + } + }, + { + "java_state": { + "Name": "minecraft:oxidized_copper" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper" + } + }, + { + "java_state": { + "Name": "minecraft:copper_ore" + }, + "bedrock_state": { + "bedrock_identifier": "copper_ore" + } + }, + { + "java_state": { + "Name": "minecraft:deepslate_copper_ore" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_copper_ore" + } + }, + { + "java_state": { + "Name": "minecraft:oxidized_cut_copper" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper" + } + }, + { + "java_state": { + "Name": "minecraft:weathered_cut_copper" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper" + } + }, + { + "java_state": { + "Name": "minecraft:exposed_cut_copper" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper" + } + }, + { + "java_state": { + "Name": "minecraft:cut_copper" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper" + } + }, + { + "java_state": { + "Name": "minecraft:oxidized_chiseled_copper" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_chiseled_copper" + } + }, + { + "java_state": { + "Name": "minecraft:weathered_chiseled_copper" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_chiseled_copper" + } + }, + { + "java_state": { + "Name": "minecraft:exposed_chiseled_copper" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_chiseled_copper" + } + }, + { + "java_state": { + "Name": "minecraft:chiseled_copper" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_copper" + } + }, + { + "java_state": { + "Name": "minecraft:waxed_oxidized_chiseled_copper" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_chiseled_copper" + } + }, + { + "java_state": { + "Name": "minecraft:waxed_weathered_chiseled_copper" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_chiseled_copper" + } + }, + { + "java_state": { + "Name": "minecraft:waxed_exposed_chiseled_copper" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_chiseled_copper" + } + }, + { + "java_state": { + "Name": "minecraft:waxed_chiseled_copper" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_chiseled_copper" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:oxidized_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:oxidized_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:oxidized_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:oxidized_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:oxidized_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:oxidized_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:weathered_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:weathered_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:weathered_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:weathered_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:weathered_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:weathered_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:exposed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:exposed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:exposed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:exposed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:exposed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:exposed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Name": "minecraft:waxed_copper_block" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper" + } + }, + { + "java_state": { + "Name": "minecraft:waxed_weathered_copper" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper" + } + }, + { + "java_state": { + "Name": "minecraft:waxed_exposed_copper" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper" + } + }, + { + "java_state": { + "Name": "minecraft:waxed_oxidized_copper" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper" + } + }, + { + "java_state": { + "Name": "minecraft:waxed_oxidized_cut_copper" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper" + } + }, + { + "java_state": { + "Name": "minecraft:waxed_weathered_cut_copper" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper" + } + }, + { + "java_state": { + "Name": "minecraft:waxed_exposed_cut_copper" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper" + } + }, + { + "java_state": { + "Name": "minecraft:waxed_cut_copper" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_cut_copper_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:waxed_oxidized_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:waxed_weathered_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:waxed_weathered_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:waxed_weathered_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:waxed_weathered_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:waxed_weathered_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:waxed_weathered_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:waxed_exposed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:waxed_exposed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:waxed_exposed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:waxed_exposed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:waxed_exposed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:waxed_exposed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:waxed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:waxed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:waxed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:waxed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:waxed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:waxed_cut_copper_slab" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_double_cut_copper_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": true, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "left", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "true", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "open": "false", + "hinge": "right", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_door" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_door", + "state": { + "upper_block_bit": false, + "open_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_exposed_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_oxidized_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "true", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "open": "false", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:waxed_weathered_copper_trapdoor" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_trapdoor", + "state": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:exposed_copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:exposed_copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:weathered_copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:weathered_copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:oxidized_copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:oxidized_copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:waxed_copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:waxed_copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:waxed_exposed_copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:waxed_exposed_copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:waxed_weathered_copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:waxed_weathered_copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:waxed_oxidized_copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_grate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:waxed_oxidized_copper_grate" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_grate" + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "true" + }, + "Name": "minecraft:copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "copper_bulb", + "state": { + "powered_bit": true, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "true" + }, + "Name": "minecraft:copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "copper_bulb", + "state": { + "powered_bit": false, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "false" + }, + "Name": "minecraft:copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "copper_bulb", + "state": { + "powered_bit": true, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "false" + }, + "Name": "minecraft:copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "copper_bulb", + "state": { + "powered_bit": false, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "true" + }, + "Name": "minecraft:exposed_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_bulb", + "state": { + "powered_bit": true, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "true" + }, + "Name": "minecraft:exposed_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_bulb", + "state": { + "powered_bit": false, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "false" + }, + "Name": "minecraft:exposed_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_bulb", + "state": { + "powered_bit": true, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "false" + }, + "Name": "minecraft:exposed_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "exposed_copper_bulb", + "state": { + "powered_bit": false, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "true" + }, + "Name": "minecraft:weathered_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_bulb", + "state": { + "powered_bit": true, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "true" + }, + "Name": "minecraft:weathered_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_bulb", + "state": { + "powered_bit": false, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "false" + }, + "Name": "minecraft:weathered_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_bulb", + "state": { + "powered_bit": true, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "false" + }, + "Name": "minecraft:weathered_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "weathered_copper_bulb", + "state": { + "powered_bit": false, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "true" + }, + "Name": "minecraft:oxidized_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_bulb", + "state": { + "powered_bit": true, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "true" + }, + "Name": "minecraft:oxidized_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_bulb", + "state": { + "powered_bit": false, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "false" + }, + "Name": "minecraft:oxidized_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_bulb", + "state": { + "powered_bit": true, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "false" + }, + "Name": "minecraft:oxidized_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "oxidized_copper_bulb", + "state": { + "powered_bit": false, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "true" + }, + "Name": "minecraft:waxed_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_bulb", + "state": { + "powered_bit": true, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "true" + }, + "Name": "minecraft:waxed_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_bulb", + "state": { + "powered_bit": false, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "false" + }, + "Name": "minecraft:waxed_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_bulb", + "state": { + "powered_bit": true, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "false" + }, + "Name": "minecraft:waxed_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_copper_bulb", + "state": { + "powered_bit": false, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "true" + }, + "Name": "minecraft:waxed_exposed_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_bulb", + "state": { + "powered_bit": true, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "true" + }, + "Name": "minecraft:waxed_exposed_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_bulb", + "state": { + "powered_bit": false, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "false" + }, + "Name": "minecraft:waxed_exposed_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_bulb", + "state": { + "powered_bit": true, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "false" + }, + "Name": "minecraft:waxed_exposed_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_exposed_copper_bulb", + "state": { + "powered_bit": false, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "true" + }, + "Name": "minecraft:waxed_weathered_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_bulb", + "state": { + "powered_bit": true, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "true" + }, + "Name": "minecraft:waxed_weathered_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_bulb", + "state": { + "powered_bit": false, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "false" + }, + "Name": "minecraft:waxed_weathered_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_bulb", + "state": { + "powered_bit": true, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "false" + }, + "Name": "minecraft:waxed_weathered_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_weathered_copper_bulb", + "state": { + "powered_bit": false, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "true" + }, + "Name": "minecraft:waxed_oxidized_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_bulb", + "state": { + "powered_bit": true, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "true" + }, + "Name": "minecraft:waxed_oxidized_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_bulb", + "state": { + "powered_bit": false, + "lit": true + } + } + }, + { + "java_state": { + "Properties": { + "powered": "true", + "lit": "false" + }, + "Name": "minecraft:waxed_oxidized_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_bulb", + "state": { + "powered_bit": true, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "powered": "false", + "lit": "false" + }, + "Name": "minecraft:waxed_oxidized_copper_bulb" + }, + "bedrock_state": { + "bedrock_identifier": "waxed_oxidized_copper_bulb", + "state": { + "powered_bit": false, + "lit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "facing": "north" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "facing": "north" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "facing": "north" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "facing": "north" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "facing": "east" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "facing": "east" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "facing": "east" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "facing": "east" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 5 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "facing": "south" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "facing": "south" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "facing": "south" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "facing": "south" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "facing": "west" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "facing": "west" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "facing": "west" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "facing": "west" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 4 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "facing": "up" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "facing": "up" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "facing": "up" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "facing": "up" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "true", + "facing": "down" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "true", + "facing": "down" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "powered": "false", + "facing": "down" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "powered": "false", + "facing": "down" + }, + "Name": "minecraft:lightning_rod" + }, + "bedrock_state": { + "bedrock_identifier": "lightning_rod", + "state": { + "facing_direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "vertical_direction": "up", + "thickness": "tip_merge" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": false, + "dripstone_thickness": "merge" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "vertical_direction": "up", + "thickness": "tip_merge" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": false, + "dripstone_thickness": "merge" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "vertical_direction": "down", + "thickness": "tip_merge" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": true, + "dripstone_thickness": "merge" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "vertical_direction": "down", + "thickness": "tip_merge" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": true, + "dripstone_thickness": "merge" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "vertical_direction": "up", + "thickness": "tip" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": false, + "dripstone_thickness": "tip" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "vertical_direction": "up", + "thickness": "tip" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": false, + "dripstone_thickness": "tip" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "vertical_direction": "down", + "thickness": "tip" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": true, + "dripstone_thickness": "tip" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "vertical_direction": "down", + "thickness": "tip" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": true, + "dripstone_thickness": "tip" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "vertical_direction": "up", + "thickness": "frustum" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": false, + "dripstone_thickness": "frustum" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "vertical_direction": "up", + "thickness": "frustum" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": false, + "dripstone_thickness": "frustum" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "vertical_direction": "down", + "thickness": "frustum" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": true, + "dripstone_thickness": "frustum" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "vertical_direction": "down", + "thickness": "frustum" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": true, + "dripstone_thickness": "frustum" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "vertical_direction": "up", + "thickness": "middle" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": false, + "dripstone_thickness": "middle" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "vertical_direction": "up", + "thickness": "middle" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": false, + "dripstone_thickness": "middle" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "vertical_direction": "down", + "thickness": "middle" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": true, + "dripstone_thickness": "middle" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "vertical_direction": "down", + "thickness": "middle" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": true, + "dripstone_thickness": "middle" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "vertical_direction": "up", + "thickness": "base" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": false, + "dripstone_thickness": "base" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "vertical_direction": "up", + "thickness": "base" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": false, + "dripstone_thickness": "base" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "vertical_direction": "down", + "thickness": "base" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": true, + "dripstone_thickness": "base" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "vertical_direction": "down", + "thickness": "base" + }, + "Name": "minecraft:pointed_dripstone" + }, + "bedrock_state": { + "bedrock_identifier": "pointed_dripstone", + "state": { + "hanging": true, + "dripstone_thickness": "base" + } + } + }, + { + "java_state": { + "Name": "minecraft:dripstone_block" + }, + "bedrock_state": { + "bedrock_identifier": "dripstone_block" + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "0" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "0" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "1" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "1" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 1 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "2" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "2" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 2 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "3" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "3" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 3 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "4" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "4" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 4 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "5" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "5" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 5 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "6" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "6" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 6 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "7" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "7" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 7 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "8" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "8" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 8 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "9" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "9" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 9 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "10" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "10" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 10 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "11" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "11" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 11 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "12" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "12" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 12 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "13" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "13" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 13 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "14" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "14" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 14 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "15" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "15" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 15 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "16" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 16 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "16" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 16 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "17" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 17 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "17" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 17 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "18" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 18 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "18" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 18 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "19" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 19 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "19" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 19 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "20" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 20 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "20" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 20 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "21" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 21 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "21" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 21 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "22" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 22 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "22" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 22 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "23" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 23 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "23" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 23 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "24" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 24 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "24" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 24 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true", + "age": "25" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_head_with_berries", + "state": { + "growing_plant_age": 25 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false", + "age": "25" + }, + "Name": "minecraft:cave_vines" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 25 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "true" + }, + "Name": "minecraft:cave_vines_plant" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines_body_with_berries", + "state": { + "growing_plant_age": 0 + } + } + }, + { + "java_state": { + "Properties": { + "berries": "false" + }, + "Name": "minecraft:cave_vines_plant" + }, + "bedrock_state": { + "bedrock_identifier": "cave_vines", + "state": { + "growing_plant_age": 0 + } + } + }, + { + "java_state": { + "Name": "minecraft:spore_blossom" + }, + "bedrock_state": { + "bedrock_identifier": "spore_blossom" + } + }, + { + "java_state": { + "Name": "minecraft:azalea" + }, + "bedrock_state": { + "bedrock_identifier": "azalea" + } + }, + { + "java_state": { + "Name": "minecraft:flowering_azalea" + }, + "bedrock_state": { + "bedrock_identifier": "flowering_azalea" + } + }, + { + "java_state": { + "Name": "minecraft:moss_carpet" + }, + "bedrock_state": { + "bedrock_identifier": "moss_carpet" + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "1", + "facing": "north" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "north", + "growth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "2", + "facing": "north" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "north", + "growth": 1 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "3", + "facing": "north" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "north", + "growth": 2 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "4", + "facing": "north" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "north", + "growth": 3 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "1", + "facing": "south" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "south", + "growth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "2", + "facing": "south" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "south", + "growth": 1 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "3", + "facing": "south" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "south", + "growth": 2 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "4", + "facing": "south" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "south", + "growth": 3 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "1", + "facing": "west" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "west", + "growth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "2", + "facing": "west" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "west", + "growth": 1 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "3", + "facing": "west" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "west", + "growth": 2 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "4", + "facing": "west" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "west", + "growth": 3 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "1", + "facing": "east" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "east", + "growth": 0 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "2", + "facing": "east" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "east", + "growth": 1 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "3", + "facing": "east" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "east", + "growth": 2 + } + } + }, + { + "java_state": { + "Properties": { + "flower_amount": "4", + "facing": "east" + }, + "Name": "minecraft:pink_petals" + }, + "bedrock_state": { + "bedrock_identifier": "pink_petals", + "state": { + "minecraft:cardinal_direction": "east", + "growth": 3 + } + } + }, + { + "java_state": { + "Name": "minecraft:moss_block" + }, + "bedrock_state": { + "bedrock_identifier": "moss_block" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "none", + "facing": "north" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "none", + "facing": "north" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "unstable", + "facing": "north" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "unstable", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "unstable", + "facing": "north" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "unstable", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "partial", + "facing": "north" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "partial_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "partial", + "facing": "north" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "partial_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "full", + "facing": "north" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "full_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "full", + "facing": "north" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "full_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "none", + "facing": "south" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "none", + "facing": "south" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "unstable", + "facing": "south" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "unstable", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "unstable", + "facing": "south" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "unstable", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "partial", + "facing": "south" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "partial_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "partial", + "facing": "south" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "partial_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "full", + "facing": "south" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "full_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "full", + "facing": "south" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "full_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "none", + "facing": "west" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "none", + "facing": "west" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "unstable", + "facing": "west" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "unstable", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "unstable", + "facing": "west" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "unstable", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "partial", + "facing": "west" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "partial_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "partial", + "facing": "west" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "partial_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "full", + "facing": "west" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "full_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "full", + "facing": "west" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "full_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "none", + "facing": "east" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "none", + "facing": "east" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "unstable", + "facing": "east" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "unstable", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "unstable", + "facing": "east" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "unstable", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "partial", + "facing": "east" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "partial_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "partial", + "facing": "east" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "partial_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "tilt": "full", + "facing": "east" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "full_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "tilt": "full", + "facing": "east" + }, + "Name": "minecraft:big_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "full_tilt", + "big_dripleaf_head": true, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north" + }, + "Name": "minecraft:big_dripleaf_stem" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": false, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north" + }, + "Name": "minecraft:big_dripleaf_stem" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": false, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south" + }, + "Name": "minecraft:big_dripleaf_stem" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": false, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south" + }, + "Name": "minecraft:big_dripleaf_stem" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": false, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west" + }, + "Name": "minecraft:big_dripleaf_stem" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": false, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west" + }, + "Name": "minecraft:big_dripleaf_stem" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": false, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east" + }, + "Name": "minecraft:big_dripleaf_stem" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": false, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east" + }, + "Name": "minecraft:big_dripleaf_stem" + }, + "bedrock_state": { + "bedrock_identifier": "big_dripleaf", + "state": { + "big_dripleaf_tilt": "none", + "big_dripleaf_head": false, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "half": "upper", + "facing": "north" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "half": "lower", + "facing": "north" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "half": "upper", + "facing": "south" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "half": "lower", + "facing": "south" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "half": "upper", + "facing": "west" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "half": "lower", + "facing": "west" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "half": "upper", + "facing": "east" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "half": "lower", + "facing": "east" + }, + "Name": "minecraft:small_dripleaf" + }, + "bedrock_state": { + "bedrock_identifier": "small_dripleaf_block", + "state": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:hanging_roots" + }, + "bedrock_state": { + "bedrock_identifier": "hanging_roots" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:hanging_roots" + }, + "bedrock_state": { + "bedrock_identifier": "hanging_roots" + } + }, + { + "java_state": { + "Name": "minecraft:rooted_dirt" + }, + "bedrock_state": { + "bedrock_identifier": "dirt_with_roots" + } + }, + { + "java_state": { + "Name": "minecraft:mud" + }, + "bedrock_state": { + "bedrock_identifier": "mud" + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:deepslate" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:deepslate" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:deepslate" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Name": "minecraft:cobbled_deepslate" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:cobbled_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:cobbled_deepslate_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:cobbled_deepslate_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:cobbled_deepslate_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:cobbled_deepslate_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:cobbled_deepslate_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:cobbled_deepslate_slab" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:cobbled_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "cobbled_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Name": "minecraft:polished_deepslate" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:polished_deepslate_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:polished_deepslate_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:polished_deepslate_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:polished_deepslate_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:polished_deepslate_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:polished_deepslate_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:polished_deepslate_slab" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:polished_deepslate_wall" + }, + "bedrock_state": { + "bedrock_identifier": "polished_deepslate_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Name": "minecraft:deepslate_tiles" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tiles" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_tile_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:deepslate_tile_slab" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:deepslate_tile_slab" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:deepslate_tile_slab" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:deepslate_tile_slab" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:deepslate_tile_slab" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:deepslate_tile_slab" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_tile_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_tile_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Name": "minecraft:deepslate_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_bricks" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "north" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 3, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "south" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 2, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "west" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 1, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "top", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": true + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "straight", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "inner_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_left", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "shape": "outer_right", + "half": "bottom", + "facing": "east" + }, + "Name": "minecraft:deepslate_brick_stairs" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_stairs", + "state": { + "weirdo_direction": 0, + "upside_down_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "top" + }, + "Name": "minecraft:deepslate_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "top" + }, + "Name": "minecraft:deepslate_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_slab", + "state": { + "minecraft:vertical_half": "top" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "bottom" + }, + "Name": "minecraft:deepslate_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "bottom" + }, + "Name": "minecraft:deepslate_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "type": "double" + }, + "Name": "minecraft:deepslate_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "type": "double" + }, + "Name": "minecraft:deepslate_brick_slab" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_double_slab", + "state": { + "minecraft:vertical_half": "bottom" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "none" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "low" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "none", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "low", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "none", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "low", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "true", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "true", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "none", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "low", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Properties": { + "west": "tall", + "waterlogged": "false", + "up": "false", + "south": "tall", + "north": "tall", + "east": "tall" + }, + "Name": "minecraft:deepslate_brick_wall" + }, + "bedrock_state": { + "bedrock_identifier": "deepslate_brick_wall", + "state": { + "wall_connection_type_east": "tall", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + } + }, + { + "java_state": { + "Name": "minecraft:chiseled_deepslate" + }, + "bedrock_state": { + "bedrock_identifier": "chiseled_deepslate" + } + }, + { + "java_state": { + "Name": "minecraft:cracked_deepslate_bricks" + }, + "bedrock_state": { + "bedrock_identifier": "cracked_deepslate_bricks" + } + }, + { + "java_state": { + "Name": "minecraft:cracked_deepslate_tiles" + }, + "bedrock_state": { + "bedrock_identifier": "cracked_deepslate_tiles" + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:infested_deepslate" + }, + "bedrock_state": { + "bedrock_identifier": "infested_deepslate", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:infested_deepslate" + }, + "bedrock_state": { + "bedrock_identifier": "infested_deepslate", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:infested_deepslate" + }, + "bedrock_state": { + "bedrock_identifier": "infested_deepslate", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Name": "minecraft:smooth_basalt" + }, + "bedrock_state": { + "bedrock_identifier": "smooth_basalt" + } + }, + { + "java_state": { + "Name": "minecraft:raw_iron_block" + }, + "bedrock_state": { + "bedrock_identifier": "raw_iron_block" + } + }, + { + "java_state": { + "Name": "minecraft:raw_copper_block" + }, + "bedrock_state": { + "bedrock_identifier": "raw_copper_block" + } + }, + { + "java_state": { + "Name": "minecraft:raw_gold_block" + }, + "bedrock_state": { + "bedrock_identifier": "raw_gold_block" + } + }, + { + "java_state": { + "Name": "minecraft:potted_azalea_bush" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Name": "minecraft:potted_flowering_azalea_bush" + }, + "bedrock_state": { + "bedrock_identifier": "flower_pot", + "state": { + "update_bit": false + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:ochre_froglight" + }, + "bedrock_state": { + "bedrock_identifier": "ochre_froglight", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:ochre_froglight" + }, + "bedrock_state": { + "bedrock_identifier": "ochre_froglight", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:ochre_froglight" + }, + "bedrock_state": { + "bedrock_identifier": "ochre_froglight", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:verdant_froglight" + }, + "bedrock_state": { + "bedrock_identifier": "verdant_froglight", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:verdant_froglight" + }, + "bedrock_state": { + "bedrock_identifier": "verdant_froglight", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:verdant_froglight" + }, + "bedrock_state": { + "bedrock_identifier": "verdant_froglight", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "x" + }, + "Name": "minecraft:pearlescent_froglight" + }, + "bedrock_state": { + "bedrock_identifier": "pearlescent_froglight", + "state": { + "pillar_axis": "x" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "y" + }, + "Name": "minecraft:pearlescent_froglight" + }, + "bedrock_state": { + "bedrock_identifier": "pearlescent_froglight", + "state": { + "pillar_axis": "y" + } + } + }, + { + "java_state": { + "Properties": { + "axis": "z" + }, + "Name": "minecraft:pearlescent_froglight" + }, + "bedrock_state": { + "bedrock_identifier": "pearlescent_froglight", + "state": { + "pillar_axis": "z" + } + } + }, + { + "java_state": { + "Name": "minecraft:frogspawn" + }, + "bedrock_state": { + "bedrock_identifier": "frog_spawn" + } + }, + { + "java_state": { + "Name": "minecraft:reinforced_deepslate" + }, + "bedrock_state": { + "bedrock_identifier": "reinforced_deepslate" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north", + "cracked": "true" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north", + "cracked": "true" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south", + "cracked": "true" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south", + "cracked": "true" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west", + "cracked": "true" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west", + "cracked": "true" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east", + "cracked": "true" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east", + "cracked": "true" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "north", + "cracked": "false" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "north", + "cracked": "false" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 0 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "south", + "cracked": "false" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "south", + "cracked": "false" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 2 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "west", + "cracked": "false" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "west", + "cracked": "false" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 3 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true", + "facing": "east", + "cracked": "false" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false", + "facing": "east", + "cracked": "false" + }, + "Name": "minecraft:decorated_pot" + }, + "bedrock_state": { + "bedrock_identifier": "decorated_pot", + "state": { + "direction": 1 + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "down_east", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "down_east", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "down_east", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "down_east", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "down_north", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "down_north", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "down_north", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "down_north", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "down_south", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "down_south", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "down_south", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "down_south", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "down_west", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "down_west", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "down_west", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "down_west", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "up_east", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "up_east", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "up_east", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "up_east", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "up_north", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "up_north", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "up_north", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "up_north", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "up_south", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "up_south", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "up_south", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "up_south", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "up_west", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "up_west", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "up_west", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "up_west", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "west_up", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "west_up", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "west_up", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "west_up", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "east_up", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "east_up", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "east_up", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "east_up", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "north_up", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "north_up", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "north_up", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "north_up", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "south_up", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "south_up", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "south_up", + "crafting": "true" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "south_up", + "crafting": true + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "down_east", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "down_east", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "down_east", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "down_east", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "down_north", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "down_north", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "down_north", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "down_north", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "down_south", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "down_south", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "down_south", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "down_south", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "down_west", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "down_west", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "down_west", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "down_west", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "up_east", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "up_east", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "up_east", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "up_east", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "up_north", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "up_north", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "up_north", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "up_north", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "up_south", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "up_south", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "up_south", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "up_south", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "up_west", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "up_west", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "up_west", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "up_west", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "west_up", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "west_up", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "west_up", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "west_up", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "east_up", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "east_up", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "east_up", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "east_up", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "north_up", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "north_up", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "north_up", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "north_up", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "true", + "orientation": "south_up", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": true, + "orientation": "south_up", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "triggered": "false", + "orientation": "south_up", + "crafting": "false" + }, + "Name": "minecraft:crafter" + }, + "bedrock_state": { + "bedrock_identifier": "crafter", + "state": { + "triggered_bit": false, + "orientation": "south_up", + "crafting": false + } + } + }, + { + "java_state": { + "Properties": { + "trial_spawner_state": "inactive", + "ominous": "true" + }, + "Name": "minecraft:trial_spawner" + }, + "bedrock_state": { + "bedrock_identifier": "trial_spawner", + "state": { + "ominous": true, + "trial_spawner_state": 0 + } + } + }, + { + "java_state": { + "Properties": { + "trial_spawner_state": "waiting_for_players", + "ominous": "true" + }, + "Name": "minecraft:trial_spawner" + }, + "bedrock_state": { + "bedrock_identifier": "trial_spawner", + "state": { + "ominous": true, + "trial_spawner_state": 1 + } + } + }, + { + "java_state": { + "Properties": { + "trial_spawner_state": "active", + "ominous": "true" + }, + "Name": "minecraft:trial_spawner" + }, + "bedrock_state": { + "bedrock_identifier": "trial_spawner", + "state": { + "ominous": true, + "trial_spawner_state": 2 + } + } + }, + { + "java_state": { + "Properties": { + "trial_spawner_state": "waiting_for_reward_ejection", + "ominous": "true" + }, + "Name": "minecraft:trial_spawner" + }, + "bedrock_state": { + "bedrock_identifier": "trial_spawner", + "state": { + "ominous": true, + "trial_spawner_state": 3 + } + } + }, + { + "java_state": { + "Properties": { + "trial_spawner_state": "ejecting_reward", + "ominous": "true" + }, + "Name": "minecraft:trial_spawner" + }, + "bedrock_state": { + "bedrock_identifier": "trial_spawner", + "state": { + "ominous": true, + "trial_spawner_state": 4 + } + } + }, + { + "java_state": { + "Properties": { + "trial_spawner_state": "cooldown", + "ominous": "true" + }, + "Name": "minecraft:trial_spawner" + }, + "bedrock_state": { + "bedrock_identifier": "trial_spawner", + "state": { + "ominous": true, + "trial_spawner_state": 5 + } + } + }, + { + "java_state": { + "Properties": { + "trial_spawner_state": "inactive", + "ominous": "false" + }, + "Name": "minecraft:trial_spawner" + }, + "bedrock_state": { + "bedrock_identifier": "trial_spawner", + "state": { + "ominous": false, + "trial_spawner_state": 0 + } + } + }, + { + "java_state": { + "Properties": { + "trial_spawner_state": "waiting_for_players", + "ominous": "false" + }, + "Name": "minecraft:trial_spawner" + }, + "bedrock_state": { + "bedrock_identifier": "trial_spawner", + "state": { + "ominous": false, + "trial_spawner_state": 1 + } + } + }, + { + "java_state": { + "Properties": { + "trial_spawner_state": "active", + "ominous": "false" + }, + "Name": "minecraft:trial_spawner" + }, + "bedrock_state": { + "bedrock_identifier": "trial_spawner", + "state": { + "ominous": false, + "trial_spawner_state": 2 + } + } + }, + { + "java_state": { + "Properties": { + "trial_spawner_state": "waiting_for_reward_ejection", + "ominous": "false" + }, + "Name": "minecraft:trial_spawner" + }, + "bedrock_state": { + "bedrock_identifier": "trial_spawner", + "state": { + "ominous": false, + "trial_spawner_state": 3 + } + } + }, + { + "java_state": { + "Properties": { + "trial_spawner_state": "ejecting_reward", + "ominous": "false" + }, + "Name": "minecraft:trial_spawner" + }, + "bedrock_state": { + "bedrock_identifier": "trial_spawner", + "state": { + "ominous": false, + "trial_spawner_state": 4 + } + } + }, + { + "java_state": { + "Properties": { + "trial_spawner_state": "cooldown", + "ominous": "false" + }, + "Name": "minecraft:trial_spawner" + }, + "bedrock_state": { + "bedrock_identifier": "trial_spawner", + "state": { + "ominous": false, + "trial_spawner_state": 5 + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "inactive", + "ominous": "true", + "facing": "north" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "inactive", + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "active", + "ominous": "true", + "facing": "north" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "active", + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "unlocking", + "ominous": "true", + "facing": "north" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "unlocking", + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "ejecting", + "ominous": "true", + "facing": "north" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "ejecting", + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "inactive", + "ominous": "false", + "facing": "north" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "inactive", + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "active", + "ominous": "false", + "facing": "north" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "active", + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "unlocking", + "ominous": "false", + "facing": "north" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "unlocking", + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "ejecting", + "ominous": "false", + "facing": "north" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "ejecting", + "minecraft:cardinal_direction": "north" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "inactive", + "ominous": "true", + "facing": "south" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "inactive", + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "active", + "ominous": "true", + "facing": "south" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "active", + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "unlocking", + "ominous": "true", + "facing": "south" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "unlocking", + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "ejecting", + "ominous": "true", + "facing": "south" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "ejecting", + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "inactive", + "ominous": "false", + "facing": "south" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "inactive", + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "active", + "ominous": "false", + "facing": "south" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "active", + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "unlocking", + "ominous": "false", + "facing": "south" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "unlocking", + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "ejecting", + "ominous": "false", + "facing": "south" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "ejecting", + "minecraft:cardinal_direction": "south" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "inactive", + "ominous": "true", + "facing": "west" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "inactive", + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "active", + "ominous": "true", + "facing": "west" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "active", + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "unlocking", + "ominous": "true", + "facing": "west" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "unlocking", + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "ejecting", + "ominous": "true", + "facing": "west" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "ejecting", + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "inactive", + "ominous": "false", + "facing": "west" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "inactive", + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "active", + "ominous": "false", + "facing": "west" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "active", + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "unlocking", + "ominous": "false", + "facing": "west" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "unlocking", + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "ejecting", + "ominous": "false", + "facing": "west" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "ejecting", + "minecraft:cardinal_direction": "west" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "inactive", + "ominous": "true", + "facing": "east" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "inactive", + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "active", + "ominous": "true", + "facing": "east" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "active", + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "unlocking", + "ominous": "true", + "facing": "east" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "unlocking", + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "ejecting", + "ominous": "true", + "facing": "east" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": true, + "vault_state": "ejecting", + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "inactive", + "ominous": "false", + "facing": "east" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "inactive", + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "active", + "ominous": "false", + "facing": "east" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "active", + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "unlocking", + "ominous": "false", + "facing": "east" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "unlocking", + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "vault_state": "ejecting", + "ominous": "false", + "facing": "east" + }, + "Name": "minecraft:vault" + }, + "bedrock_state": { + "bedrock_identifier": "vault", + "state": { + "ominous": false, + "vault_state": "ejecting", + "minecraft:cardinal_direction": "east" + } + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "true" + }, + "Name": "minecraft:heavy_core" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_core" + } + }, + { + "java_state": { + "Properties": { + "waterlogged": "false" + }, + "Name": "minecraft:heavy_core" + }, + "bedrock_state": { + "bedrock_identifier": "heavy_core" + } + } + ], + "DataVersion": 3835 +} \ No newline at end of file diff --git a/platforms/allay/src/main/resources/mapping/items.json b/platforms/allay/src/main/resources/mapping/items.json new file mode 100644 index 000000000..3e25907e1 --- /dev/null +++ b/platforms/allay/src/main/resources/mapping/items.json @@ -0,0 +1,7347 @@ +{ + "minecraft:air": { + "bedrock_identifier": "minecraft:air", + "bedrock_data": 0 + }, + "minecraft:stone": { + "bedrock_identifier": "minecraft:stone", + "bedrock_data": 0, + "firstBlockRuntimeId": 1 + }, + "minecraft:granite": { + "bedrock_identifier": "minecraft:granite", + "bedrock_data": 1, + "firstBlockRuntimeId": 2 + }, + "minecraft:polished_granite": { + "bedrock_identifier": "minecraft:polished_granite", + "bedrock_data": 2, + "firstBlockRuntimeId": 3 + }, + "minecraft:diorite": { + "bedrock_identifier": "minecraft:diorite", + "bedrock_data": 3, + "firstBlockRuntimeId": 4 + }, + "minecraft:polished_diorite": { + "bedrock_identifier": "minecraft:polished_diorite", + "bedrock_data": 4, + "firstBlockRuntimeId": 5 + }, + "minecraft:andesite": { + "bedrock_identifier": "minecraft:andesite", + "bedrock_data": 5, + "firstBlockRuntimeId": 6 + }, + "minecraft:polished_andesite": { + "bedrock_identifier": "minecraft:polished_andesite", + "bedrock_data": 6, + "firstBlockRuntimeId": 7 + }, + "minecraft:deepslate": { + "bedrock_identifier": "minecraft:deepslate", + "bedrock_data": 0, + "firstBlockRuntimeId": 24904, + "lastBlockRuntimeId": 24906 + }, + "minecraft:cobbled_deepslate": { + "bedrock_identifier": "minecraft:cobbled_deepslate", + "bedrock_data": 0, + "firstBlockRuntimeId": 24907 + }, + "minecraft:polished_deepslate": { + "bedrock_identifier": "minecraft:polished_deepslate", + "bedrock_data": 0, + "firstBlockRuntimeId": 25318 + }, + "minecraft:calcite": { + "bedrock_identifier": "minecraft:calcite", + "bedrock_data": 0, + "firstBlockRuntimeId": 22316 + }, + "minecraft:tuff": { + "bedrock_identifier": "minecraft:tuff", + "bedrock_data": 0, + "firstBlockRuntimeId": 21081 + }, + "minecraft:tuff_slab": { + "bedrock_identifier": "minecraft:tuff_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 21082, + "lastBlockRuntimeId": 21087 + }, + "minecraft:tuff_stairs": { + "bedrock_identifier": "minecraft:tuff_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 21088, + "lastBlockRuntimeId": 21167 + }, + "minecraft:tuff_wall": { + "bedrock_identifier": "minecraft:tuff_wall", + "bedrock_data": 0, + "firstBlockRuntimeId": 21168, + "lastBlockRuntimeId": 21491 + }, + "minecraft:chiseled_tuff": { + "bedrock_identifier": "minecraft:chiseled_tuff", + "bedrock_data": 0, + "firstBlockRuntimeId": 21903 + }, + "minecraft:polished_tuff": { + "bedrock_identifier": "minecraft:polished_tuff", + "bedrock_data": 0, + "firstBlockRuntimeId": 21492 + }, + "minecraft:polished_tuff_slab": { + "bedrock_identifier": "minecraft:polished_tuff_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 21493, + "lastBlockRuntimeId": 21498 + }, + "minecraft:polished_tuff_stairs": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 21499, + "lastBlockRuntimeId": 21578 + }, + "minecraft:polished_tuff_wall": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "bedrock_data": 0, + "firstBlockRuntimeId": 21579, + "lastBlockRuntimeId": 21902 + }, + "minecraft:tuff_bricks": { + "bedrock_identifier": "minecraft:tuff_bricks", + "bedrock_data": 0, + "firstBlockRuntimeId": 21904 + }, + "minecraft:tuff_brick_slab": { + "bedrock_identifier": "minecraft:tuff_brick_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 21905, + "lastBlockRuntimeId": 21910 + }, + "minecraft:tuff_brick_stairs": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 21911, + "lastBlockRuntimeId": 21990 + }, + "minecraft:tuff_brick_wall": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "bedrock_data": 0, + "firstBlockRuntimeId": 21991, + "lastBlockRuntimeId": 22314 + }, + "minecraft:chiseled_tuff_bricks": { + "bedrock_identifier": "minecraft:chiseled_tuff_bricks", + "bedrock_data": 0, + "firstBlockRuntimeId": 22315 + }, + "minecraft:dripstone_block": { + "bedrock_identifier": "minecraft:dripstone_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 24768 + }, + "minecraft:grass_block": { + "bedrock_identifier": "minecraft:grass_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 8, + "lastBlockRuntimeId": 9 + }, + "minecraft:dirt": { + "bedrock_identifier": "minecraft:dirt", + "bedrock_data": 0, + "firstBlockRuntimeId": 10 + }, + "minecraft:coarse_dirt": { + "bedrock_identifier": "minecraft:dirt", + "bedrock_data": 1, + "firstBlockRuntimeId": 11 + }, + "minecraft:podzol": { + "bedrock_identifier": "minecraft:podzol", + "bedrock_data": 0, + "firstBlockRuntimeId": 12, + "lastBlockRuntimeId": 13 + }, + "minecraft:rooted_dirt": { + "bedrock_identifier": "minecraft:dirt_with_roots", + "bedrock_data": 0, + "firstBlockRuntimeId": 24902 + }, + "minecraft:mud": { + "bedrock_identifier": "minecraft:mud", + "bedrock_data": 0, + "firstBlockRuntimeId": 24903 + }, + "minecraft:crimson_nylium": { + "bedrock_identifier": "minecraft:crimson_nylium", + "bedrock_data": 0, + "firstBlockRuntimeId": 18608 + }, + "minecraft:warped_nylium": { + "bedrock_identifier": "minecraft:warped_nylium", + "bedrock_data": 0, + "firstBlockRuntimeId": 18591 + }, + "minecraft:cobblestone": { + "bedrock_identifier": "minecraft:cobblestone", + "bedrock_data": 0, + "firstBlockRuntimeId": 14 + }, + "minecraft:oak_planks": { + "bedrock_identifier": "minecraft:oak_planks", + "bedrock_data": 0, + "firstBlockRuntimeId": 15 + }, + "minecraft:spruce_planks": { + "bedrock_identifier": "minecraft:spruce_planks", + "bedrock_data": 1, + "firstBlockRuntimeId": 16 + }, + "minecraft:birch_planks": { + "bedrock_identifier": "minecraft:birch_planks", + "bedrock_data": 2, + "firstBlockRuntimeId": 17 + }, + "minecraft:jungle_planks": { + "bedrock_identifier": "minecraft:jungle_planks", + "bedrock_data": 3, + "firstBlockRuntimeId": 18 + }, + "minecraft:acacia_planks": { + "bedrock_identifier": "minecraft:acacia_planks", + "bedrock_data": 4, + "firstBlockRuntimeId": 19 + }, + "minecraft:cherry_planks": { + "bedrock_identifier": "minecraft:cherry_planks", + "bedrock_data": 0, + "firstBlockRuntimeId": 20 + }, + "minecraft:dark_oak_planks": { + "bedrock_identifier": "minecraft:dark_oak_planks", + "bedrock_data": 5, + "firstBlockRuntimeId": 21 + }, + "minecraft:mangrove_planks": { + "bedrock_identifier": "minecraft:mangrove_planks", + "bedrock_data": 0, + "firstBlockRuntimeId": 22 + }, + "minecraft:bamboo_planks": { + "bedrock_identifier": "minecraft:bamboo_planks", + "bedrock_data": 0, + "firstBlockRuntimeId": 23 + }, + "minecraft:crimson_planks": { + "bedrock_identifier": "minecraft:crimson_planks", + "bedrock_data": 0, + "firstBlockRuntimeId": 18666 + }, + "minecraft:warped_planks": { + "bedrock_identifier": "minecraft:warped_planks", + "bedrock_data": 0, + "firstBlockRuntimeId": 18667 + }, + "minecraft:bamboo_mosaic": { + "bedrock_identifier": "minecraft:bamboo_mosaic", + "bedrock_data": 0, + "firstBlockRuntimeId": 24 + }, + "minecraft:oak_sapling": { + "bedrock_identifier": "minecraft:oak_sapling", + "bedrock_data": 0, + "firstBlockRuntimeId": 25, + "lastBlockRuntimeId": 26 + }, + "minecraft:spruce_sapling": { + "bedrock_identifier": "minecraft:spruce_sapling", + "bedrock_data": 0, + "firstBlockRuntimeId": 27, + "lastBlockRuntimeId": 28 + }, + "minecraft:birch_sapling": { + "bedrock_identifier": "minecraft:birch_sapling", + "bedrock_data": 0, + "firstBlockRuntimeId": 29, + "lastBlockRuntimeId": 30 + }, + "minecraft:jungle_sapling": { + "bedrock_identifier": "minecraft:jungle_sapling", + "bedrock_data": 0, + "firstBlockRuntimeId": 31, + "lastBlockRuntimeId": 32 + }, + "minecraft:acacia_sapling": { + "bedrock_identifier": "minecraft:acacia_sapling", + "bedrock_data": 0, + "firstBlockRuntimeId": 33, + "lastBlockRuntimeId": 34 + }, + "minecraft:cherry_sapling": { + "bedrock_identifier": "minecraft:cherry_sapling", + "bedrock_data": 0, + "firstBlockRuntimeId": 35, + "lastBlockRuntimeId": 36 + }, + "minecraft:dark_oak_sapling": { + "bedrock_identifier": "minecraft:dark_oak_sapling", + "bedrock_data": 0, + "firstBlockRuntimeId": 37, + "lastBlockRuntimeId": 38 + }, + "minecraft:mangrove_propagule": { + "bedrock_identifier": "minecraft:mangrove_propagule", + "bedrock_data": 0, + "firstBlockRuntimeId": 39, + "lastBlockRuntimeId": 78 + }, + "minecraft:bedrock": { + "bedrock_identifier": "minecraft:bedrock", + "bedrock_data": 0, + "firstBlockRuntimeId": 79 + }, + "minecraft:sand": { + "bedrock_identifier": "minecraft:sand", + "bedrock_data": 0, + "firstBlockRuntimeId": 112 + }, + "minecraft:suspicious_sand": { + "bedrock_identifier": "minecraft:suspicious_sand", + "bedrock_data": 0, + "firstBlockRuntimeId": 113, + "lastBlockRuntimeId": 116 + }, + "minecraft:suspicious_gravel": { + "bedrock_identifier": "minecraft:suspicious_gravel", + "bedrock_data": 0, + "firstBlockRuntimeId": 119, + "lastBlockRuntimeId": 122 + }, + "minecraft:red_sand": { + "bedrock_identifier": "minecraft:sand", + "bedrock_data": 1, + "firstBlockRuntimeId": 117 + }, + "minecraft:gravel": { + "bedrock_identifier": "minecraft:gravel", + "bedrock_data": 0, + "firstBlockRuntimeId": 118 + }, + "minecraft:coal_ore": { + "bedrock_identifier": "minecraft:coal_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 127 + }, + "minecraft:deepslate_coal_ore": { + "bedrock_identifier": "minecraft:deepslate_coal_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 128 + }, + "minecraft:iron_ore": { + "bedrock_identifier": "minecraft:iron_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 125 + }, + "minecraft:deepslate_iron_ore": { + "bedrock_identifier": "minecraft:deepslate_iron_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 126 + }, + "minecraft:copper_ore": { + "bedrock_identifier": "minecraft:copper_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 22942 + }, + "minecraft:deepslate_copper_ore": { + "bedrock_identifier": "minecraft:deepslate_copper_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 22943 + }, + "minecraft:gold_ore": { + "bedrock_identifier": "minecraft:gold_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 123 + }, + "minecraft:deepslate_gold_ore": { + "bedrock_identifier": "minecraft:deepslate_gold_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 124 + }, + "minecraft:redstone_ore": { + "bedrock_identifier": "minecraft:redstone_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 5734, + "lastBlockRuntimeId": 5735 + }, + "minecraft:deepslate_redstone_ore": { + "bedrock_identifier": "minecraft:deepslate_redstone_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 5736, + "lastBlockRuntimeId": 5737 + }, + "minecraft:emerald_ore": { + "bedrock_identifier": "minecraft:emerald_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 7511 + }, + "minecraft:deepslate_emerald_ore": { + "bedrock_identifier": "minecraft:deepslate_emerald_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 7512 + }, + "minecraft:lapis_ore": { + "bedrock_identifier": "minecraft:lapis_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 520 + }, + "minecraft:deepslate_lapis_ore": { + "bedrock_identifier": "minecraft:deepslate_lapis_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 521 + }, + "minecraft:diamond_ore": { + "bedrock_identifier": "minecraft:diamond_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 4274 + }, + "minecraft:deepslate_diamond_ore": { + "bedrock_identifier": "minecraft:deepslate_diamond_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 4275 + }, + "minecraft:nether_gold_ore": { + "bedrock_identifier": "minecraft:nether_gold_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 129 + }, + "minecraft:nether_quartz_ore": { + "bedrock_identifier": "minecraft:quartz_ore", + "bedrock_data": 0, + "firstBlockRuntimeId": 9224 + }, + "minecraft:ancient_debris": { + "bedrock_identifier": "minecraft:ancient_debris", + "bedrock_data": 0, + "firstBlockRuntimeId": 19448 + }, + "minecraft:coal_block": { + "bedrock_identifier": "minecraft:coal_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 10745 + }, + "minecraft:raw_iron_block": { + "bedrock_identifier": "minecraft:raw_iron_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 26558 + }, + "minecraft:raw_copper_block": { + "bedrock_identifier": "minecraft:raw_copper_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 26559 + }, + "minecraft:raw_gold_block": { + "bedrock_identifier": "minecraft:raw_gold_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 26560 + }, + "minecraft:heavy_core": { + "bedrock_identifier": "minecraft:heavy_core", + "bedrock_data": 0, + "firstBlockRuntimeId": 26682, + "lastBlockRuntimeId": 26683 + }, + "minecraft:amethyst_block": { + "bedrock_identifier": "minecraft:amethyst_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 21031 + }, + "minecraft:budding_amethyst": { + "bedrock_identifier": "minecraft:budding_amethyst", + "bedrock_data": 0, + "firstBlockRuntimeId": 21032 + }, + "minecraft:iron_block": { + "bedrock_identifier": "minecraft:iron_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 2092 + }, + "minecraft:copper_block": { + "bedrock_identifier": "minecraft:copper_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 22938 + }, + "minecraft:gold_block": { + "bedrock_identifier": "minecraft:gold_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 2091 + }, + "minecraft:diamond_block": { + "bedrock_identifier": "minecraft:diamond_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 4276 + }, + "minecraft:netherite_block": { + "bedrock_identifier": "minecraft:netherite_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 19447 + }, + "minecraft:exposed_copper": { + "bedrock_identifier": "minecraft:exposed_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22939 + }, + "minecraft:weathered_copper": { + "bedrock_identifier": "minecraft:weathered_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22940 + }, + "minecraft:oxidized_copper": { + "bedrock_identifier": "minecraft:oxidized_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22941 + }, + "minecraft:chiseled_copper": { + "bedrock_identifier": "minecraft:chiseled_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22951 + }, + "minecraft:exposed_chiseled_copper": { + "bedrock_identifier": "minecraft:exposed_chiseled_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22950 + }, + "minecraft:weathered_chiseled_copper": { + "bedrock_identifier": "minecraft:weathered_chiseled_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22949 + }, + "minecraft:oxidized_chiseled_copper": { + "bedrock_identifier": "minecraft:oxidized_chiseled_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22948 + }, + "minecraft:cut_copper": { + "bedrock_identifier": "minecraft:cut_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22947 + }, + "minecraft:exposed_cut_copper": { + "bedrock_identifier": "minecraft:exposed_cut_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22946 + }, + "minecraft:weathered_cut_copper": { + "bedrock_identifier": "minecraft:weathered_cut_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22945 + }, + "minecraft:oxidized_cut_copper": { + "bedrock_identifier": "minecraft:oxidized_cut_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22944 + }, + "minecraft:cut_copper_stairs": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 23196, + "lastBlockRuntimeId": 23275 + }, + "minecraft:exposed_cut_copper_stairs": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 23116, + "lastBlockRuntimeId": 23195 + }, + "minecraft:weathered_cut_copper_stairs": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 23036, + "lastBlockRuntimeId": 23115 + }, + "minecraft:oxidized_cut_copper_stairs": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 22956, + "lastBlockRuntimeId": 23035 + }, + "minecraft:cut_copper_slab": { + "bedrock_identifier": "minecraft:cut_copper_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 23294, + "lastBlockRuntimeId": 23299 + }, + "minecraft:exposed_cut_copper_slab": { + "bedrock_identifier": "minecraft:exposed_cut_copper_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 23288, + "lastBlockRuntimeId": 23293 + }, + "minecraft:weathered_cut_copper_slab": { + "bedrock_identifier": "minecraft:weathered_cut_copper_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 23282, + "lastBlockRuntimeId": 23287 + }, + "minecraft:oxidized_cut_copper_slab": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 23276, + "lastBlockRuntimeId": 23281 + }, + "minecraft:waxed_copper_block": { + "bedrock_identifier": "minecraft:waxed_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 23300 + }, + "minecraft:waxed_exposed_copper": { + "bedrock_identifier": "minecraft:waxed_exposed_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 23302 + }, + "minecraft:waxed_weathered_copper": { + "bedrock_identifier": "minecraft:waxed_weathered_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 23301 + }, + "minecraft:waxed_oxidized_copper": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 23303 + }, + "minecraft:waxed_chiseled_copper": { + "bedrock_identifier": "minecraft:waxed_chiseled_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22955 + }, + "minecraft:waxed_exposed_chiseled_copper": { + "bedrock_identifier": "minecraft:waxed_exposed_chiseled_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22954 + }, + "minecraft:waxed_weathered_chiseled_copper": { + "bedrock_identifier": "minecraft:waxed_weathered_chiseled_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22953 + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "bedrock_identifier": "minecraft:waxed_oxidized_chiseled_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 22952 + }, + "minecraft:waxed_cut_copper": { + "bedrock_identifier": "minecraft:waxed_cut_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 23307 + }, + "minecraft:waxed_exposed_cut_copper": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 23306 + }, + "minecraft:waxed_weathered_cut_copper": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 23305 + }, + "minecraft:waxed_oxidized_cut_copper": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper", + "bedrock_data": 0, + "firstBlockRuntimeId": 23304 + }, + "minecraft:waxed_cut_copper_stairs": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 23548, + "lastBlockRuntimeId": 23627 + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 23468, + "lastBlockRuntimeId": 23547 + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 23388, + "lastBlockRuntimeId": 23467 + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 23308, + "lastBlockRuntimeId": 23387 + }, + "minecraft:waxed_cut_copper_slab": { + "bedrock_identifier": "minecraft:waxed_cut_copper_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 23646, + "lastBlockRuntimeId": 23651 + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 23640, + "lastBlockRuntimeId": 23645 + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 23634, + "lastBlockRuntimeId": 23639 + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 23628, + "lastBlockRuntimeId": 23633 + }, + "minecraft:oak_log": { + "bedrock_identifier": "minecraft:oak_log", + "bedrock_data": 0, + "firstBlockRuntimeId": 130, + "lastBlockRuntimeId": 132 + }, + "minecraft:spruce_log": { + "bedrock_identifier": "minecraft:spruce_log", + "bedrock_data": 1, + "firstBlockRuntimeId": 133, + "lastBlockRuntimeId": 135 + }, + "minecraft:birch_log": { + "bedrock_identifier": "minecraft:birch_log", + "bedrock_data": 2, + "firstBlockRuntimeId": 136, + "lastBlockRuntimeId": 138 + }, + "minecraft:jungle_log": { + "bedrock_identifier": "minecraft:jungle_log", + "bedrock_data": 3, + "firstBlockRuntimeId": 139, + "lastBlockRuntimeId": 141 + }, + "minecraft:acacia_log": { + "bedrock_identifier": "minecraft:acacia_log", + "bedrock_data": 0, + "firstBlockRuntimeId": 142, + "lastBlockRuntimeId": 144 + }, + "minecraft:cherry_log": { + "bedrock_identifier": "minecraft:cherry_log", + "bedrock_data": 0, + "firstBlockRuntimeId": 145, + "lastBlockRuntimeId": 147 + }, + "minecraft:dark_oak_log": { + "bedrock_identifier": "minecraft:dark_oak_log", + "bedrock_data": 1, + "firstBlockRuntimeId": 148, + "lastBlockRuntimeId": 150 + }, + "minecraft:mangrove_log": { + "bedrock_identifier": "minecraft:mangrove_log", + "bedrock_data": 0, + "firstBlockRuntimeId": 151, + "lastBlockRuntimeId": 153 + }, + "minecraft:mangrove_roots": { + "bedrock_identifier": "minecraft:mangrove_roots", + "bedrock_data": 0, + "firstBlockRuntimeId": 154, + "lastBlockRuntimeId": 155 + }, + "minecraft:muddy_mangrove_roots": { + "bedrock_identifier": "minecraft:muddy_mangrove_roots", + "bedrock_data": 0, + "firstBlockRuntimeId": 156, + "lastBlockRuntimeId": 158 + }, + "minecraft:crimson_stem": { + "bedrock_identifier": "minecraft:crimson_stem", + "bedrock_data": 0, + "firstBlockRuntimeId": 18596, + "lastBlockRuntimeId": 18598 + }, + "minecraft:warped_stem": { + "bedrock_identifier": "minecraft:warped_stem", + "bedrock_data": 0, + "firstBlockRuntimeId": 18579, + "lastBlockRuntimeId": 18581 + }, + "minecraft:bamboo_block": { + "bedrock_identifier": "minecraft:bamboo_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 159, + "lastBlockRuntimeId": 161 + }, + "minecraft:stripped_oak_log": { + "bedrock_identifier": "minecraft:stripped_oak_log", + "bedrock_data": 0, + "firstBlockRuntimeId": 180, + "lastBlockRuntimeId": 182 + }, + "minecraft:stripped_spruce_log": { + "bedrock_identifier": "minecraft:stripped_spruce_log", + "bedrock_data": 0, + "firstBlockRuntimeId": 162, + "lastBlockRuntimeId": 164 + }, + "minecraft:stripped_birch_log": { + "bedrock_identifier": "minecraft:stripped_birch_log", + "bedrock_data": 0, + "firstBlockRuntimeId": 165, + "lastBlockRuntimeId": 167 + }, + "minecraft:stripped_jungle_log": { + "bedrock_identifier": "minecraft:stripped_jungle_log", + "bedrock_data": 0, + "firstBlockRuntimeId": 168, + "lastBlockRuntimeId": 170 + }, + "minecraft:stripped_acacia_log": { + "bedrock_identifier": "minecraft:stripped_acacia_log", + "bedrock_data": 0, + "firstBlockRuntimeId": 171, + "lastBlockRuntimeId": 173 + }, + "minecraft:stripped_cherry_log": { + "bedrock_identifier": "minecraft:stripped_cherry_log", + "bedrock_data": 0, + "firstBlockRuntimeId": 174, + "lastBlockRuntimeId": 176 + }, + "minecraft:stripped_dark_oak_log": { + "bedrock_identifier": "minecraft:stripped_dark_oak_log", + "bedrock_data": 0, + "firstBlockRuntimeId": 177, + "lastBlockRuntimeId": 179 + }, + "minecraft:stripped_mangrove_log": { + "bedrock_identifier": "minecraft:stripped_mangrove_log", + "bedrock_data": 0, + "firstBlockRuntimeId": 183, + "lastBlockRuntimeId": 185 + }, + "minecraft:stripped_crimson_stem": { + "bedrock_identifier": "minecraft:stripped_crimson_stem", + "bedrock_data": 0, + "firstBlockRuntimeId": 18599, + "lastBlockRuntimeId": 18601 + }, + "minecraft:stripped_warped_stem": { + "bedrock_identifier": "minecraft:stripped_warped_stem", + "bedrock_data": 0, + "firstBlockRuntimeId": 18582, + "lastBlockRuntimeId": 18584 + }, + "minecraft:stripped_oak_wood": { + "bedrock_identifier": "minecraft:stripped_oak_wood", + "bedrock_data": 8, + "firstBlockRuntimeId": 213, + "lastBlockRuntimeId": 215 + }, + "minecraft:stripped_spruce_wood": { + "bedrock_identifier": "minecraft:stripped_spruce_wood", + "bedrock_data": 9, + "firstBlockRuntimeId": 216, + "lastBlockRuntimeId": 218 + }, + "minecraft:stripped_birch_wood": { + "bedrock_identifier": "minecraft:stripped_birch_wood", + "bedrock_data": 10, + "firstBlockRuntimeId": 219, + "lastBlockRuntimeId": 221 + }, + "minecraft:stripped_jungle_wood": { + "bedrock_identifier": "minecraft:stripped_jungle_wood", + "bedrock_data": 11, + "firstBlockRuntimeId": 222, + "lastBlockRuntimeId": 224 + }, + "minecraft:stripped_acacia_wood": { + "bedrock_identifier": "minecraft:stripped_acacia_wood", + "bedrock_data": 12, + "firstBlockRuntimeId": 225, + "lastBlockRuntimeId": 227 + }, + "minecraft:stripped_cherry_wood": { + "bedrock_identifier": "minecraft:stripped_cherry_wood", + "bedrock_data": 0, + "firstBlockRuntimeId": 228, + "lastBlockRuntimeId": 230 + }, + "minecraft:stripped_dark_oak_wood": { + "bedrock_identifier": "minecraft:stripped_dark_oak_wood", + "bedrock_data": 13, + "firstBlockRuntimeId": 231, + "lastBlockRuntimeId": 233 + }, + "minecraft:stripped_mangrove_wood": { + "bedrock_identifier": "minecraft:stripped_mangrove_wood", + "bedrock_data": 0, + "firstBlockRuntimeId": 234, + "lastBlockRuntimeId": 236 + }, + "minecraft:stripped_crimson_hyphae": { + "bedrock_identifier": "minecraft:stripped_crimson_hyphae", + "bedrock_data": 0, + "firstBlockRuntimeId": 18605, + "lastBlockRuntimeId": 18607 + }, + "minecraft:stripped_warped_hyphae": { + "bedrock_identifier": "minecraft:stripped_warped_hyphae", + "bedrock_data": 0, + "firstBlockRuntimeId": 18588, + "lastBlockRuntimeId": 18590 + }, + "minecraft:stripped_bamboo_block": { + "bedrock_identifier": "minecraft:stripped_bamboo_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 186, + "lastBlockRuntimeId": 188 + }, + "minecraft:oak_wood": { + "bedrock_identifier": "minecraft:oak_wood", + "bedrock_data": 0, + "firstBlockRuntimeId": 189, + "lastBlockRuntimeId": 191 + }, + "minecraft:spruce_wood": { + "bedrock_identifier": "minecraft:spruce_wood", + "bedrock_data": 1, + "firstBlockRuntimeId": 192, + "lastBlockRuntimeId": 194 + }, + "minecraft:birch_wood": { + "bedrock_identifier": "minecraft:birch_wood", + "bedrock_data": 2, + "firstBlockRuntimeId": 195, + "lastBlockRuntimeId": 197 + }, + "minecraft:jungle_wood": { + "bedrock_identifier": "minecraft:jungle_wood", + "bedrock_data": 3, + "firstBlockRuntimeId": 198, + "lastBlockRuntimeId": 200 + }, + "minecraft:acacia_wood": { + "bedrock_identifier": "minecraft:acacia_wood", + "bedrock_data": 4, + "firstBlockRuntimeId": 201, + "lastBlockRuntimeId": 203 + }, + "minecraft:cherry_wood": { + "bedrock_identifier": "minecraft:cherry_wood", + "bedrock_data": 0, + "firstBlockRuntimeId": 204, + "lastBlockRuntimeId": 206 + }, + "minecraft:dark_oak_wood": { + "bedrock_identifier": "minecraft:dark_oak_wood", + "bedrock_data": 5, + "firstBlockRuntimeId": 207, + "lastBlockRuntimeId": 209 + }, + "minecraft:mangrove_wood": { + "bedrock_identifier": "minecraft:mangrove_wood", + "bedrock_data": 0, + "firstBlockRuntimeId": 210, + "lastBlockRuntimeId": 212 + }, + "minecraft:crimson_hyphae": { + "bedrock_identifier": "minecraft:crimson_hyphae", + "bedrock_data": 0, + "firstBlockRuntimeId": 18602, + "lastBlockRuntimeId": 18604 + }, + "minecraft:warped_hyphae": { + "bedrock_identifier": "minecraft:warped_hyphae", + "bedrock_data": 0, + "firstBlockRuntimeId": 18585, + "lastBlockRuntimeId": 18587 + }, + "minecraft:oak_leaves": { + "bedrock_identifier": "minecraft:oak_leaves", + "bedrock_data": 0, + "firstBlockRuntimeId": 237, + "lastBlockRuntimeId": 264 + }, + "minecraft:spruce_leaves": { + "bedrock_identifier": "minecraft:spruce_leaves", + "bedrock_data": 1, + "firstBlockRuntimeId": 265, + "lastBlockRuntimeId": 292 + }, + "minecraft:birch_leaves": { + "bedrock_identifier": "minecraft:birch_leaves", + "bedrock_data": 2, + "firstBlockRuntimeId": 293, + "lastBlockRuntimeId": 320 + }, + "minecraft:jungle_leaves": { + "bedrock_identifier": "minecraft:jungle_leaves", + "bedrock_data": 3, + "firstBlockRuntimeId": 321, + "lastBlockRuntimeId": 348 + }, + "minecraft:acacia_leaves": { + "bedrock_identifier": "minecraft:acacia_leaves", + "bedrock_data": 0, + "firstBlockRuntimeId": 349, + "lastBlockRuntimeId": 376 + }, + "minecraft:cherry_leaves": { + "bedrock_identifier": "minecraft:cherry_leaves", + "bedrock_data": 0, + "firstBlockRuntimeId": 377, + "lastBlockRuntimeId": 404 + }, + "minecraft:dark_oak_leaves": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "bedrock_data": 1, + "firstBlockRuntimeId": 405, + "lastBlockRuntimeId": 432 + }, + "minecraft:mangrove_leaves": { + "bedrock_identifier": "minecraft:mangrove_leaves", + "bedrock_data": 0, + "firstBlockRuntimeId": 433, + "lastBlockRuntimeId": 460 + }, + "minecraft:azalea_leaves": { + "bedrock_identifier": "minecraft:azalea_leaves", + "bedrock_data": 0, + "firstBlockRuntimeId": 461, + "lastBlockRuntimeId": 488 + }, + "minecraft:flowering_azalea_leaves": { + "bedrock_identifier": "minecraft:azalea_leaves_flowered", + "bedrock_data": 0, + "firstBlockRuntimeId": 489, + "lastBlockRuntimeId": 516 + }, + "minecraft:sponge": { + "bedrock_identifier": "minecraft:sponge", + "bedrock_data": 0, + "firstBlockRuntimeId": 517 + }, + "minecraft:wet_sponge": { + "bedrock_identifier": "minecraft:sponge", + "bedrock_data": 1, + "firstBlockRuntimeId": 518 + }, + "minecraft:glass": { + "bedrock_identifier": "minecraft:glass", + "bedrock_data": 0, + "firstBlockRuntimeId": 519 + }, + "minecraft:tinted_glass": { + "bedrock_identifier": "minecraft:tinted_glass", + "bedrock_data": 0, + "firstBlockRuntimeId": 22317 + }, + "minecraft:lapis_block": { + "bedrock_identifier": "minecraft:lapis_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 522 + }, + "minecraft:sandstone": { + "bedrock_identifier": "minecraft:sandstone", + "bedrock_data": 0, + "firstBlockRuntimeId": 535 + }, + "minecraft:chiseled_sandstone": { + "bedrock_identifier": "minecraft:sandstone", + "bedrock_data": 1, + "firstBlockRuntimeId": 536 + }, + "minecraft:cut_sandstone": { + "bedrock_identifier": "minecraft:sandstone", + "bedrock_data": 2, + "firstBlockRuntimeId": 537 + }, + "minecraft:cobweb": { + "bedrock_identifier": "minecraft:web", + "bedrock_data": 0, + "firstBlockRuntimeId": 2004 + }, + "minecraft:short_grass": { + "bedrock_identifier": "minecraft:tallgrass", + "bedrock_data": 0, + "firstBlockRuntimeId": 2005 + }, + "minecraft:fern": { + "bedrock_identifier": "minecraft:fern", + "bedrock_data": 0, + "firstBlockRuntimeId": 2006 + }, + "minecraft:azalea": { + "bedrock_identifier": "minecraft:azalea", + "bedrock_data": 0, + "firstBlockRuntimeId": 24824 + }, + "minecraft:flowering_azalea": { + "bedrock_identifier": "minecraft:flowering_azalea", + "bedrock_data": 0, + "firstBlockRuntimeId": 24825 + }, + "minecraft:dead_bush": { + "bedrock_identifier": "minecraft:deadbush", + "bedrock_data": 0, + "firstBlockRuntimeId": 2007 + }, + "minecraft:seagrass": { + "bedrock_identifier": "minecraft:seagrass", + "bedrock_data": 0, + "firstBlockRuntimeId": 2008 + }, + "minecraft:sea_pickle": { + "bedrock_identifier": "minecraft:sea_pickle", + "bedrock_data": 0, + "firstBlockRuntimeId": 12933, + "lastBlockRuntimeId": 12940 + }, + "minecraft:white_wool": { + "bedrock_identifier": "minecraft:white_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2047 + }, + "minecraft:orange_wool": { + "bedrock_identifier": "minecraft:orange_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2048 + }, + "minecraft:magenta_wool": { + "bedrock_identifier": "minecraft:magenta_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2049 + }, + "minecraft:light_blue_wool": { + "bedrock_identifier": "minecraft:light_blue_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2050 + }, + "minecraft:yellow_wool": { + "bedrock_identifier": "minecraft:yellow_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2051 + }, + "minecraft:lime_wool": { + "bedrock_identifier": "minecraft:lime_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2052 + }, + "minecraft:pink_wool": { + "bedrock_identifier": "minecraft:pink_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2053 + }, + "minecraft:gray_wool": { + "bedrock_identifier": "minecraft:gray_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2054 + }, + "minecraft:light_gray_wool": { + "bedrock_identifier": "minecraft:light_gray_wool", + "bedrock_data": 8, + "firstBlockRuntimeId": 2055 + }, + "minecraft:cyan_wool": { + "bedrock_identifier": "minecraft:cyan_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2056 + }, + "minecraft:purple_wool": { + "bedrock_identifier": "minecraft:purple_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2057 + }, + "minecraft:blue_wool": { + "bedrock_identifier": "minecraft:blue_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2058 + }, + "minecraft:brown_wool": { + "bedrock_identifier": "minecraft:brown_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2059 + }, + "minecraft:green_wool": { + "bedrock_identifier": "minecraft:green_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2060 + }, + "minecraft:red_wool": { + "bedrock_identifier": "minecraft:red_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2061 + }, + "minecraft:black_wool": { + "bedrock_identifier": "minecraft:black_wool", + "bedrock_data": 0, + "firstBlockRuntimeId": 2062 + }, + "minecraft:dandelion": { + "bedrock_identifier": "minecraft:yellow_flower", + "bedrock_data": 0, + "firstBlockRuntimeId": 2075 + }, + "minecraft:poppy": { + "bedrock_identifier": "minecraft:poppy", + "bedrock_data": 0, + "firstBlockRuntimeId": 2077 + }, + "minecraft:blue_orchid": { + "bedrock_identifier": "minecraft:blue_orchid", + "bedrock_data": 0, + "firstBlockRuntimeId": 2078 + }, + "minecraft:allium": { + "bedrock_identifier": "minecraft:allium", + "bedrock_data": 0, + "firstBlockRuntimeId": 2079 + }, + "minecraft:azure_bluet": { + "bedrock_identifier": "minecraft:azure_bluet", + "bedrock_data": 0, + "firstBlockRuntimeId": 2080 + }, + "minecraft:red_tulip": { + "bedrock_identifier": "minecraft:red_tulip", + "bedrock_data": 0, + "firstBlockRuntimeId": 2081 + }, + "minecraft:orange_tulip": { + "bedrock_identifier": "minecraft:orange_tulip", + "bedrock_data": 0, + "firstBlockRuntimeId": 2082 + }, + "minecraft:white_tulip": { + "bedrock_identifier": "minecraft:white_tulip", + "bedrock_data": 0, + "firstBlockRuntimeId": 2083 + }, + "minecraft:pink_tulip": { + "bedrock_identifier": "minecraft:pink_tulip", + "bedrock_data": 0, + "firstBlockRuntimeId": 2084 + }, + "minecraft:oxeye_daisy": { + "bedrock_identifier": "minecraft:oxeye_daisy", + "bedrock_data": 0, + "firstBlockRuntimeId": 2085 + }, + "minecraft:cornflower": { + "bedrock_identifier": "minecraft:cornflower", + "bedrock_data": 0, + "firstBlockRuntimeId": 2086 + }, + "minecraft:lily_of_the_valley": { + "bedrock_identifier": "minecraft:lily_of_the_valley", + "bedrock_data": 0, + "firstBlockRuntimeId": 2088 + }, + "minecraft:wither_rose": { + "bedrock_identifier": "minecraft:wither_rose", + "bedrock_data": 0, + "firstBlockRuntimeId": 2087 + }, + "minecraft:torchflower": { + "bedrock_identifier": "minecraft:torchflower", + "bedrock_data": 0, + "firstBlockRuntimeId": 2076 + }, + "minecraft:pitcher_plant": { + "bedrock_identifier": "minecraft:pitcher_plant", + "bedrock_data": 0, + "firstBlockRuntimeId": 12507, + "lastBlockRuntimeId": 12508 + }, + "minecraft:spore_blossom": { + "bedrock_identifier": "minecraft:spore_blossom", + "bedrock_data": 0, + "firstBlockRuntimeId": 24823 + }, + "minecraft:brown_mushroom": { + "bedrock_identifier": "minecraft:brown_mushroom", + "bedrock_data": 0, + "firstBlockRuntimeId": 2089 + }, + "minecraft:red_mushroom": { + "bedrock_identifier": "minecraft:red_mushroom", + "bedrock_data": 0, + "firstBlockRuntimeId": 2090 + }, + "minecraft:crimson_fungus": { + "bedrock_identifier": "minecraft:crimson_fungus", + "bedrock_data": 0, + "firstBlockRuntimeId": 18609 + }, + "minecraft:warped_fungus": { + "bedrock_identifier": "minecraft:warped_fungus", + "bedrock_data": 0, + "firstBlockRuntimeId": 18592 + }, + "minecraft:crimson_roots": { + "bedrock_identifier": "minecraft:crimson_roots", + "bedrock_data": 0, + "firstBlockRuntimeId": 18665 + }, + "minecraft:warped_roots": { + "bedrock_identifier": "minecraft:warped_roots", + "bedrock_data": 0, + "firstBlockRuntimeId": 18594 + }, + "minecraft:nether_sprouts": { + "bedrock_identifier": "minecraft:nether_sprouts", + "bedrock_data": 0, + "firstBlockRuntimeId": 18595 + }, + "minecraft:weeping_vines": { + "bedrock_identifier": "minecraft:weeping_vines", + "bedrock_data": 0, + "firstBlockRuntimeId": 18611, + "lastBlockRuntimeId": 18636 + }, + "minecraft:twisting_vines": { + "bedrock_identifier": "minecraft:twisting_vines", + "bedrock_data": 0, + "firstBlockRuntimeId": 18638, + "lastBlockRuntimeId": 18663 + }, + "minecraft:sugar_cane": { + "bedrock_identifier": "minecraft:sugar_cane", + "bedrock_data": 0, + "firstBlockRuntimeId": 5799, + "lastBlockRuntimeId": 5814 + }, + "minecraft:kelp": { + "bedrock_identifier": "minecraft:kelp", + "bedrock_data": 0, + "firstBlockRuntimeId": 12760, + "lastBlockRuntimeId": 12785 + }, + "minecraft:moss_carpet": { + "bedrock_identifier": "minecraft:moss_carpet", + "bedrock_data": 0, + "firstBlockRuntimeId": 24826 + }, + "minecraft:pink_petals": { + "bedrock_identifier": "minecraft:pink_petals", + "bedrock_data": 0, + "firstBlockRuntimeId": 24827, + "lastBlockRuntimeId": 24842 + }, + "minecraft:moss_block": { + "bedrock_identifier": "minecraft:moss_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 24843 + }, + "minecraft:hanging_roots": { + "bedrock_identifier": "minecraft:hanging_roots", + "bedrock_data": 0, + "firstBlockRuntimeId": 24900, + "lastBlockRuntimeId": 24901 + }, + "minecraft:big_dripleaf": { + "bedrock_identifier": "minecraft:big_dripleaf", + "bedrock_data": 0, + "firstBlockRuntimeId": 24844, + "lastBlockRuntimeId": 24875 + }, + "minecraft:small_dripleaf": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 24884, + "lastBlockRuntimeId": 24899 + }, + "minecraft:bamboo": { + "bedrock_identifier": "minecraft:bamboo", + "bedrock_data": 0, + "firstBlockRuntimeId": 12945, + "lastBlockRuntimeId": 12956 + }, + "minecraft:oak_slab": { + "bedrock_identifier": "minecraft:oak_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11162, + "lastBlockRuntimeId": 11167 + }, + "minecraft:spruce_slab": { + "bedrock_identifier": "minecraft:spruce_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11168, + "lastBlockRuntimeId": 11173 + }, + "minecraft:birch_slab": { + "bedrock_identifier": "minecraft:birch_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11174, + "lastBlockRuntimeId": 11179 + }, + "minecraft:jungle_slab": { + "bedrock_identifier": "minecraft:jungle_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11180, + "lastBlockRuntimeId": 11185 + }, + "minecraft:acacia_slab": { + "bedrock_identifier": "minecraft:acacia_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11186, + "lastBlockRuntimeId": 11191 + }, + "minecraft:cherry_slab": { + "bedrock_identifier": "minecraft:cherry_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11192, + "lastBlockRuntimeId": 11197 + }, + "minecraft:dark_oak_slab": { + "bedrock_identifier": "minecraft:dark_oak_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11198, + "lastBlockRuntimeId": 11203 + }, + "minecraft:mangrove_slab": { + "bedrock_identifier": "minecraft:mangrove_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11204, + "lastBlockRuntimeId": 11209 + }, + "minecraft:bamboo_slab": { + "bedrock_identifier": "minecraft:bamboo_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11210, + "lastBlockRuntimeId": 11215 + }, + "minecraft:bamboo_mosaic_slab": { + "bedrock_identifier": "minecraft:bamboo_mosaic_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11216, + "lastBlockRuntimeId": 11221 + }, + "minecraft:crimson_slab": { + "bedrock_identifier": "minecraft:crimson_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 18668, + "lastBlockRuntimeId": 18673 + }, + "minecraft:warped_slab": { + "bedrock_identifier": "minecraft:warped_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 18674, + "lastBlockRuntimeId": 18679 + }, + "minecraft:stone_slab": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "bedrock_data": 2, + "firstBlockRuntimeId": 11222, + "lastBlockRuntimeId": 11227 + }, + "minecraft:smooth_stone_slab": { + "bedrock_identifier": "minecraft:smooth_stone_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11228, + "lastBlockRuntimeId": 11233 + }, + "minecraft:sandstone_slab": { + "bedrock_identifier": "minecraft:sandstone_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11234, + "lastBlockRuntimeId": 11239 + }, + "minecraft:cut_sandstone_slab": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "bedrock_data": 3, + "firstBlockRuntimeId": 11240, + "lastBlockRuntimeId": 11245 + }, + "minecraft:petrified_oak_slab": { + "bedrock_identifier": "minecraft:petrified_oak_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11246, + "lastBlockRuntimeId": 11251 + }, + "minecraft:cobblestone_slab": { + "bedrock_identifier": "minecraft:cobblestone_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11252, + "lastBlockRuntimeId": 11257 + }, + "minecraft:brick_slab": { + "bedrock_identifier": "minecraft:brick_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11258, + "lastBlockRuntimeId": 11263 + }, + "minecraft:stone_brick_slab": { + "bedrock_identifier": "minecraft:stone_brick_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11264, + "lastBlockRuntimeId": 11269 + }, + "minecraft:mud_brick_slab": { + "bedrock_identifier": "minecraft:mud_brick_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11270, + "lastBlockRuntimeId": 11275 + }, + "minecraft:nether_brick_slab": { + "bedrock_identifier": "minecraft:nether_brick_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11276, + "lastBlockRuntimeId": 11281 + }, + "minecraft:quartz_slab": { + "bedrock_identifier": "minecraft:quartz_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 11282, + "lastBlockRuntimeId": 11287 + }, + "minecraft:red_sandstone_slab": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "bedrock_data": 0, + "firstBlockRuntimeId": 11288, + "lastBlockRuntimeId": 11293 + }, + "minecraft:cut_red_sandstone_slab": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "bedrock_data": 4, + "firstBlockRuntimeId": 11294, + "lastBlockRuntimeId": 11299 + }, + "minecraft:purpur_slab": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "bedrock_data": 1, + "firstBlockRuntimeId": 11300, + "lastBlockRuntimeId": 11305 + }, + "minecraft:prismarine_slab": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "bedrock_data": 2, + "firstBlockRuntimeId": 10706, + "lastBlockRuntimeId": 10711 + }, + "minecraft:prismarine_brick_slab": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "bedrock_data": 4, + "firstBlockRuntimeId": 10712, + "lastBlockRuntimeId": 10717 + }, + "minecraft:dark_prismarine_slab": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "bedrock_data": 3, + "firstBlockRuntimeId": 10718, + "lastBlockRuntimeId": 10723 + }, + "minecraft:smooth_quartz": { + "bedrock_identifier": "minecraft:quartz_block", + "bedrock_data": 3, + "firstBlockRuntimeId": 11308 + }, + "minecraft:smooth_red_sandstone": { + "bedrock_identifier": "minecraft:red_sandstone", + "bedrock_data": 3, + "firstBlockRuntimeId": 11309 + }, + "minecraft:smooth_sandstone": { + "bedrock_identifier": "minecraft:sandstone", + "bedrock_data": 3, + "firstBlockRuntimeId": 11307 + }, + "minecraft:smooth_stone": { + "bedrock_identifier": "minecraft:smooth_stone", + "bedrock_data": 0, + "firstBlockRuntimeId": 11306 + }, + "minecraft:bricks": { + "bedrock_identifier": "minecraft:brick_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 2093 + }, + "minecraft:bookshelf": { + "bedrock_identifier": "minecraft:bookshelf", + "bedrock_data": 0, + "firstBlockRuntimeId": 2096 + }, + "minecraft:chiseled_bookshelf": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "bedrock_data": 0, + "firstBlockRuntimeId": 2097, + "lastBlockRuntimeId": 2352 + }, + "minecraft:decorated_pot": { + "bedrock_identifier": "minecraft:decorated_pot", + "bedrock_data": 0, + "firstBlockRuntimeId": 26574, + "lastBlockRuntimeId": 26589 + }, + "minecraft:mossy_cobblestone": { + "bedrock_identifier": "minecraft:mossy_cobblestone", + "bedrock_data": 0, + "firstBlockRuntimeId": 2353 + }, + "minecraft:obsidian": { + "bedrock_identifier": "minecraft:obsidian", + "bedrock_data": 0, + "firstBlockRuntimeId": 2354 + }, + "minecraft:torch": { + "bedrock_identifier": "minecraft:torch", + "bedrock_data": 0, + "firstBlockRuntimeId": 2355 + }, + "minecraft:end_rod": { + "bedrock_identifier": "minecraft:end_rod", + "bedrock_data": 0, + "firstBlockRuntimeId": 12334, + "lastBlockRuntimeId": 12339 + }, + "minecraft:chorus_plant": { + "bedrock_identifier": "minecraft:chorus_plant", + "bedrock_data": 0, + "firstBlockRuntimeId": 12340, + "lastBlockRuntimeId": 12403 + }, + "minecraft:chorus_flower": { + "bedrock_identifier": "minecraft:chorus_flower", + "bedrock_data": 0, + "firstBlockRuntimeId": 12404, + "lastBlockRuntimeId": 12409 + }, + "minecraft:purpur_block": { + "bedrock_identifier": "minecraft:purpur_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12410 + }, + "minecraft:purpur_pillar": { + "bedrock_identifier": "minecraft:purpur_block", + "bedrock_data": 2, + "firstBlockRuntimeId": 12411, + "lastBlockRuntimeId": 12413 + }, + "minecraft:purpur_stairs": { + "bedrock_identifier": "minecraft:purpur_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 12414, + "lastBlockRuntimeId": 12493 + }, + "minecraft:spawner": { + "bedrock_identifier": "minecraft:mob_spawner", + "bedrock_data": 0, + "firstBlockRuntimeId": 2873 + }, + "minecraft:chest": { + "bedrock_identifier": "minecraft:chest", + "bedrock_data": 0, + "firstBlockRuntimeId": 2954, + "lastBlockRuntimeId": 2977 + }, + "minecraft:crafting_table": { + "bedrock_identifier": "minecraft:crafting_table", + "bedrock_data": 0, + "firstBlockRuntimeId": 4277 + }, + "minecraft:farmland": { + "bedrock_identifier": "minecraft:farmland", + "bedrock_data": 0, + "firstBlockRuntimeId": 4286, + "lastBlockRuntimeId": 4293 + }, + "minecraft:furnace": { + "bedrock_identifier": "minecraft:furnace", + "bedrock_data": 0, + "firstBlockRuntimeId": 4294, + "lastBlockRuntimeId": 4301 + }, + "minecraft:ladder": { + "bedrock_identifier": "minecraft:ladder", + "bedrock_data": 0, + "firstBlockRuntimeId": 4654, + "lastBlockRuntimeId": 4661 + }, + "minecraft:cobblestone_stairs": { + "bedrock_identifier": "minecraft:stone_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 4682, + "lastBlockRuntimeId": 4761 + }, + "minecraft:snow": { + "bedrock_identifier": "minecraft:snow_layer", + "bedrock_data": 0, + "firstBlockRuntimeId": 5772, + "lastBlockRuntimeId": 5779 + }, + "minecraft:ice": { + "bedrock_identifier": "minecraft:ice", + "bedrock_data": 0, + "firstBlockRuntimeId": 5780 + }, + "minecraft:snow_block": { + "bedrock_identifier": "minecraft:snow", + "bedrock_data": 0, + "firstBlockRuntimeId": 5781 + }, + "minecraft:cactus": { + "bedrock_identifier": "minecraft:cactus", + "bedrock_data": 0, + "firstBlockRuntimeId": 5782, + "lastBlockRuntimeId": 5797 + }, + "minecraft:clay": { + "bedrock_identifier": "minecraft:clay", + "bedrock_data": 0, + "firstBlockRuntimeId": 5798 + }, + "minecraft:jukebox": { + "bedrock_identifier": "minecraft:jukebox", + "bedrock_data": 0, + "firstBlockRuntimeId": 5815, + "lastBlockRuntimeId": 5816 + }, + "minecraft:oak_fence": { + "bedrock_identifier": "minecraft:oak_fence", + "bedrock_data": 0, + "firstBlockRuntimeId": 5817, + "lastBlockRuntimeId": 5848 + }, + "minecraft:spruce_fence": { + "bedrock_identifier": "minecraft:spruce_fence", + "bedrock_data": 1, + "firstBlockRuntimeId": 11566, + "lastBlockRuntimeId": 11597 + }, + "minecraft:birch_fence": { + "bedrock_identifier": "minecraft:birch_fence", + "bedrock_data": 2, + "firstBlockRuntimeId": 11598, + "lastBlockRuntimeId": 11629 + }, + "minecraft:jungle_fence": { + "bedrock_identifier": "minecraft:jungle_fence", + "bedrock_data": 3, + "firstBlockRuntimeId": 11630, + "lastBlockRuntimeId": 11661 + }, + "minecraft:acacia_fence": { + "bedrock_identifier": "minecraft:acacia_fence", + "bedrock_data": 4, + "firstBlockRuntimeId": 11662, + "lastBlockRuntimeId": 11693 + }, + "minecraft:cherry_fence": { + "bedrock_identifier": "minecraft:cherry_fence", + "bedrock_data": 0, + "firstBlockRuntimeId": 11694, + "lastBlockRuntimeId": 11725 + }, + "minecraft:dark_oak_fence": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "bedrock_data": 5, + "firstBlockRuntimeId": 11726, + "lastBlockRuntimeId": 11757 + }, + "minecraft:mangrove_fence": { + "bedrock_identifier": "minecraft:mangrove_fence", + "bedrock_data": 0, + "firstBlockRuntimeId": 11758, + "lastBlockRuntimeId": 11789 + }, + "minecraft:bamboo_fence": { + "bedrock_identifier": "minecraft:bamboo_fence", + "bedrock_data": 0, + "firstBlockRuntimeId": 11790, + "lastBlockRuntimeId": 11821 + }, + "minecraft:crimson_fence": { + "bedrock_identifier": "minecraft:crimson_fence", + "bedrock_data": 0, + "firstBlockRuntimeId": 18684, + "lastBlockRuntimeId": 18715 + }, + "minecraft:warped_fence": { + "bedrock_identifier": "minecraft:warped_fence", + "bedrock_data": 0, + "firstBlockRuntimeId": 18716, + "lastBlockRuntimeId": 18747 + }, + "minecraft:pumpkin": { + "bedrock_identifier": "minecraft:pumpkin", + "bedrock_data": 0, + "firstBlockRuntimeId": 6811 + }, + "minecraft:carved_pumpkin": { + "bedrock_identifier": "minecraft:carved_pumpkin", + "bedrock_data": 0, + "firstBlockRuntimeId": 5866, + "lastBlockRuntimeId": 5869 + }, + "minecraft:jack_o_lantern": { + "bedrock_identifier": "minecraft:lit_pumpkin", + "bedrock_data": 0, + "firstBlockRuntimeId": 5870, + "lastBlockRuntimeId": 5873 + }, + "minecraft:netherrack": { + "bedrock_identifier": "minecraft:netherrack", + "bedrock_data": 0, + "firstBlockRuntimeId": 5849 + }, + "minecraft:soul_sand": { + "bedrock_identifier": "minecraft:soul_sand", + "bedrock_data": 0, + "firstBlockRuntimeId": 5850 + }, + "minecraft:soul_soil": { + "bedrock_identifier": "minecraft:soul_soil", + "bedrock_data": 0, + "firstBlockRuntimeId": 5851 + }, + "minecraft:basalt": { + "bedrock_identifier": "minecraft:basalt", + "bedrock_data": 0, + "firstBlockRuntimeId": 5852, + "lastBlockRuntimeId": 5854 + }, + "minecraft:polished_basalt": { + "bedrock_identifier": "minecraft:polished_basalt", + "bedrock_data": 0, + "firstBlockRuntimeId": 5855, + "lastBlockRuntimeId": 5857 + }, + "minecraft:smooth_basalt": { + "bedrock_identifier": "minecraft:smooth_basalt", + "bedrock_data": 0, + "firstBlockRuntimeId": 26557 + }, + "minecraft:soul_torch": { + "bedrock_identifier": "minecraft:soul_torch", + "bedrock_data": 0, + "firstBlockRuntimeId": 5858 + }, + "minecraft:glowstone": { + "bedrock_identifier": "minecraft:glowstone", + "bedrock_data": 0, + "firstBlockRuntimeId": 5863 + }, + "minecraft:infested_stone": { + "bedrock_identifier": "minecraft:monster_egg", + "bedrock_data": 0, + "firstBlockRuntimeId": 6543 + }, + "minecraft:infested_cobblestone": { + "bedrock_identifier": "minecraft:monster_egg", + "bedrock_data": 1, + "firstBlockRuntimeId": 6544 + }, + "minecraft:infested_stone_bricks": { + "bedrock_identifier": "minecraft:monster_egg", + "bedrock_data": 2, + "firstBlockRuntimeId": 6545 + }, + "minecraft:infested_mossy_stone_bricks": { + "bedrock_identifier": "minecraft:monster_egg", + "bedrock_data": 3, + "firstBlockRuntimeId": 6546 + }, + "minecraft:infested_cracked_stone_bricks": { + "bedrock_identifier": "minecraft:monster_egg", + "bedrock_data": 4, + "firstBlockRuntimeId": 6547 + }, + "minecraft:infested_chiseled_stone_bricks": { + "bedrock_identifier": "minecraft:monster_egg", + "bedrock_data": 5, + "firstBlockRuntimeId": 6548 + }, + "minecraft:infested_deepslate": { + "bedrock_identifier": "minecraft:infested_deepslate", + "bedrock_data": 0, + "firstBlockRuntimeId": 26554, + "lastBlockRuntimeId": 26556 + }, + "minecraft:stone_bricks": { + "bedrock_identifier": "minecraft:stonebrick", + "bedrock_data": 0, + "firstBlockRuntimeId": 6537 + }, + "minecraft:mossy_stone_bricks": { + "bedrock_identifier": "minecraft:stonebrick", + "bedrock_data": 1, + "firstBlockRuntimeId": 6538 + }, + "minecraft:cracked_stone_bricks": { + "bedrock_identifier": "minecraft:stonebrick", + "bedrock_data": 2, + "firstBlockRuntimeId": 6539 + }, + "minecraft:chiseled_stone_bricks": { + "bedrock_identifier": "minecraft:stonebrick", + "bedrock_data": 3, + "firstBlockRuntimeId": 6540 + }, + "minecraft:packed_mud": { + "bedrock_identifier": "minecraft:packed_mud", + "bedrock_data": 0, + "firstBlockRuntimeId": 6541 + }, + "minecraft:mud_bricks": { + "bedrock_identifier": "minecraft:mud_bricks", + "bedrock_data": 0, + "firstBlockRuntimeId": 6542 + }, + "minecraft:deepslate_bricks": { + "bedrock_identifier": "minecraft:deepslate_bricks", + "bedrock_data": 0, + "firstBlockRuntimeId": 26140 + }, + "minecraft:cracked_deepslate_bricks": { + "bedrock_identifier": "minecraft:cracked_deepslate_bricks", + "bedrock_data": 0, + "firstBlockRuntimeId": 26552 + }, + "minecraft:deepslate_tiles": { + "bedrock_identifier": "minecraft:deepslate_tiles", + "bedrock_data": 0, + "firstBlockRuntimeId": 25729 + }, + "minecraft:cracked_deepslate_tiles": { + "bedrock_identifier": "minecraft:cracked_deepslate_tiles", + "bedrock_data": 0, + "firstBlockRuntimeId": 26553 + }, + "minecraft:chiseled_deepslate": { + "bedrock_identifier": "minecraft:chiseled_deepslate", + "bedrock_data": 0, + "firstBlockRuntimeId": 26551 + }, + "minecraft:reinforced_deepslate": { + "bedrock_identifier": "minecraft:reinforced_deepslate", + "bedrock_data": 0, + "firstBlockRuntimeId": 26573 + }, + "minecraft:brown_mushroom_block": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "bedrock_data": 14, + "firstBlockRuntimeId": 6549, + "lastBlockRuntimeId": 6612 + }, + "minecraft:red_mushroom_block": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "bedrock_data": 14, + "firstBlockRuntimeId": 6613, + "lastBlockRuntimeId": 6676 + }, + "minecraft:mushroom_stem": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "bedrock_data": 15, + "firstBlockRuntimeId": 6677, + "lastBlockRuntimeId": 6740 + }, + "minecraft:iron_bars": { + "bedrock_identifier": "minecraft:iron_bars", + "bedrock_data": 0, + "firstBlockRuntimeId": 6741, + "lastBlockRuntimeId": 6772 + }, + "minecraft:chain": { + "bedrock_identifier": "minecraft:chain", + "bedrock_data": 0, + "firstBlockRuntimeId": 6773, + "lastBlockRuntimeId": 6778 + }, + "minecraft:glass_pane": { + "bedrock_identifier": "minecraft:glass_pane", + "bedrock_data": 0, + "firstBlockRuntimeId": 6779, + "lastBlockRuntimeId": 6810 + }, + "minecraft:melon": { + "bedrock_identifier": "minecraft:melon_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 6812 + }, + "minecraft:vine": { + "bedrock_identifier": "minecraft:vine", + "bedrock_data": 0, + "firstBlockRuntimeId": 6837, + "lastBlockRuntimeId": 6868 + }, + "minecraft:glow_lichen": { + "bedrock_identifier": "minecraft:glow_lichen", + "bedrock_data": 0, + "firstBlockRuntimeId": 6869, + "lastBlockRuntimeId": 6996 + }, + "minecraft:brick_stairs": { + "bedrock_identifier": "minecraft:brick_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 7029, + "lastBlockRuntimeId": 7108 + }, + "minecraft:stone_brick_stairs": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 7109, + "lastBlockRuntimeId": 7188 + }, + "minecraft:mud_brick_stairs": { + "bedrock_identifier": "minecraft:mud_brick_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 7189, + "lastBlockRuntimeId": 7268 + }, + "minecraft:mycelium": { + "bedrock_identifier": "minecraft:mycelium", + "bedrock_data": 0, + "firstBlockRuntimeId": 7269, + "lastBlockRuntimeId": 7270 + }, + "minecraft:lily_pad": { + "bedrock_identifier": "minecraft:waterlily", + "bedrock_data": 0, + "firstBlockRuntimeId": 7271 + }, + "minecraft:nether_bricks": { + "bedrock_identifier": "minecraft:nether_brick", + "bedrock_data": 0, + "firstBlockRuntimeId": 7272 + }, + "minecraft:cracked_nether_bricks": { + "bedrock_identifier": "minecraft:cracked_nether_bricks", + "bedrock_data": 0, + "firstBlockRuntimeId": 20723 + }, + "minecraft:chiseled_nether_bricks": { + "bedrock_identifier": "minecraft:chiseled_nether_bricks", + "bedrock_data": 0, + "firstBlockRuntimeId": 20722 + }, + "minecraft:nether_brick_fence": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "bedrock_data": 0, + "firstBlockRuntimeId": 7273, + "lastBlockRuntimeId": 7304 + }, + "minecraft:nether_brick_stairs": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 7305, + "lastBlockRuntimeId": 7384 + }, + "minecraft:sculk": { + "bedrock_identifier": "minecraft:sculk", + "bedrock_data": 0, + "firstBlockRuntimeId": 22799 + }, + "minecraft:sculk_vein": { + "bedrock_identifier": "minecraft:sculk_vein", + "bedrock_data": 0, + "firstBlockRuntimeId": 22800, + "lastBlockRuntimeId": 22927 + }, + "minecraft:sculk_catalyst": { + "bedrock_identifier": "minecraft:sculk_catalyst", + "bedrock_data": 0, + "firstBlockRuntimeId": 22928, + "lastBlockRuntimeId": 22929 + }, + "minecraft:sculk_shrieker": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "bedrock_data": 0, + "firstBlockRuntimeId": 22930, + "lastBlockRuntimeId": 22937 + }, + "minecraft:enchanting_table": { + "bedrock_identifier": "minecraft:enchanting_table", + "bedrock_data": 0, + "firstBlockRuntimeId": 7389 + }, + "minecraft:end_portal_frame": { + "bedrock_identifier": "minecraft:end_portal_frame", + "bedrock_data": 0, + "firstBlockRuntimeId": 7407, + "lastBlockRuntimeId": 7414 + }, + "minecraft:end_stone": { + "bedrock_identifier": "minecraft:end_stone", + "bedrock_data": 0, + "firstBlockRuntimeId": 7415 + }, + "minecraft:end_stone_bricks": { + "bedrock_identifier": "minecraft:end_bricks", + "bedrock_data": 0, + "firstBlockRuntimeId": 12494 + }, + "minecraft:dragon_egg": { + "bedrock_identifier": "minecraft:dragon_egg", + "bedrock_data": 0, + "firstBlockRuntimeId": 7416 + }, + "minecraft:sandstone_stairs": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 7431, + "lastBlockRuntimeId": 7510 + }, + "minecraft:ender_chest": { + "bedrock_identifier": "minecraft:ender_chest", + "bedrock_data": 0, + "firstBlockRuntimeId": 7513, + "lastBlockRuntimeId": 7520 + }, + "minecraft:emerald_block": { + "bedrock_identifier": "minecraft:emerald_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 7665 + }, + "minecraft:oak_stairs": { + "bedrock_identifier": "minecraft:oak_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 2874, + "lastBlockRuntimeId": 2953 + }, + "minecraft:spruce_stairs": { + "bedrock_identifier": "minecraft:spruce_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 7666, + "lastBlockRuntimeId": 7745 + }, + "minecraft:birch_stairs": { + "bedrock_identifier": "minecraft:birch_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 7746, + "lastBlockRuntimeId": 7825 + }, + "minecraft:jungle_stairs": { + "bedrock_identifier": "minecraft:jungle_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 7826, + "lastBlockRuntimeId": 7905 + }, + "minecraft:acacia_stairs": { + "bedrock_identifier": "minecraft:acacia_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 9884, + "lastBlockRuntimeId": 9963 + }, + "minecraft:cherry_stairs": { + "bedrock_identifier": "minecraft:cherry_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 9964, + "lastBlockRuntimeId": 10043 + }, + "minecraft:dark_oak_stairs": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 10044, + "lastBlockRuntimeId": 10123 + }, + "minecraft:mangrove_stairs": { + "bedrock_identifier": "minecraft:mangrove_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 10124, + "lastBlockRuntimeId": 10203 + }, + "minecraft:bamboo_stairs": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 10204, + "lastBlockRuntimeId": 10283 + }, + "minecraft:bamboo_mosaic_stairs": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 10284, + "lastBlockRuntimeId": 10363 + }, + "minecraft:crimson_stairs": { + "bedrock_identifier": "minecraft:crimson_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 18940, + "lastBlockRuntimeId": 19019 + }, + "minecraft:warped_stairs": { + "bedrock_identifier": "minecraft:warped_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 19020, + "lastBlockRuntimeId": 19099 + }, + "minecraft:command_block": { + "bedrock_identifier": "minecraft:command_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 7906, + "lastBlockRuntimeId": 7917 + }, + "minecraft:beacon": { + "bedrock_identifier": "minecraft:beacon", + "bedrock_data": 0, + "firstBlockRuntimeId": 7918 + }, + "minecraft:cobblestone_wall": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "bedrock_data": 0, + "firstBlockRuntimeId": 7919, + "lastBlockRuntimeId": 8242 + }, + "minecraft:mossy_cobblestone_wall": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "bedrock_data": 1, + "firstBlockRuntimeId": 8243, + "lastBlockRuntimeId": 8566 + }, + "minecraft:brick_wall": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "bedrock_data": 6, + "firstBlockRuntimeId": 14160, + "lastBlockRuntimeId": 14483 + }, + "minecraft:prismarine_wall": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "bedrock_data": 11, + "firstBlockRuntimeId": 14484, + "lastBlockRuntimeId": 14807 + }, + "minecraft:red_sandstone_wall": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "bedrock_data": 12, + "firstBlockRuntimeId": 14808, + "lastBlockRuntimeId": 15131 + }, + "minecraft:mossy_stone_brick_wall": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "bedrock_data": 8, + "firstBlockRuntimeId": 15132, + "lastBlockRuntimeId": 15455 + }, + "minecraft:granite_wall": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "bedrock_data": 2, + "firstBlockRuntimeId": 15456, + "lastBlockRuntimeId": 15779 + }, + "minecraft:stone_brick_wall": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "bedrock_data": 7, + "firstBlockRuntimeId": 15780, + "lastBlockRuntimeId": 16103 + }, + "minecraft:mud_brick_wall": { + "bedrock_identifier": "minecraft:mud_brick_wall", + "bedrock_data": 0, + "firstBlockRuntimeId": 16104, + "lastBlockRuntimeId": 16427 + }, + "minecraft:nether_brick_wall": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "bedrock_data": 9, + "firstBlockRuntimeId": 16428, + "lastBlockRuntimeId": 16751 + }, + "minecraft:andesite_wall": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "bedrock_data": 4, + "firstBlockRuntimeId": 16752, + "lastBlockRuntimeId": 17075 + }, + "minecraft:red_nether_brick_wall": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "bedrock_data": 13, + "firstBlockRuntimeId": 17076, + "lastBlockRuntimeId": 17399 + }, + "minecraft:sandstone_wall": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "bedrock_data": 5, + "firstBlockRuntimeId": 17400, + "lastBlockRuntimeId": 17723 + }, + "minecraft:end_stone_brick_wall": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "bedrock_data": 10, + "firstBlockRuntimeId": 17724, + "lastBlockRuntimeId": 18047 + }, + "minecraft:diorite_wall": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "bedrock_data": 3, + "firstBlockRuntimeId": 18048, + "lastBlockRuntimeId": 18371 + }, + "minecraft:blackstone_wall": { + "bedrock_identifier": "minecraft:blackstone_wall", + "bedrock_data": 0, + "firstBlockRuntimeId": 19541, + "lastBlockRuntimeId": 19864 + }, + "minecraft:polished_blackstone_wall": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "bedrock_data": 0, + "firstBlockRuntimeId": 20398, + "lastBlockRuntimeId": 20721 + }, + "minecraft:polished_blackstone_brick_wall": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "bedrock_data": 0, + "firstBlockRuntimeId": 19961, + "lastBlockRuntimeId": 20284 + }, + "minecraft:cobbled_deepslate_wall": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "bedrock_data": 0, + "firstBlockRuntimeId": 24994, + "lastBlockRuntimeId": 25317 + }, + "minecraft:polished_deepslate_wall": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "bedrock_data": 0, + "firstBlockRuntimeId": 25405, + "lastBlockRuntimeId": 25728 + }, + "minecraft:deepslate_brick_wall": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "bedrock_data": 0, + "firstBlockRuntimeId": 26227, + "lastBlockRuntimeId": 26550 + }, + "minecraft:deepslate_tile_wall": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "bedrock_data": 0, + "firstBlockRuntimeId": 25816, + "lastBlockRuntimeId": 26139 + }, + "minecraft:anvil": { + "bedrock_identifier": "minecraft:anvil", + "bedrock_data": 0, + "firstBlockRuntimeId": 9107, + "lastBlockRuntimeId": 9110 + }, + "minecraft:chipped_anvil": { + "bedrock_identifier": "minecraft:anvil", + "bedrock_data": 4, + "firstBlockRuntimeId": 9111, + "lastBlockRuntimeId": 9114 + }, + "minecraft:damaged_anvil": { + "bedrock_identifier": "minecraft:anvil", + "bedrock_data": 8, + "firstBlockRuntimeId": 9115, + "lastBlockRuntimeId": 9118 + }, + "minecraft:chiseled_quartz_block": { + "bedrock_identifier": "minecraft:quartz_block", + "bedrock_data": 1, + "firstBlockRuntimeId": 9236 + }, + "minecraft:quartz_block": { + "bedrock_identifier": "minecraft:quartz_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 9235 + }, + "minecraft:quartz_bricks": { + "bedrock_identifier": "minecraft:quartz_bricks", + "bedrock_data": 0, + "firstBlockRuntimeId": 20724 + }, + "minecraft:quartz_pillar": { + "bedrock_identifier": "minecraft:quartz_block", + "bedrock_data": 2, + "firstBlockRuntimeId": 9237, + "lastBlockRuntimeId": 9239 + }, + "minecraft:quartz_stairs": { + "bedrock_identifier": "minecraft:quartz_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 9240, + "lastBlockRuntimeId": 9319 + }, + "minecraft:white_terracotta": { + "bedrock_identifier": "minecraft:white_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 9356 + }, + "minecraft:orange_terracotta": { + "bedrock_identifier": "minecraft:orange_terracotta", + "bedrock_data": 1, + "firstBlockRuntimeId": 9357 + }, + "minecraft:magenta_terracotta": { + "bedrock_identifier": "minecraft:magenta_terracotta", + "bedrock_data": 2, + "firstBlockRuntimeId": 9358 + }, + "minecraft:light_blue_terracotta": { + "bedrock_identifier": "minecraft:light_blue_terracotta", + "bedrock_data": 3, + "firstBlockRuntimeId": 9359 + }, + "minecraft:yellow_terracotta": { + "bedrock_identifier": "minecraft:yellow_terracotta", + "bedrock_data": 4, + "firstBlockRuntimeId": 9360 + }, + "minecraft:lime_terracotta": { + "bedrock_identifier": "minecraft:lime_terracotta", + "bedrock_data": 5, + "firstBlockRuntimeId": 9361 + }, + "minecraft:pink_terracotta": { + "bedrock_identifier": "minecraft:pink_terracotta", + "bedrock_data": 6, + "firstBlockRuntimeId": 9362 + }, + "minecraft:gray_terracotta": { + "bedrock_identifier": "minecraft:gray_terracotta", + "bedrock_data": 7, + "firstBlockRuntimeId": 9363 + }, + "minecraft:light_gray_terracotta": { + "bedrock_identifier": "minecraft:light_gray_terracotta", + "bedrock_data": 8, + "firstBlockRuntimeId": 9364 + }, + "minecraft:cyan_terracotta": { + "bedrock_identifier": "minecraft:cyan_terracotta", + "bedrock_data": 9, + "firstBlockRuntimeId": 9365 + }, + "minecraft:purple_terracotta": { + "bedrock_identifier": "minecraft:purple_terracotta", + "bedrock_data": 10, + "firstBlockRuntimeId": 9366 + }, + "minecraft:blue_terracotta": { + "bedrock_identifier": "minecraft:blue_terracotta", + "bedrock_data": 11, + "firstBlockRuntimeId": 9367 + }, + "minecraft:brown_terracotta": { + "bedrock_identifier": "minecraft:brown_terracotta", + "bedrock_data": 12, + "firstBlockRuntimeId": 9368 + }, + "minecraft:green_terracotta": { + "bedrock_identifier": "minecraft:green_terracotta", + "bedrock_data": 13, + "firstBlockRuntimeId": 9369 + }, + "minecraft:red_terracotta": { + "bedrock_identifier": "minecraft:red_terracotta", + "bedrock_data": 14, + "firstBlockRuntimeId": 9370 + }, + "minecraft:black_terracotta": { + "bedrock_identifier": "minecraft:black_terracotta", + "bedrock_data": 15, + "firstBlockRuntimeId": 9371 + }, + "minecraft:barrier": { + "bedrock_identifier": "minecraft:barrier", + "bedrock_data": 0, + "firstBlockRuntimeId": 10365, + "lastBlockRuntimeId": 10366 + }, + "minecraft:light": { + "bedrock_identifier": "minecraft:light_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 10367, + "lastBlockRuntimeId": 10398 + }, + "minecraft:hay_block": { + "bedrock_identifier": "minecraft:hay_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 10725, + "lastBlockRuntimeId": 10727 + }, + "minecraft:white_carpet": { + "bedrock_identifier": "minecraft:white_carpet", + "bedrock_data": 0, + "firstBlockRuntimeId": 10728 + }, + "minecraft:orange_carpet": { + "bedrock_identifier": "minecraft:orange_carpet", + "bedrock_data": 1, + "firstBlockRuntimeId": 10729 + }, + "minecraft:magenta_carpet": { + "bedrock_identifier": "minecraft:magenta_carpet", + "bedrock_data": 2, + "firstBlockRuntimeId": 10730 + }, + "minecraft:light_blue_carpet": { + "bedrock_identifier": "minecraft:light_blue_carpet", + "bedrock_data": 3, + "firstBlockRuntimeId": 10731 + }, + "minecraft:yellow_carpet": { + "bedrock_identifier": "minecraft:yellow_carpet", + "bedrock_data": 4, + "firstBlockRuntimeId": 10732 + }, + "minecraft:lime_carpet": { + "bedrock_identifier": "minecraft:lime_carpet", + "bedrock_data": 5, + "firstBlockRuntimeId": 10733 + }, + "minecraft:pink_carpet": { + "bedrock_identifier": "minecraft:pink_carpet", + "bedrock_data": 6, + "firstBlockRuntimeId": 10734 + }, + "minecraft:gray_carpet": { + "bedrock_identifier": "minecraft:gray_carpet", + "bedrock_data": 7, + "firstBlockRuntimeId": 10735 + }, + "minecraft:light_gray_carpet": { + "bedrock_identifier": "minecraft:light_gray_carpet", + "bedrock_data": 8, + "firstBlockRuntimeId": 10736 + }, + "minecraft:cyan_carpet": { + "bedrock_identifier": "minecraft:cyan_carpet", + "bedrock_data": 9, + "firstBlockRuntimeId": 10737 + }, + "minecraft:purple_carpet": { + "bedrock_identifier": "minecraft:purple_carpet", + "bedrock_data": 10, + "firstBlockRuntimeId": 10738 + }, + "minecraft:blue_carpet": { + "bedrock_identifier": "minecraft:blue_carpet", + "bedrock_data": 11, + "firstBlockRuntimeId": 10739 + }, + "minecraft:brown_carpet": { + "bedrock_identifier": "minecraft:brown_carpet", + "bedrock_data": 12, + "firstBlockRuntimeId": 10740 + }, + "minecraft:green_carpet": { + "bedrock_identifier": "minecraft:green_carpet", + "bedrock_data": 13, + "firstBlockRuntimeId": 10741 + }, + "minecraft:red_carpet": { + "bedrock_identifier": "minecraft:red_carpet", + "bedrock_data": 14, + "firstBlockRuntimeId": 10742 + }, + "minecraft:black_carpet": { + "bedrock_identifier": "minecraft:black_carpet", + "bedrock_data": 15, + "firstBlockRuntimeId": 10743 + }, + "minecraft:terracotta": { + "bedrock_identifier": "minecraft:hardened_clay", + "bedrock_data": 0, + "firstBlockRuntimeId": 10744 + }, + "minecraft:packed_ice": { + "bedrock_identifier": "minecraft:packed_ice", + "bedrock_data": 0, + "firstBlockRuntimeId": 10746 + }, + "minecraft:dirt_path": { + "bedrock_identifier": "minecraft:grass_path", + "bedrock_data": 0, + "firstBlockRuntimeId": 12513 + }, + "minecraft:sunflower": { + "bedrock_identifier": "minecraft:sunflower", + "bedrock_data": 0, + "firstBlockRuntimeId": 10747, + "lastBlockRuntimeId": 10748 + }, + "minecraft:lilac": { + "bedrock_identifier": "minecraft:lilac", + "bedrock_data": 0, + "firstBlockRuntimeId": 10749, + "lastBlockRuntimeId": 10750 + }, + "minecraft:rose_bush": { + "bedrock_identifier": "minecraft:rose_bush", + "bedrock_data": 0, + "firstBlockRuntimeId": 10751, + "lastBlockRuntimeId": 10752 + }, + "minecraft:peony": { + "bedrock_identifier": "minecraft:peony", + "bedrock_data": 0, + "firstBlockRuntimeId": 10753, + "lastBlockRuntimeId": 10754 + }, + "minecraft:tall_grass": { + "bedrock_identifier": "minecraft:tall_grass", + "bedrock_data": 0, + "firstBlockRuntimeId": 10755, + "lastBlockRuntimeId": 10756 + }, + "minecraft:large_fern": { + "bedrock_identifier": "minecraft:large_fern", + "bedrock_data": 0, + "firstBlockRuntimeId": 10757, + "lastBlockRuntimeId": 10758 + }, + "minecraft:white_stained_glass": { + "bedrock_identifier": "minecraft:white_stained_glass", + "bedrock_data": 0, + "firstBlockRuntimeId": 5945 + }, + "minecraft:orange_stained_glass": { + "bedrock_identifier": "minecraft:orange_stained_glass", + "bedrock_data": 1, + "firstBlockRuntimeId": 5946 + }, + "minecraft:magenta_stained_glass": { + "bedrock_identifier": "minecraft:magenta_stained_glass", + "bedrock_data": 2, + "firstBlockRuntimeId": 5947 + }, + "minecraft:light_blue_stained_glass": { + "bedrock_identifier": "minecraft:light_blue_stained_glass", + "bedrock_data": 3, + "firstBlockRuntimeId": 5948 + }, + "minecraft:yellow_stained_glass": { + "bedrock_identifier": "minecraft:yellow_stained_glass", + "bedrock_data": 4, + "firstBlockRuntimeId": 5949 + }, + "minecraft:lime_stained_glass": { + "bedrock_identifier": "minecraft:lime_stained_glass", + "bedrock_data": 5, + "firstBlockRuntimeId": 5950 + }, + "minecraft:pink_stained_glass": { + "bedrock_identifier": "minecraft:pink_stained_glass", + "bedrock_data": 6, + "firstBlockRuntimeId": 5951 + }, + "minecraft:gray_stained_glass": { + "bedrock_identifier": "minecraft:gray_stained_glass", + "bedrock_data": 7, + "firstBlockRuntimeId": 5952 + }, + "minecraft:light_gray_stained_glass": { + "bedrock_identifier": "minecraft:light_gray_stained_glass", + "bedrock_data": 8, + "firstBlockRuntimeId": 5953 + }, + "minecraft:cyan_stained_glass": { + "bedrock_identifier": "minecraft:cyan_stained_glass", + "bedrock_data": 9, + "firstBlockRuntimeId": 5954 + }, + "minecraft:purple_stained_glass": { + "bedrock_identifier": "minecraft:purple_stained_glass", + "bedrock_data": 10, + "firstBlockRuntimeId": 5955 + }, + "minecraft:blue_stained_glass": { + "bedrock_identifier": "minecraft:blue_stained_glass", + "bedrock_data": 11, + "firstBlockRuntimeId": 5956 + }, + "minecraft:brown_stained_glass": { + "bedrock_identifier": "minecraft:brown_stained_glass", + "bedrock_data": 12, + "firstBlockRuntimeId": 5957 + }, + "minecraft:green_stained_glass": { + "bedrock_identifier": "minecraft:green_stained_glass", + "bedrock_data": 13, + "firstBlockRuntimeId": 5958 + }, + "minecraft:red_stained_glass": { + "bedrock_identifier": "minecraft:red_stained_glass", + "bedrock_data": 14, + "firstBlockRuntimeId": 5959 + }, + "minecraft:black_stained_glass": { + "bedrock_identifier": "minecraft:black_stained_glass", + "bedrock_data": 15, + "firstBlockRuntimeId": 5960 + }, + "minecraft:white_stained_glass_pane": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "bedrock_data": 0, + "firstBlockRuntimeId": 9372, + "lastBlockRuntimeId": 9403 + }, + "minecraft:orange_stained_glass_pane": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "bedrock_data": 1, + "firstBlockRuntimeId": 9404, + "lastBlockRuntimeId": 9435 + }, + "minecraft:magenta_stained_glass_pane": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "bedrock_data": 2, + "firstBlockRuntimeId": 9436, + "lastBlockRuntimeId": 9467 + }, + "minecraft:light_blue_stained_glass_pane": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "bedrock_data": 3, + "firstBlockRuntimeId": 9468, + "lastBlockRuntimeId": 9499 + }, + "minecraft:yellow_stained_glass_pane": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "bedrock_data": 4, + "firstBlockRuntimeId": 9500, + "lastBlockRuntimeId": 9531 + }, + "minecraft:lime_stained_glass_pane": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "bedrock_data": 5, + "firstBlockRuntimeId": 9532, + "lastBlockRuntimeId": 9563 + }, + "minecraft:pink_stained_glass_pane": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "bedrock_data": 6, + "firstBlockRuntimeId": 9564, + "lastBlockRuntimeId": 9595 + }, + "minecraft:gray_stained_glass_pane": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "bedrock_data": 7, + "firstBlockRuntimeId": 9596, + "lastBlockRuntimeId": 9627 + }, + "minecraft:light_gray_stained_glass_pane": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "bedrock_data": 8, + "firstBlockRuntimeId": 9628, + "lastBlockRuntimeId": 9659 + }, + "minecraft:cyan_stained_glass_pane": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "bedrock_data": 9, + "firstBlockRuntimeId": 9660, + "lastBlockRuntimeId": 9691 + }, + "minecraft:purple_stained_glass_pane": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "bedrock_data": 10, + "firstBlockRuntimeId": 9692, + "lastBlockRuntimeId": 9723 + }, + "minecraft:blue_stained_glass_pane": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "bedrock_data": 11, + "firstBlockRuntimeId": 9724, + "lastBlockRuntimeId": 9755 + }, + "minecraft:brown_stained_glass_pane": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "bedrock_data": 12, + "firstBlockRuntimeId": 9756, + "lastBlockRuntimeId": 9787 + }, + "minecraft:green_stained_glass_pane": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "bedrock_data": 13, + "firstBlockRuntimeId": 9788, + "lastBlockRuntimeId": 9819 + }, + "minecraft:red_stained_glass_pane": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "bedrock_data": 14, + "firstBlockRuntimeId": 9820, + "lastBlockRuntimeId": 9851 + }, + "minecraft:black_stained_glass_pane": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "bedrock_data": 15, + "firstBlockRuntimeId": 9852, + "lastBlockRuntimeId": 9883 + }, + "minecraft:prismarine": { + "bedrock_identifier": "minecraft:prismarine", + "bedrock_data": 0, + "firstBlockRuntimeId": 10463 + }, + "minecraft:prismarine_bricks": { + "bedrock_identifier": "minecraft:prismarine", + "bedrock_data": 2, + "firstBlockRuntimeId": 10464 + }, + "minecraft:dark_prismarine": { + "bedrock_identifier": "minecraft:prismarine", + "bedrock_data": 1, + "firstBlockRuntimeId": 10465 + }, + "minecraft:prismarine_stairs": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 10466, + "lastBlockRuntimeId": 10545 + }, + "minecraft:prismarine_brick_stairs": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 10546, + "lastBlockRuntimeId": 10625 + }, + "minecraft:dark_prismarine_stairs": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 10626, + "lastBlockRuntimeId": 10705 + }, + "minecraft:sea_lantern": { + "bedrock_identifier": "minecraft:sea_lantern", + "bedrock_data": 0, + "firstBlockRuntimeId": 10724 + }, + "minecraft:red_sandstone": { + "bedrock_identifier": "minecraft:red_sandstone", + "bedrock_data": 0, + "firstBlockRuntimeId": 11079 + }, + "minecraft:chiseled_red_sandstone": { + "bedrock_identifier": "minecraft:red_sandstone", + "bedrock_data": 1, + "firstBlockRuntimeId": 11080 + }, + "minecraft:cut_red_sandstone": { + "bedrock_identifier": "minecraft:red_sandstone", + "bedrock_data": 2, + "firstBlockRuntimeId": 11081 + }, + "minecraft:red_sandstone_stairs": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 11082, + "lastBlockRuntimeId": 11161 + }, + "minecraft:repeating_command_block": { + "bedrock_identifier": "minecraft:repeating_command_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12515, + "lastBlockRuntimeId": 12526 + }, + "minecraft:chain_command_block": { + "bedrock_identifier": "minecraft:chain_command_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12527, + "lastBlockRuntimeId": 12538 + }, + "minecraft:magma_block": { + "bedrock_identifier": "minecraft:magma", + "bedrock_data": 0, + "firstBlockRuntimeId": 12543 + }, + "minecraft:nether_wart_block": { + "bedrock_identifier": "minecraft:nether_wart_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12544 + }, + "minecraft:warped_wart_block": { + "bedrock_identifier": "minecraft:warped_wart_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 18593 + }, + "minecraft:red_nether_bricks": { + "bedrock_identifier": "minecraft:red_nether_brick", + "bedrock_data": 0, + "firstBlockRuntimeId": 12545 + }, + "minecraft:bone_block": { + "bedrock_identifier": "minecraft:bone_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12546, + "lastBlockRuntimeId": 12548 + }, + "minecraft:structure_void": { + "bedrock_identifier": "minecraft:structure_void", + "bedrock_data": 0, + "firstBlockRuntimeId": 12549 + }, + "minecraft:shulker_box": { + "bedrock_identifier": "minecraft:undyed_shulker_box", + "bedrock_data": 0, + "firstBlockRuntimeId": 12562, + "lastBlockRuntimeId": 12567 + }, + "minecraft:white_shulker_box": { + "bedrock_identifier": "minecraft:white_shulker_box", + "bedrock_data": 0, + "firstBlockRuntimeId": 12568, + "lastBlockRuntimeId": 12573 + }, + "minecraft:orange_shulker_box": { + "bedrock_identifier": "minecraft:orange_shulker_box", + "bedrock_data": 1, + "firstBlockRuntimeId": 12574, + "lastBlockRuntimeId": 12579 + }, + "minecraft:magenta_shulker_box": { + "bedrock_identifier": "minecraft:magenta_shulker_box", + "bedrock_data": 2, + "firstBlockRuntimeId": 12580, + "lastBlockRuntimeId": 12585 + }, + "minecraft:light_blue_shulker_box": { + "bedrock_identifier": "minecraft:light_blue_shulker_box", + "bedrock_data": 3, + "firstBlockRuntimeId": 12586, + "lastBlockRuntimeId": 12591 + }, + "minecraft:yellow_shulker_box": { + "bedrock_identifier": "minecraft:yellow_shulker_box", + "bedrock_data": 4, + "firstBlockRuntimeId": 12592, + "lastBlockRuntimeId": 12597 + }, + "minecraft:lime_shulker_box": { + "bedrock_identifier": "minecraft:lime_shulker_box", + "bedrock_data": 5, + "firstBlockRuntimeId": 12598, + "lastBlockRuntimeId": 12603 + }, + "minecraft:pink_shulker_box": { + "bedrock_identifier": "minecraft:pink_shulker_box", + "bedrock_data": 6, + "firstBlockRuntimeId": 12604, + "lastBlockRuntimeId": 12609 + }, + "minecraft:gray_shulker_box": { + "bedrock_identifier": "minecraft:gray_shulker_box", + "bedrock_data": 7, + "firstBlockRuntimeId": 12610, + "lastBlockRuntimeId": 12615 + }, + "minecraft:light_gray_shulker_box": { + "bedrock_identifier": "minecraft:light_gray_shulker_box", + "bedrock_data": 8, + "firstBlockRuntimeId": 12616, + "lastBlockRuntimeId": 12621 + }, + "minecraft:cyan_shulker_box": { + "bedrock_identifier": "minecraft:cyan_shulker_box", + "bedrock_data": 9, + "firstBlockRuntimeId": 12622, + "lastBlockRuntimeId": 12627 + }, + "minecraft:purple_shulker_box": { + "bedrock_identifier": "minecraft:purple_shulker_box", + "bedrock_data": 10, + "firstBlockRuntimeId": 12628, + "lastBlockRuntimeId": 12633 + }, + "minecraft:blue_shulker_box": { + "bedrock_identifier": "minecraft:blue_shulker_box", + "bedrock_data": 11, + "firstBlockRuntimeId": 12634, + "lastBlockRuntimeId": 12639 + }, + "minecraft:brown_shulker_box": { + "bedrock_identifier": "minecraft:brown_shulker_box", + "bedrock_data": 12, + "firstBlockRuntimeId": 12640, + "lastBlockRuntimeId": 12645 + }, + "minecraft:green_shulker_box": { + "bedrock_identifier": "minecraft:green_shulker_box", + "bedrock_data": 13, + "firstBlockRuntimeId": 12646, + "lastBlockRuntimeId": 12651 + }, + "minecraft:red_shulker_box": { + "bedrock_identifier": "minecraft:red_shulker_box", + "bedrock_data": 14, + "firstBlockRuntimeId": 12652, + "lastBlockRuntimeId": 12657 + }, + "minecraft:black_shulker_box": { + "bedrock_identifier": "minecraft:black_shulker_box", + "bedrock_data": 15, + "firstBlockRuntimeId": 12658, + "lastBlockRuntimeId": 12663 + }, + "minecraft:white_glazed_terracotta": { + "bedrock_identifier": "minecraft:white_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12664, + "lastBlockRuntimeId": 12667 + }, + "minecraft:orange_glazed_terracotta": { + "bedrock_identifier": "minecraft:orange_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12668, + "lastBlockRuntimeId": 12671 + }, + "minecraft:magenta_glazed_terracotta": { + "bedrock_identifier": "minecraft:magenta_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12672, + "lastBlockRuntimeId": 12675 + }, + "minecraft:light_blue_glazed_terracotta": { + "bedrock_identifier": "minecraft:light_blue_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12676, + "lastBlockRuntimeId": 12679 + }, + "minecraft:yellow_glazed_terracotta": { + "bedrock_identifier": "minecraft:yellow_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12680, + "lastBlockRuntimeId": 12683 + }, + "minecraft:lime_glazed_terracotta": { + "bedrock_identifier": "minecraft:lime_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12684, + "lastBlockRuntimeId": 12687 + }, + "minecraft:pink_glazed_terracotta": { + "bedrock_identifier": "minecraft:pink_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12688, + "lastBlockRuntimeId": 12691 + }, + "minecraft:gray_glazed_terracotta": { + "bedrock_identifier": "minecraft:gray_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12692, + "lastBlockRuntimeId": 12695 + }, + "minecraft:light_gray_glazed_terracotta": { + "bedrock_identifier": "minecraft:silver_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12696, + "lastBlockRuntimeId": 12699 + }, + "minecraft:cyan_glazed_terracotta": { + "bedrock_identifier": "minecraft:cyan_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12700, + "lastBlockRuntimeId": 12703 + }, + "minecraft:purple_glazed_terracotta": { + "bedrock_identifier": "minecraft:purple_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12704, + "lastBlockRuntimeId": 12707 + }, + "minecraft:blue_glazed_terracotta": { + "bedrock_identifier": "minecraft:blue_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12708, + "lastBlockRuntimeId": 12711 + }, + "minecraft:brown_glazed_terracotta": { + "bedrock_identifier": "minecraft:brown_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12712, + "lastBlockRuntimeId": 12715 + }, + "minecraft:green_glazed_terracotta": { + "bedrock_identifier": "minecraft:green_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12716, + "lastBlockRuntimeId": 12719 + }, + "minecraft:red_glazed_terracotta": { + "bedrock_identifier": "minecraft:red_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12720, + "lastBlockRuntimeId": 12723 + }, + "minecraft:black_glazed_terracotta": { + "bedrock_identifier": "minecraft:black_glazed_terracotta", + "bedrock_data": 0, + "firstBlockRuntimeId": 12724, + "lastBlockRuntimeId": 12727 + }, + "minecraft:white_concrete": { + "bedrock_identifier": "minecraft:white_concrete", + "bedrock_data": 0, + "firstBlockRuntimeId": 12728 + }, + "minecraft:orange_concrete": { + "bedrock_identifier": "minecraft:orange_concrete", + "bedrock_data": 1, + "firstBlockRuntimeId": 12729 + }, + "minecraft:magenta_concrete": { + "bedrock_identifier": "minecraft:magenta_concrete", + "bedrock_data": 2, + "firstBlockRuntimeId": 12730 + }, + "minecraft:light_blue_concrete": { + "bedrock_identifier": "minecraft:light_blue_concrete", + "bedrock_data": 3, + "firstBlockRuntimeId": 12731 + }, + "minecraft:yellow_concrete": { + "bedrock_identifier": "minecraft:yellow_concrete", + "bedrock_data": 4, + "firstBlockRuntimeId": 12732 + }, + "minecraft:lime_concrete": { + "bedrock_identifier": "minecraft:lime_concrete", + "bedrock_data": 5, + "firstBlockRuntimeId": 12733 + }, + "minecraft:pink_concrete": { + "bedrock_identifier": "minecraft:pink_concrete", + "bedrock_data": 6, + "firstBlockRuntimeId": 12734 + }, + "minecraft:gray_concrete": { + "bedrock_identifier": "minecraft:gray_concrete", + "bedrock_data": 7, + "firstBlockRuntimeId": 12735 + }, + "minecraft:light_gray_concrete": { + "bedrock_identifier": "minecraft:light_gray_concrete", + "bedrock_data": 8, + "firstBlockRuntimeId": 12736 + }, + "minecraft:cyan_concrete": { + "bedrock_identifier": "minecraft:cyan_concrete", + "bedrock_data": 9, + "firstBlockRuntimeId": 12737 + }, + "minecraft:purple_concrete": { + "bedrock_identifier": "minecraft:purple_concrete", + "bedrock_data": 10, + "firstBlockRuntimeId": 12738 + }, + "minecraft:blue_concrete": { + "bedrock_identifier": "minecraft:blue_concrete", + "bedrock_data": 11, + "firstBlockRuntimeId": 12739 + }, + "minecraft:brown_concrete": { + "bedrock_identifier": "minecraft:brown_concrete", + "bedrock_data": 12, + "firstBlockRuntimeId": 12740 + }, + "minecraft:green_concrete": { + "bedrock_identifier": "minecraft:green_concrete", + "bedrock_data": 13, + "firstBlockRuntimeId": 12741 + }, + "minecraft:red_concrete": { + "bedrock_identifier": "minecraft:red_concrete", + "bedrock_data": 14, + "firstBlockRuntimeId": 12742 + }, + "minecraft:black_concrete": { + "bedrock_identifier": "minecraft:black_concrete", + "bedrock_data": 15, + "firstBlockRuntimeId": 12743 + }, + "minecraft:white_concrete_powder": { + "bedrock_identifier": "minecraft:white_concrete_powder", + "bedrock_data": 0, + "firstBlockRuntimeId": 12744 + }, + "minecraft:orange_concrete_powder": { + "bedrock_identifier": "minecraft:orange_concrete_powder", + "bedrock_data": 1, + "firstBlockRuntimeId": 12745 + }, + "minecraft:magenta_concrete_powder": { + "bedrock_identifier": "minecraft:magenta_concrete_powder", + "bedrock_data": 2, + "firstBlockRuntimeId": 12746 + }, + "minecraft:light_blue_concrete_powder": { + "bedrock_identifier": "minecraft:light_blue_concrete_powder", + "bedrock_data": 3, + "firstBlockRuntimeId": 12747 + }, + "minecraft:yellow_concrete_powder": { + "bedrock_identifier": "minecraft:yellow_concrete_powder", + "bedrock_data": 4, + "firstBlockRuntimeId": 12748 + }, + "minecraft:lime_concrete_powder": { + "bedrock_identifier": "minecraft:lime_concrete_powder", + "bedrock_data": 5, + "firstBlockRuntimeId": 12749 + }, + "minecraft:pink_concrete_powder": { + "bedrock_identifier": "minecraft:pink_concrete_powder", + "bedrock_data": 6, + "firstBlockRuntimeId": 12750 + }, + "minecraft:gray_concrete_powder": { + "bedrock_identifier": "minecraft:gray_concrete_powder", + "bedrock_data": 7, + "firstBlockRuntimeId": 12751 + }, + "minecraft:light_gray_concrete_powder": { + "bedrock_identifier": "minecraft:light_gray_concrete_powder", + "bedrock_data": 8, + "firstBlockRuntimeId": 12752 + }, + "minecraft:cyan_concrete_powder": { + "bedrock_identifier": "minecraft:cyan_concrete_powder", + "bedrock_data": 9, + "firstBlockRuntimeId": 12753 + }, + "minecraft:purple_concrete_powder": { + "bedrock_identifier": "minecraft:purple_concrete_powder", + "bedrock_data": 10, + "firstBlockRuntimeId": 12754 + }, + "minecraft:blue_concrete_powder": { + "bedrock_identifier": "minecraft:blue_concrete_powder", + "bedrock_data": 11, + "firstBlockRuntimeId": 12755 + }, + "minecraft:brown_concrete_powder": { + "bedrock_identifier": "minecraft:brown_concrete_powder", + "bedrock_data": 12, + "firstBlockRuntimeId": 12756 + }, + "minecraft:green_concrete_powder": { + "bedrock_identifier": "minecraft:green_concrete_powder", + "bedrock_data": 13, + "firstBlockRuntimeId": 12757 + }, + "minecraft:red_concrete_powder": { + "bedrock_identifier": "minecraft:red_concrete_powder", + "bedrock_data": 14, + "firstBlockRuntimeId": 12758 + }, + "minecraft:black_concrete_powder": { + "bedrock_identifier": "minecraft:black_concrete_powder", + "bedrock_data": 15, + "firstBlockRuntimeId": 12759 + }, + "minecraft:turtle_egg": { + "bedrock_identifier": "minecraft:turtle_egg", + "bedrock_data": 0, + "firstBlockRuntimeId": 12788, + "lastBlockRuntimeId": 12799 + }, + "minecraft:sniffer_egg": { + "bedrock_identifier": "minecraft:sniffer_egg", + "bedrock_data": 0, + "firstBlockRuntimeId": 12800, + "lastBlockRuntimeId": 12802 + }, + "minecraft:dead_tube_coral_block": { + "bedrock_identifier": "minecraft:dead_tube_coral_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12803 + }, + "minecraft:dead_brain_coral_block": { + "bedrock_identifier": "minecraft:dead_brain_coral_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12804 + }, + "minecraft:dead_bubble_coral_block": { + "bedrock_identifier": "minecraft:dead_bubble_coral_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12805 + }, + "minecraft:dead_fire_coral_block": { + "bedrock_identifier": "minecraft:dead_fire_coral_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12806 + }, + "minecraft:dead_horn_coral_block": { + "bedrock_identifier": "minecraft:dead_horn_coral_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12807 + }, + "minecraft:tube_coral_block": { + "bedrock_identifier": "minecraft:tube_coral_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12808 + }, + "minecraft:brain_coral_block": { + "bedrock_identifier": "minecraft:brain_coral_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12809 + }, + "minecraft:bubble_coral_block": { + "bedrock_identifier": "minecraft:bubble_coral_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12810 + }, + "minecraft:fire_coral_block": { + "bedrock_identifier": "minecraft:fire_coral_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12811 + }, + "minecraft:horn_coral_block": { + "bedrock_identifier": "minecraft:horn_coral_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12812 + }, + "minecraft:tube_coral": { + "bedrock_identifier": "minecraft:tube_coral", + "bedrock_data": 0, + "firstBlockRuntimeId": 12823, + "lastBlockRuntimeId": 12824 + }, + "minecraft:brain_coral": { + "bedrock_identifier": "minecraft:brain_coral", + "bedrock_data": 1, + "firstBlockRuntimeId": 12825, + "lastBlockRuntimeId": 12826 + }, + "minecraft:bubble_coral": { + "bedrock_identifier": "minecraft:bubble_coral", + "bedrock_data": 2, + "firstBlockRuntimeId": 12827, + "lastBlockRuntimeId": 12828 + }, + "minecraft:fire_coral": { + "bedrock_identifier": "minecraft:fire_coral", + "bedrock_data": 3, + "firstBlockRuntimeId": 12829, + "lastBlockRuntimeId": 12830 + }, + "minecraft:horn_coral": { + "bedrock_identifier": "minecraft:horn_coral", + "bedrock_data": 4, + "firstBlockRuntimeId": 12831, + "lastBlockRuntimeId": 12832 + }, + "minecraft:dead_brain_coral": { + "bedrock_identifier": "minecraft:dead_brain_coral", + "bedrock_data": 9, + "firstBlockRuntimeId": 12815, + "lastBlockRuntimeId": 12816 + }, + "minecraft:dead_bubble_coral": { + "bedrock_identifier": "minecraft:dead_bubble_coral", + "bedrock_data": 10, + "firstBlockRuntimeId": 12817, + "lastBlockRuntimeId": 12818 + }, + "minecraft:dead_fire_coral": { + "bedrock_identifier": "minecraft:dead_fire_coral", + "bedrock_data": 11, + "firstBlockRuntimeId": 12819, + "lastBlockRuntimeId": 12820 + }, + "minecraft:dead_horn_coral": { + "bedrock_identifier": "minecraft:dead_horn_coral", + "bedrock_data": 12, + "firstBlockRuntimeId": 12821, + "lastBlockRuntimeId": 12822 + }, + "minecraft:dead_tube_coral": { + "bedrock_identifier": "minecraft:dead_tube_coral", + "bedrock_data": 8, + "firstBlockRuntimeId": 12813, + "lastBlockRuntimeId": 12814 + }, + "minecraft:tube_coral_fan": { + "bedrock_identifier": "minecraft:tube_coral_fan", + "bedrock_data": 0, + "firstBlockRuntimeId": 12843, + "lastBlockRuntimeId": 12844 + }, + "minecraft:brain_coral_fan": { + "bedrock_identifier": "minecraft:brain_coral_fan", + "bedrock_data": 0, + "firstBlockRuntimeId": 12845, + "lastBlockRuntimeId": 12846 + }, + "minecraft:bubble_coral_fan": { + "bedrock_identifier": "minecraft:bubble_coral_fan", + "bedrock_data": 0, + "firstBlockRuntimeId": 12847, + "lastBlockRuntimeId": 12848 + }, + "minecraft:fire_coral_fan": { + "bedrock_identifier": "minecraft:fire_coral_fan", + "bedrock_data": 0, + "firstBlockRuntimeId": 12849, + "lastBlockRuntimeId": 12850 + }, + "minecraft:horn_coral_fan": { + "bedrock_identifier": "minecraft:horn_coral_fan", + "bedrock_data": 0, + "firstBlockRuntimeId": 12851, + "lastBlockRuntimeId": 12852 + }, + "minecraft:dead_tube_coral_fan": { + "bedrock_identifier": "minecraft:dead_tube_coral_fan", + "bedrock_data": 0, + "firstBlockRuntimeId": 12833, + "lastBlockRuntimeId": 12834 + }, + "minecraft:dead_brain_coral_fan": { + "bedrock_identifier": "minecraft:dead_brain_coral_fan", + "bedrock_data": 0, + "firstBlockRuntimeId": 12835, + "lastBlockRuntimeId": 12836 + }, + "minecraft:dead_bubble_coral_fan": { + "bedrock_identifier": "minecraft:dead_bubble_coral_fan", + "bedrock_data": 0, + "firstBlockRuntimeId": 12837, + "lastBlockRuntimeId": 12838 + }, + "minecraft:dead_fire_coral_fan": { + "bedrock_identifier": "minecraft:dead_fire_coral_fan", + "bedrock_data": 0, + "firstBlockRuntimeId": 12839, + "lastBlockRuntimeId": 12840 + }, + "minecraft:dead_horn_coral_fan": { + "bedrock_identifier": "minecraft:dead_horn_coral_fan", + "bedrock_data": 0, + "firstBlockRuntimeId": 12841, + "lastBlockRuntimeId": 12842 + }, + "minecraft:blue_ice": { + "bedrock_identifier": "minecraft:blue_ice", + "bedrock_data": 0, + "firstBlockRuntimeId": 12941 + }, + "minecraft:conduit": { + "bedrock_identifier": "minecraft:conduit", + "bedrock_data": 0, + "firstBlockRuntimeId": 12942, + "lastBlockRuntimeId": 12943 + }, + "minecraft:polished_granite_stairs": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 12962, + "lastBlockRuntimeId": 13041 + }, + "minecraft:smooth_red_sandstone_stairs": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 13042, + "lastBlockRuntimeId": 13121 + }, + "minecraft:mossy_stone_brick_stairs": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 13122, + "lastBlockRuntimeId": 13201 + }, + "minecraft:polished_diorite_stairs": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 13202, + "lastBlockRuntimeId": 13281 + }, + "minecraft:mossy_cobblestone_stairs": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 13282, + "lastBlockRuntimeId": 13361 + }, + "minecraft:end_stone_brick_stairs": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 13362, + "lastBlockRuntimeId": 13441 + }, + "minecraft:stone_stairs": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 13442, + "lastBlockRuntimeId": 13521 + }, + "minecraft:smooth_sandstone_stairs": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 13522, + "lastBlockRuntimeId": 13601 + }, + "minecraft:smooth_quartz_stairs": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 13602, + "lastBlockRuntimeId": 13681 + }, + "minecraft:granite_stairs": { + "bedrock_identifier": "minecraft:granite_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 13682, + "lastBlockRuntimeId": 13761 + }, + "minecraft:andesite_stairs": { + "bedrock_identifier": "minecraft:andesite_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 13762, + "lastBlockRuntimeId": 13841 + }, + "minecraft:red_nether_brick_stairs": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 13842, + "lastBlockRuntimeId": 13921 + }, + "minecraft:polished_andesite_stairs": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 13922, + "lastBlockRuntimeId": 14001 + }, + "minecraft:diorite_stairs": { + "bedrock_identifier": "minecraft:diorite_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 14002, + "lastBlockRuntimeId": 14081 + }, + "minecraft:cobbled_deepslate_stairs": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 24908, + "lastBlockRuntimeId": 24987 + }, + "minecraft:polished_deepslate_stairs": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 25319, + "lastBlockRuntimeId": 25398 + }, + "minecraft:deepslate_brick_stairs": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 26141, + "lastBlockRuntimeId": 26220 + }, + "minecraft:deepslate_tile_stairs": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 25730, + "lastBlockRuntimeId": 25809 + }, + "minecraft:polished_granite_slab": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "bedrock_data": 7, + "firstBlockRuntimeId": 14082, + "lastBlockRuntimeId": 14087 + }, + "minecraft:smooth_red_sandstone_slab": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "bedrock_data": 1, + "firstBlockRuntimeId": 14088, + "lastBlockRuntimeId": 14093 + }, + "minecraft:mossy_stone_brick_slab": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "bedrock_data": 0, + "firstBlockRuntimeId": 14094, + "lastBlockRuntimeId": 14099 + }, + "minecraft:polished_diorite_slab": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "bedrock_data": 5, + "firstBlockRuntimeId": 14100, + "lastBlockRuntimeId": 14105 + }, + "minecraft:mossy_cobblestone_slab": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "bedrock_data": 5, + "firstBlockRuntimeId": 14106, + "lastBlockRuntimeId": 14111 + }, + "minecraft:end_stone_brick_slab": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "bedrock_data": 0, + "firstBlockRuntimeId": 14112, + "lastBlockRuntimeId": 14117 + }, + "minecraft:smooth_sandstone_slab": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "bedrock_data": 6, + "firstBlockRuntimeId": 14118, + "lastBlockRuntimeId": 14123 + }, + "minecraft:smooth_quartz_slab": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "bedrock_data": 1, + "firstBlockRuntimeId": 14124, + "lastBlockRuntimeId": 14129 + }, + "minecraft:granite_slab": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "bedrock_data": 6, + "firstBlockRuntimeId": 14130, + "lastBlockRuntimeId": 14135 + }, + "minecraft:andesite_slab": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "bedrock_data": 3, + "firstBlockRuntimeId": 14136, + "lastBlockRuntimeId": 14141 + }, + "minecraft:red_nether_brick_slab": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "bedrock_data": 7, + "firstBlockRuntimeId": 14142, + "lastBlockRuntimeId": 14147 + }, + "minecraft:polished_andesite_slab": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "bedrock_data": 2, + "firstBlockRuntimeId": 14148, + "lastBlockRuntimeId": 14153 + }, + "minecraft:diorite_slab": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "bedrock_data": 4, + "firstBlockRuntimeId": 14154, + "lastBlockRuntimeId": 14159 + }, + "minecraft:cobbled_deepslate_slab": { + "bedrock_identifier": "minecraft:cobbled_deepslate_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 24988, + "lastBlockRuntimeId": 24993 + }, + "minecraft:polished_deepslate_slab": { + "bedrock_identifier": "minecraft:polished_deepslate_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 25399, + "lastBlockRuntimeId": 25404 + }, + "minecraft:deepslate_brick_slab": { + "bedrock_identifier": "minecraft:deepslate_brick_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 26221, + "lastBlockRuntimeId": 26226 + }, + "minecraft:deepslate_tile_slab": { + "bedrock_identifier": "minecraft:deepslate_tile_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 25810, + "lastBlockRuntimeId": 25815 + }, + "minecraft:scaffolding": { + "bedrock_identifier": "minecraft:scaffolding", + "bedrock_data": 0, + "firstBlockRuntimeId": 18372, + "lastBlockRuntimeId": 18403 + }, + "minecraft:redstone": { + "bedrock_identifier": "minecraft:redstone", + "bedrock_data": 0, + "firstBlockRuntimeId": 2978, + "lastBlockRuntimeId": 4273 + }, + "minecraft:redstone_torch": { + "bedrock_identifier": "minecraft:redstone_torch", + "bedrock_data": 0, + "firstBlockRuntimeId": 5738, + "lastBlockRuntimeId": 5739 + }, + "minecraft:redstone_block": { + "bedrock_identifier": "minecraft:redstone_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 9223 + }, + "minecraft:repeater": { + "bedrock_identifier": "minecraft:repeater", + "bedrock_data": 0, + "firstBlockRuntimeId": 5881, + "lastBlockRuntimeId": 5944 + }, + "minecraft:comparator": { + "bedrock_identifier": "minecraft:comparator", + "bedrock_data": 0, + "firstBlockRuntimeId": 9175, + "lastBlockRuntimeId": 9190 + }, + "minecraft:piston": { + "bedrock_identifier": "minecraft:piston", + "bedrock_data": 1, + "firstBlockRuntimeId": 2011, + "lastBlockRuntimeId": 2022 + }, + "minecraft:sticky_piston": { + "bedrock_identifier": "minecraft:sticky_piston", + "bedrock_data": 1, + "firstBlockRuntimeId": 1992, + "lastBlockRuntimeId": 2003 + }, + "minecraft:slime_block": { + "bedrock_identifier": "minecraft:slime", + "bedrock_data": 0, + "firstBlockRuntimeId": 10364 + }, + "minecraft:honey_block": { + "bedrock_identifier": "minecraft:honey_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 19445 + }, + "minecraft:observer": { + "bedrock_identifier": "minecraft:observer", + "bedrock_data": 0, + "firstBlockRuntimeId": 12550, + "lastBlockRuntimeId": 12561 + }, + "minecraft:hopper": { + "bedrock_identifier": "minecraft:hopper", + "bedrock_data": 0, + "firstBlockRuntimeId": 9225, + "lastBlockRuntimeId": 9234 + }, + "minecraft:dispenser": { + "bedrock_identifier": "minecraft:dispenser", + "bedrock_data": 3, + "firstBlockRuntimeId": 523, + "lastBlockRuntimeId": 534 + }, + "minecraft:dropper": { + "bedrock_identifier": "minecraft:dropper", + "bedrock_data": 3, + "firstBlockRuntimeId": 9344, + "lastBlockRuntimeId": 9355 + }, + "minecraft:lectern": { + "bedrock_identifier": "minecraft:lectern", + "bedrock_data": 0, + "firstBlockRuntimeId": 18450, + "lastBlockRuntimeId": 18465 + }, + "minecraft:target": { + "bedrock_identifier": "minecraft:target", + "bedrock_data": 0, + "firstBlockRuntimeId": 19381, + "lastBlockRuntimeId": 19396 + }, + "minecraft:lever": { + "bedrock_identifier": "minecraft:lever", + "bedrock_data": 0, + "firstBlockRuntimeId": 5626, + "lastBlockRuntimeId": 5649 + }, + "minecraft:lightning_rod": { + "bedrock_identifier": "minecraft:lightning_rod", + "bedrock_data": 0, + "firstBlockRuntimeId": 24724, + "lastBlockRuntimeId": 24747 + }, + "minecraft:daylight_detector": { + "bedrock_identifier": "minecraft:daylight_detector", + "bedrock_data": 0, + "firstBlockRuntimeId": 9191, + "lastBlockRuntimeId": 9222 + }, + "minecraft:sculk_sensor": { + "bedrock_identifier": "minecraft:sculk_sensor", + "bedrock_data": 0, + "firstBlockRuntimeId": 22319, + "lastBlockRuntimeId": 22414 + }, + "minecraft:calibrated_sculk_sensor": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "bedrock_data": 0, + "firstBlockRuntimeId": 22415, + "lastBlockRuntimeId": 22798 + }, + "minecraft:tripwire_hook": { + "bedrock_identifier": "minecraft:tripwire_hook", + "bedrock_data": 0, + "firstBlockRuntimeId": 7521, + "lastBlockRuntimeId": 7536 + }, + "minecraft:trapped_chest": { + "bedrock_identifier": "minecraft:trapped_chest", + "bedrock_data": 0, + "firstBlockRuntimeId": 9119, + "lastBlockRuntimeId": 9142 + }, + "minecraft:tnt": { + "bedrock_identifier": "minecraft:tnt", + "bedrock_data": 0, + "firstBlockRuntimeId": 2094, + "lastBlockRuntimeId": 2095 + }, + "minecraft:redstone_lamp": { + "bedrock_identifier": "minecraft:redstone_lamp", + "bedrock_data": 0, + "firstBlockRuntimeId": 7417, + "lastBlockRuntimeId": 7418 + }, + "minecraft:note_block": { + "bedrock_identifier": "minecraft:noteblock", + "bedrock_data": 0, + "firstBlockRuntimeId": 538, + "lastBlockRuntimeId": 1687 + }, + "minecraft:stone_button": { + "bedrock_identifier": "minecraft:stone_button", + "bedrock_data": 0, + "firstBlockRuntimeId": 5748, + "lastBlockRuntimeId": 5771 + }, + "minecraft:polished_blackstone_button": { + "bedrock_identifier": "minecraft:polished_blackstone_button", + "bedrock_data": 0, + "firstBlockRuntimeId": 20374, + "lastBlockRuntimeId": 20397 + }, + "minecraft:oak_button": { + "bedrock_identifier": "minecraft:wooden_button", + "bedrock_data": 0, + "firstBlockRuntimeId": 8611, + "lastBlockRuntimeId": 8634 + }, + "minecraft:spruce_button": { + "bedrock_identifier": "minecraft:spruce_button", + "bedrock_data": 0, + "firstBlockRuntimeId": 8635, + "lastBlockRuntimeId": 8658 + }, + "minecraft:birch_button": { + "bedrock_identifier": "minecraft:birch_button", + "bedrock_data": 0, + "firstBlockRuntimeId": 8659, + "lastBlockRuntimeId": 8682 + }, + "minecraft:jungle_button": { + "bedrock_identifier": "minecraft:jungle_button", + "bedrock_data": 0, + "firstBlockRuntimeId": 8683, + "lastBlockRuntimeId": 8706 + }, + "minecraft:acacia_button": { + "bedrock_identifier": "minecraft:acacia_button", + "bedrock_data": 0, + "firstBlockRuntimeId": 8707, + "lastBlockRuntimeId": 8730 + }, + "minecraft:cherry_button": { + "bedrock_identifier": "minecraft:cherry_button", + "bedrock_data": 0, + "firstBlockRuntimeId": 8731, + "lastBlockRuntimeId": 8754 + }, + "minecraft:dark_oak_button": { + "bedrock_identifier": "minecraft:dark_oak_button", + "bedrock_data": 0, + "firstBlockRuntimeId": 8755, + "lastBlockRuntimeId": 8778 + }, + "minecraft:mangrove_button": { + "bedrock_identifier": "minecraft:mangrove_button", + "bedrock_data": 0, + "firstBlockRuntimeId": 8779, + "lastBlockRuntimeId": 8802 + }, + "minecraft:bamboo_button": { + "bedrock_identifier": "minecraft:bamboo_button", + "bedrock_data": 0, + "firstBlockRuntimeId": 8803, + "lastBlockRuntimeId": 8826 + }, + "minecraft:crimson_button": { + "bedrock_identifier": "minecraft:crimson_button", + "bedrock_data": 0, + "firstBlockRuntimeId": 19100, + "lastBlockRuntimeId": 19123 + }, + "minecraft:warped_button": { + "bedrock_identifier": "minecraft:warped_button", + "bedrock_data": 0, + "firstBlockRuntimeId": 19124, + "lastBlockRuntimeId": 19147 + }, + "minecraft:stone_pressure_plate": { + "bedrock_identifier": "minecraft:stone_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 5650, + "lastBlockRuntimeId": 5651 + }, + "minecraft:polished_blackstone_pressure_plate": { + "bedrock_identifier": "minecraft:polished_blackstone_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 20372, + "lastBlockRuntimeId": 20373 + }, + "minecraft:light_weighted_pressure_plate": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 9143, + "lastBlockRuntimeId": 9158 + }, + "minecraft:heavy_weighted_pressure_plate": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 9159, + "lastBlockRuntimeId": 9174 + }, + "minecraft:oak_pressure_plate": { + "bedrock_identifier": "minecraft:wooden_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 5716, + "lastBlockRuntimeId": 5717 + }, + "minecraft:spruce_pressure_plate": { + "bedrock_identifier": "minecraft:spruce_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 5718, + "lastBlockRuntimeId": 5719 + }, + "minecraft:birch_pressure_plate": { + "bedrock_identifier": "minecraft:birch_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 5720, + "lastBlockRuntimeId": 5721 + }, + "minecraft:jungle_pressure_plate": { + "bedrock_identifier": "minecraft:jungle_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 5722, + "lastBlockRuntimeId": 5723 + }, + "minecraft:acacia_pressure_plate": { + "bedrock_identifier": "minecraft:acacia_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 5724, + "lastBlockRuntimeId": 5725 + }, + "minecraft:cherry_pressure_plate": { + "bedrock_identifier": "minecraft:cherry_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 5726, + "lastBlockRuntimeId": 5727 + }, + "minecraft:dark_oak_pressure_plate": { + "bedrock_identifier": "minecraft:dark_oak_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 5728, + "lastBlockRuntimeId": 5729 + }, + "minecraft:mangrove_pressure_plate": { + "bedrock_identifier": "minecraft:mangrove_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 5730, + "lastBlockRuntimeId": 5731 + }, + "minecraft:bamboo_pressure_plate": { + "bedrock_identifier": "minecraft:bamboo_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 5732, + "lastBlockRuntimeId": 5733 + }, + "minecraft:crimson_pressure_plate": { + "bedrock_identifier": "minecraft:crimson_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 18680, + "lastBlockRuntimeId": 18681 + }, + "minecraft:warped_pressure_plate": { + "bedrock_identifier": "minecraft:warped_pressure_plate", + "bedrock_data": 0, + "firstBlockRuntimeId": 18682, + "lastBlockRuntimeId": 18683 + }, + "minecraft:iron_door": { + "bedrock_identifier": "minecraft:iron_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 5652, + "lastBlockRuntimeId": 5715 + }, + "minecraft:oak_door": { + "bedrock_identifier": "minecraft:wooden_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 4590, + "lastBlockRuntimeId": 4653 + }, + "minecraft:spruce_door": { + "bedrock_identifier": "minecraft:spruce_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 11822, + "lastBlockRuntimeId": 11885 + }, + "minecraft:birch_door": { + "bedrock_identifier": "minecraft:birch_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 11886, + "lastBlockRuntimeId": 11949 + }, + "minecraft:jungle_door": { + "bedrock_identifier": "minecraft:jungle_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 11950, + "lastBlockRuntimeId": 12013 + }, + "minecraft:acacia_door": { + "bedrock_identifier": "minecraft:acacia_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 12014, + "lastBlockRuntimeId": 12077 + }, + "minecraft:cherry_door": { + "bedrock_identifier": "minecraft:cherry_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 12078, + "lastBlockRuntimeId": 12141 + }, + "minecraft:dark_oak_door": { + "bedrock_identifier": "minecraft:dark_oak_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 12142, + "lastBlockRuntimeId": 12205 + }, + "minecraft:mangrove_door": { + "bedrock_identifier": "minecraft:mangrove_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 12206, + "lastBlockRuntimeId": 12269 + }, + "minecraft:bamboo_door": { + "bedrock_identifier": "minecraft:bamboo_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 12270, + "lastBlockRuntimeId": 12333 + }, + "minecraft:crimson_door": { + "bedrock_identifier": "minecraft:crimson_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 19148, + "lastBlockRuntimeId": 19211 + }, + "minecraft:warped_door": { + "bedrock_identifier": "minecraft:warped_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 19212, + "lastBlockRuntimeId": 19275 + }, + "minecraft:copper_door": { + "bedrock_identifier": "minecraft:copper_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 23652, + "lastBlockRuntimeId": 23715 + }, + "minecraft:exposed_copper_door": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 23716, + "lastBlockRuntimeId": 23779 + }, + "minecraft:weathered_copper_door": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 23844, + "lastBlockRuntimeId": 23907 + }, + "minecraft:oxidized_copper_door": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 23780, + "lastBlockRuntimeId": 23843 + }, + "minecraft:waxed_copper_door": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 23908, + "lastBlockRuntimeId": 23971 + }, + "minecraft:waxed_exposed_copper_door": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 23972, + "lastBlockRuntimeId": 24035 + }, + "minecraft:waxed_weathered_copper_door": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 24100, + "lastBlockRuntimeId": 24163 + }, + "minecraft:waxed_oxidized_copper_door": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "bedrock_data": 0, + "firstBlockRuntimeId": 24036, + "lastBlockRuntimeId": 24099 + }, + "minecraft:iron_trapdoor": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 10399, + "lastBlockRuntimeId": 10462 + }, + "minecraft:oak_trapdoor": { + "bedrock_identifier": "minecraft:trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 5961, + "lastBlockRuntimeId": 6024 + }, + "minecraft:spruce_trapdoor": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 6025, + "lastBlockRuntimeId": 6088 + }, + "minecraft:birch_trapdoor": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 6089, + "lastBlockRuntimeId": 6152 + }, + "minecraft:jungle_trapdoor": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 6153, + "lastBlockRuntimeId": 6216 + }, + "minecraft:acacia_trapdoor": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 6217, + "lastBlockRuntimeId": 6280 + }, + "minecraft:cherry_trapdoor": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 6281, + "lastBlockRuntimeId": 6344 + }, + "minecraft:dark_oak_trapdoor": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 6345, + "lastBlockRuntimeId": 6408 + }, + "minecraft:mangrove_trapdoor": { + "bedrock_identifier": "minecraft:mangrove_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 6409, + "lastBlockRuntimeId": 6472 + }, + "minecraft:bamboo_trapdoor": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 6473, + "lastBlockRuntimeId": 6536 + }, + "minecraft:crimson_trapdoor": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 18748, + "lastBlockRuntimeId": 18811 + }, + "minecraft:warped_trapdoor": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 18812, + "lastBlockRuntimeId": 18875 + }, + "minecraft:copper_trapdoor": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 24164, + "lastBlockRuntimeId": 24227 + }, + "minecraft:exposed_copper_trapdoor": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 24228, + "lastBlockRuntimeId": 24291 + }, + "minecraft:weathered_copper_trapdoor": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 24356, + "lastBlockRuntimeId": 24419 + }, + "minecraft:oxidized_copper_trapdoor": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 24292, + "lastBlockRuntimeId": 24355 + }, + "minecraft:waxed_copper_trapdoor": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 24420, + "lastBlockRuntimeId": 24483 + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 24484, + "lastBlockRuntimeId": 24547 + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 24612, + "lastBlockRuntimeId": 24675 + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "bedrock_data": 0, + "firstBlockRuntimeId": 24548, + "lastBlockRuntimeId": 24611 + }, + "minecraft:oak_fence_gate": { + "bedrock_identifier": "minecraft:fence_gate", + "bedrock_data": 0, + "firstBlockRuntimeId": 6997, + "lastBlockRuntimeId": 7028 + }, + "minecraft:spruce_fence_gate": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "bedrock_data": 0, + "firstBlockRuntimeId": 11310, + "lastBlockRuntimeId": 11341 + }, + "minecraft:birch_fence_gate": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "bedrock_data": 0, + "firstBlockRuntimeId": 11342, + "lastBlockRuntimeId": 11373 + }, + "minecraft:jungle_fence_gate": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "bedrock_data": 0, + "firstBlockRuntimeId": 11374, + "lastBlockRuntimeId": 11405 + }, + "minecraft:acacia_fence_gate": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "bedrock_data": 0, + "firstBlockRuntimeId": 11406, + "lastBlockRuntimeId": 11437 + }, + "minecraft:cherry_fence_gate": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "bedrock_data": 0, + "firstBlockRuntimeId": 11438, + "lastBlockRuntimeId": 11469 + }, + "minecraft:dark_oak_fence_gate": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "bedrock_data": 0, + "firstBlockRuntimeId": 11470, + "lastBlockRuntimeId": 11501 + }, + "minecraft:mangrove_fence_gate": { + "bedrock_identifier": "minecraft:mangrove_fence_gate", + "bedrock_data": 0, + "firstBlockRuntimeId": 11502, + "lastBlockRuntimeId": 11533 + }, + "minecraft:bamboo_fence_gate": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "bedrock_data": 0, + "firstBlockRuntimeId": 11534, + "lastBlockRuntimeId": 11565 + }, + "minecraft:crimson_fence_gate": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "bedrock_data": 0, + "firstBlockRuntimeId": 18876, + "lastBlockRuntimeId": 18907 + }, + "minecraft:warped_fence_gate": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "bedrock_data": 0, + "firstBlockRuntimeId": 18908, + "lastBlockRuntimeId": 18939 + }, + "minecraft:powered_rail": { + "bedrock_identifier": "minecraft:golden_rail", + "bedrock_data": 0, + "firstBlockRuntimeId": 1944, + "lastBlockRuntimeId": 1967 + }, + "minecraft:detector_rail": { + "bedrock_identifier": "minecraft:detector_rail", + "bedrock_data": 0, + "firstBlockRuntimeId": 1968, + "lastBlockRuntimeId": 1991 + }, + "minecraft:rail": { + "bedrock_identifier": "minecraft:rail", + "bedrock_data": 0, + "firstBlockRuntimeId": 4662, + "lastBlockRuntimeId": 4681 + }, + "minecraft:activator_rail": { + "bedrock_identifier": "minecraft:activator_rail", + "bedrock_data": 0, + "firstBlockRuntimeId": 9320, + "lastBlockRuntimeId": 9343 + }, + "minecraft:saddle": { + "bedrock_identifier": "minecraft:saddle", + "bedrock_data": 0 + }, + "minecraft:minecart": { + "bedrock_identifier": "minecraft:minecart", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:chest_minecart": { + "bedrock_identifier": "minecraft:chest_minecart", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:furnace_minecart": { + "bedrock_identifier": "minecraft:hopper_minecart", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:tnt_minecart": { + "bedrock_identifier": "minecraft:tnt_minecart", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:hopper_minecart": { + "bedrock_identifier": "minecraft:hopper_minecart", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:carrot_on_a_stick": { + "bedrock_identifier": "minecraft:carrot_on_a_stick", + "bedrock_data": 0 + }, + "minecraft:warped_fungus_on_a_stick": { + "bedrock_identifier": "minecraft:warped_fungus_on_a_stick", + "bedrock_data": 0 + }, + "minecraft:elytra": { + "bedrock_identifier": "minecraft:elytra", + "bedrock_data": 0, + "repair_materials": [ + "minecraft:phantom_membrane" + ] + }, + "minecraft:oak_boat": { + "bedrock_identifier": "minecraft:oak_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:oak_chest_boat": { + "bedrock_identifier": "minecraft:oak_chest_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:spruce_boat": { + "bedrock_identifier": "minecraft:spruce_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:spruce_chest_boat": { + "bedrock_identifier": "minecraft:spruce_chest_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:birch_boat": { + "bedrock_identifier": "minecraft:birch_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:birch_chest_boat": { + "bedrock_identifier": "minecraft:birch_chest_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:jungle_boat": { + "bedrock_identifier": "minecraft:jungle_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:jungle_chest_boat": { + "bedrock_identifier": "minecraft:jungle_chest_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:acacia_boat": { + "bedrock_identifier": "minecraft:acacia_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:acacia_chest_boat": { + "bedrock_identifier": "minecraft:acacia_chest_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:cherry_boat": { + "bedrock_identifier": "minecraft:cherry_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:cherry_chest_boat": { + "bedrock_identifier": "minecraft:cherry_chest_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:dark_oak_boat": { + "bedrock_identifier": "minecraft:dark_oak_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:dark_oak_chest_boat": { + "bedrock_identifier": "minecraft:dark_oak_chest_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:mangrove_boat": { + "bedrock_identifier": "minecraft:mangrove_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:mangrove_chest_boat": { + "bedrock_identifier": "minecraft:mangrove_chest_boat", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:bamboo_raft": { + "bedrock_identifier": "minecraft:bamboo_raft", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:bamboo_chest_raft": { + "bedrock_identifier": "minecraft:bamboo_chest_raft", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:structure_block": { + "bedrock_identifier": "minecraft:structure_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 19356, + "lastBlockRuntimeId": 19359 + }, + "minecraft:jigsaw": { + "bedrock_identifier": "minecraft:jigsaw", + "bedrock_data": 0, + "firstBlockRuntimeId": 19360, + "lastBlockRuntimeId": 19371 + }, + "minecraft:turtle_helmet": { + "bedrock_identifier": "minecraft:turtle_helmet", + "bedrock_data": 0, + "armor_type": "helmet", + "protection_value": 2, + "repair_materials": [ + "minecraft:turtle_scute" + ] + }, + "minecraft:turtle_scute": { + "bedrock_identifier": "minecraft:turtle_scute", + "bedrock_data": 0 + }, + "minecraft:armadillo_scute": { + "bedrock_identifier": "minecraft:armadillo_scute", + "bedrock_data": 0 + }, + "minecraft:wolf_armor": { + "bedrock_identifier": "minecraft:wolf_armor", + "bedrock_data": 0, + "protection_value": 11, + "repair_materials": [ + "minecraft:armadillo_scute" + ] + }, + "minecraft:flint_and_steel": { + "bedrock_identifier": "minecraft:flint_and_steel", + "bedrock_data": 0 + }, + "minecraft:apple": { + "bedrock_identifier": "minecraft:apple", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:bow": { + "bedrock_identifier": "minecraft:bow", + "bedrock_data": 0 + }, + "minecraft:arrow": { + "bedrock_identifier": "minecraft:arrow", + "bedrock_data": 0 + }, + "minecraft:coal": { + "bedrock_identifier": "minecraft:coal", + "bedrock_data": 0 + }, + "minecraft:charcoal": { + "bedrock_identifier": "minecraft:charcoal", + "bedrock_data": 0 + }, + "minecraft:diamond": { + "bedrock_identifier": "minecraft:diamond", + "bedrock_data": 0 + }, + "minecraft:emerald": { + "bedrock_identifier": "minecraft:emerald", + "bedrock_data": 0 + }, + "minecraft:lapis_lazuli": { + "bedrock_identifier": "minecraft:lapis_lazuli", + "bedrock_data": 0 + }, + "minecraft:quartz": { + "bedrock_identifier": "minecraft:quartz", + "bedrock_data": 0 + }, + "minecraft:amethyst_shard": { + "bedrock_identifier": "minecraft:amethyst_shard", + "bedrock_data": 0 + }, + "minecraft:raw_iron": { + "bedrock_identifier": "minecraft:raw_iron", + "bedrock_data": 0 + }, + "minecraft:iron_ingot": { + "bedrock_identifier": "minecraft:iron_ingot", + "bedrock_data": 0 + }, + "minecraft:raw_copper": { + "bedrock_identifier": "minecraft:raw_copper", + "bedrock_data": 0 + }, + "minecraft:copper_ingot": { + "bedrock_identifier": "minecraft:copper_ingot", + "bedrock_data": 0 + }, + "minecraft:raw_gold": { + "bedrock_identifier": "minecraft:raw_gold", + "bedrock_data": 0 + }, + "minecraft:gold_ingot": { + "bedrock_identifier": "minecraft:gold_ingot", + "bedrock_data": 0 + }, + "minecraft:netherite_ingot": { + "bedrock_identifier": "minecraft:netherite_ingot", + "bedrock_data": 0 + }, + "minecraft:netherite_scrap": { + "bedrock_identifier": "minecraft:netherite_scrap", + "bedrock_data": 0 + }, + "minecraft:wooden_sword": { + "bedrock_identifier": "minecraft:wooden_sword", + "bedrock_data": 0, + "tool_type": "sword", + "tool_tier": "wooden", + "repair_materials": [ + "minecraft:oak_planks", + "minecraft:spruce_planks", + "minecraft:birch_planks", + "minecraft:jungle_planks", + "minecraft:acacia_planks", + "minecraft:cherry_planks", + "minecraft:dark_oak_planks", + "minecraft:mangrove_planks", + "minecraft:bamboo_planks", + "minecraft:crimson_planks", + "minecraft:warped_planks" + ] + }, + "minecraft:wooden_shovel": { + "bedrock_identifier": "minecraft:wooden_shovel", + "bedrock_data": 0, + "tool_type": "shovel", + "tool_tier": "wooden", + "repair_materials": [ + "minecraft:oak_planks", + "minecraft:spruce_planks", + "minecraft:birch_planks", + "minecraft:jungle_planks", + "minecraft:acacia_planks", + "minecraft:cherry_planks", + "minecraft:dark_oak_planks", + "minecraft:mangrove_planks", + "minecraft:bamboo_planks", + "minecraft:crimson_planks", + "minecraft:warped_planks" + ] + }, + "minecraft:wooden_pickaxe": { + "bedrock_identifier": "minecraft:wooden_pickaxe", + "bedrock_data": 0, + "tool_type": "pickaxe", + "tool_tier": "wooden", + "repair_materials": [ + "minecraft:oak_planks", + "minecraft:spruce_planks", + "minecraft:birch_planks", + "minecraft:jungle_planks", + "minecraft:acacia_planks", + "minecraft:cherry_planks", + "minecraft:dark_oak_planks", + "minecraft:mangrove_planks", + "minecraft:bamboo_planks", + "minecraft:crimson_planks", + "minecraft:warped_planks" + ] + }, + "minecraft:wooden_axe": { + "bedrock_identifier": "minecraft:wooden_axe", + "bedrock_data": 0, + "tool_type": "axe", + "tool_tier": "wooden", + "repair_materials": [ + "minecraft:oak_planks", + "minecraft:spruce_planks", + "minecraft:birch_planks", + "minecraft:jungle_planks", + "minecraft:acacia_planks", + "minecraft:cherry_planks", + "minecraft:dark_oak_planks", + "minecraft:mangrove_planks", + "minecraft:bamboo_planks", + "minecraft:crimson_planks", + "minecraft:warped_planks" + ] + }, + "minecraft:wooden_hoe": { + "bedrock_identifier": "minecraft:wooden_hoe", + "bedrock_data": 0, + "tool_type": "hoe", + "tool_tier": "wooden", + "repair_materials": [ + "minecraft:oak_planks", + "minecraft:spruce_planks", + "minecraft:birch_planks", + "minecraft:jungle_planks", + "minecraft:acacia_planks", + "minecraft:cherry_planks", + "minecraft:dark_oak_planks", + "minecraft:mangrove_planks", + "minecraft:bamboo_planks", + "minecraft:crimson_planks", + "minecraft:warped_planks" + ] + }, + "minecraft:stone_sword": { + "bedrock_identifier": "minecraft:stone_sword", + "bedrock_data": 0, + "tool_type": "sword", + "tool_tier": "stone", + "repair_materials": [ + "minecraft:cobblestone", + "minecraft:cobbled_deepslate", + "minecraft:blackstone" + ] + }, + "minecraft:stone_shovel": { + "bedrock_identifier": "minecraft:stone_shovel", + "bedrock_data": 0, + "tool_type": "shovel", + "tool_tier": "stone", + "repair_materials": [ + "minecraft:cobblestone", + "minecraft:cobbled_deepslate", + "minecraft:blackstone" + ] + }, + "minecraft:stone_pickaxe": { + "bedrock_identifier": "minecraft:stone_pickaxe", + "bedrock_data": 0, + "tool_type": "pickaxe", + "tool_tier": "stone", + "repair_materials": [ + "minecraft:cobblestone", + "minecraft:cobbled_deepslate", + "minecraft:blackstone" + ] + }, + "minecraft:stone_axe": { + "bedrock_identifier": "minecraft:stone_axe", + "bedrock_data": 0, + "tool_type": "axe", + "tool_tier": "stone", + "repair_materials": [ + "minecraft:cobblestone", + "minecraft:cobbled_deepslate", + "minecraft:blackstone" + ] + }, + "minecraft:stone_hoe": { + "bedrock_identifier": "minecraft:stone_hoe", + "bedrock_data": 0, + "tool_type": "hoe", + "tool_tier": "stone", + "repair_materials": [ + "minecraft:cobblestone", + "minecraft:cobbled_deepslate", + "minecraft:blackstone" + ] + }, + "minecraft:golden_sword": { + "bedrock_identifier": "minecraft:golden_sword", + "bedrock_data": 0, + "tool_type": "sword", + "tool_tier": "golden", + "repair_materials": [ + "minecraft:gold_ingot" + ] + }, + "minecraft:golden_shovel": { + "bedrock_identifier": "minecraft:golden_shovel", + "bedrock_data": 0, + "tool_type": "shovel", + "tool_tier": "golden", + "repair_materials": [ + "minecraft:gold_ingot" + ] + }, + "minecraft:golden_pickaxe": { + "bedrock_identifier": "minecraft:golden_pickaxe", + "bedrock_data": 0, + "tool_type": "pickaxe", + "tool_tier": "golden", + "repair_materials": [ + "minecraft:gold_ingot" + ] + }, + "minecraft:golden_axe": { + "bedrock_identifier": "minecraft:golden_axe", + "bedrock_data": 0, + "tool_type": "axe", + "tool_tier": "golden", + "repair_materials": [ + "minecraft:gold_ingot" + ] + }, + "minecraft:golden_hoe": { + "bedrock_identifier": "minecraft:golden_hoe", + "bedrock_data": 0, + "tool_type": "hoe", + "tool_tier": "golden", + "repair_materials": [ + "minecraft:gold_ingot" + ] + }, + "minecraft:iron_sword": { + "bedrock_identifier": "minecraft:iron_sword", + "bedrock_data": 0, + "tool_type": "sword", + "tool_tier": "iron", + "repair_materials": [ + "minecraft:iron_ingot" + ] + }, + "minecraft:iron_shovel": { + "bedrock_identifier": "minecraft:iron_shovel", + "bedrock_data": 0, + "tool_type": "shovel", + "tool_tier": "iron", + "repair_materials": [ + "minecraft:iron_ingot" + ] + }, + "minecraft:iron_pickaxe": { + "bedrock_identifier": "minecraft:iron_pickaxe", + "bedrock_data": 0, + "tool_type": "pickaxe", + "tool_tier": "iron", + "repair_materials": [ + "minecraft:iron_ingot" + ] + }, + "minecraft:iron_axe": { + "bedrock_identifier": "minecraft:iron_axe", + "bedrock_data": 0, + "tool_type": "axe", + "tool_tier": "iron", + "repair_materials": [ + "minecraft:iron_ingot" + ] + }, + "minecraft:iron_hoe": { + "bedrock_identifier": "minecraft:iron_hoe", + "bedrock_data": 0, + "tool_type": "hoe", + "tool_tier": "iron", + "repair_materials": [ + "minecraft:iron_ingot" + ] + }, + "minecraft:diamond_sword": { + "bedrock_identifier": "minecraft:diamond_sword", + "bedrock_data": 0, + "tool_type": "sword", + "tool_tier": "diamond", + "repair_materials": [ + "minecraft:diamond" + ] + }, + "minecraft:diamond_shovel": { + "bedrock_identifier": "minecraft:diamond_shovel", + "bedrock_data": 0, + "tool_type": "shovel", + "tool_tier": "diamond", + "repair_materials": [ + "minecraft:diamond" + ] + }, + "minecraft:diamond_pickaxe": { + "bedrock_identifier": "minecraft:diamond_pickaxe", + "bedrock_data": 0, + "tool_type": "pickaxe", + "tool_tier": "diamond", + "repair_materials": [ + "minecraft:diamond" + ] + }, + "minecraft:diamond_axe": { + "bedrock_identifier": "minecraft:diamond_axe", + "bedrock_data": 0, + "tool_type": "axe", + "tool_tier": "diamond", + "repair_materials": [ + "minecraft:diamond" + ] + }, + "minecraft:diamond_hoe": { + "bedrock_identifier": "minecraft:diamond_hoe", + "bedrock_data": 0, + "tool_type": "hoe", + "tool_tier": "diamond", + "repair_materials": [ + "minecraft:diamond" + ] + }, + "minecraft:netherite_sword": { + "bedrock_identifier": "minecraft:netherite_sword", + "bedrock_data": 0, + "tool_type": "sword", + "tool_tier": "netherite", + "repair_materials": [ + "minecraft:netherite_ingot" + ] + }, + "minecraft:netherite_shovel": { + "bedrock_identifier": "minecraft:netherite_shovel", + "bedrock_data": 0, + "tool_type": "shovel", + "tool_tier": "netherite", + "repair_materials": [ + "minecraft:netherite_ingot" + ] + }, + "minecraft:netherite_pickaxe": { + "bedrock_identifier": "minecraft:netherite_pickaxe", + "bedrock_data": 0, + "tool_type": "pickaxe", + "tool_tier": "netherite", + "repair_materials": [ + "minecraft:netherite_ingot" + ] + }, + "minecraft:netherite_axe": { + "bedrock_identifier": "minecraft:netherite_axe", + "bedrock_data": 0, + "tool_type": "axe", + "tool_tier": "netherite", + "repair_materials": [ + "minecraft:netherite_ingot" + ] + }, + "minecraft:netherite_hoe": { + "bedrock_identifier": "minecraft:netherite_hoe", + "bedrock_data": 0, + "tool_type": "hoe", + "tool_tier": "netherite", + "repair_materials": [ + "minecraft:netherite_ingot" + ] + }, + "minecraft:stick": { + "bedrock_identifier": "minecraft:stick", + "bedrock_data": 0 + }, + "minecraft:bowl": { + "bedrock_identifier": "minecraft:bowl", + "bedrock_data": 0 + }, + "minecraft:mushroom_stew": { + "bedrock_identifier": "minecraft:mushroom_stew", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:string": { + "bedrock_identifier": "minecraft:string", + "bedrock_data": 0, + "firstBlockRuntimeId": 7537, + "lastBlockRuntimeId": 7664 + }, + "minecraft:feather": { + "bedrock_identifier": "minecraft:feather", + "bedrock_data": 0 + }, + "minecraft:gunpowder": { + "bedrock_identifier": "minecraft:gunpowder", + "bedrock_data": 0 + }, + "minecraft:wheat_seeds": { + "bedrock_identifier": "minecraft:wheat_seeds", + "bedrock_data": 0, + "firstBlockRuntimeId": 4278, + "lastBlockRuntimeId": 4285 + }, + "minecraft:wheat": { + "bedrock_identifier": "minecraft:wheat", + "bedrock_data": 0 + }, + "minecraft:bread": { + "bedrock_identifier": "minecraft:bread", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:leather_helmet": { + "bedrock_identifier": "minecraft:leather_helmet", + "bedrock_data": 0, + "armor_type": "helmet", + "protection_value": 1, + "repair_materials": [ + "minecraft:leather" + ] + }, + "minecraft:leather_chestplate": { + "bedrock_identifier": "minecraft:leather_chestplate", + "bedrock_data": 0, + "armor_type": "chestplate", + "protection_value": 3, + "repair_materials": [ + "minecraft:leather" + ] + }, + "minecraft:leather_leggings": { + "bedrock_identifier": "minecraft:leather_leggings", + "bedrock_data": 0, + "armor_type": "leggings", + "protection_value": 2, + "repair_materials": [ + "minecraft:leather" + ] + }, + "minecraft:leather_boots": { + "bedrock_identifier": "minecraft:leather_boots", + "bedrock_data": 0, + "armor_type": "boots", + "protection_value": 1, + "repair_materials": [ + "minecraft:leather" + ] + }, + "minecraft:chainmail_helmet": { + "bedrock_identifier": "minecraft:chainmail_helmet", + "bedrock_data": 0, + "armor_type": "helmet", + "protection_value": 2, + "repair_materials": [ + "minecraft:iron_ingot" + ] + }, + "minecraft:chainmail_chestplate": { + "bedrock_identifier": "minecraft:chainmail_chestplate", + "bedrock_data": 0, + "armor_type": "chestplate", + "protection_value": 5, + "repair_materials": [ + "minecraft:iron_ingot" + ] + }, + "minecraft:chainmail_leggings": { + "bedrock_identifier": "minecraft:chainmail_leggings", + "bedrock_data": 0, + "armor_type": "leggings", + "protection_value": 4, + "repair_materials": [ + "minecraft:iron_ingot" + ] + }, + "minecraft:chainmail_boots": { + "bedrock_identifier": "minecraft:chainmail_boots", + "bedrock_data": 0, + "armor_type": "boots", + "protection_value": 1, + "repair_materials": [ + "minecraft:iron_ingot" + ] + }, + "minecraft:iron_helmet": { + "bedrock_identifier": "minecraft:iron_helmet", + "bedrock_data": 0, + "armor_type": "helmet", + "protection_value": 2, + "repair_materials": [ + "minecraft:iron_ingot" + ] + }, + "minecraft:iron_chestplate": { + "bedrock_identifier": "minecraft:iron_chestplate", + "bedrock_data": 0, + "armor_type": "chestplate", + "protection_value": 6, + "repair_materials": [ + "minecraft:iron_ingot" + ] + }, + "minecraft:iron_leggings": { + "bedrock_identifier": "minecraft:iron_leggings", + "bedrock_data": 0, + "armor_type": "leggings", + "protection_value": 5, + "repair_materials": [ + "minecraft:iron_ingot" + ] + }, + "minecraft:iron_boots": { + "bedrock_identifier": "minecraft:iron_boots", + "bedrock_data": 0, + "armor_type": "boots", + "protection_value": 2, + "repair_materials": [ + "minecraft:iron_ingot" + ] + }, + "minecraft:diamond_helmet": { + "bedrock_identifier": "minecraft:diamond_helmet", + "bedrock_data": 0, + "armor_type": "helmet", + "protection_value": 3, + "repair_materials": [ + "minecraft:diamond" + ] + }, + "minecraft:diamond_chestplate": { + "bedrock_identifier": "minecraft:diamond_chestplate", + "bedrock_data": 0, + "armor_type": "chestplate", + "protection_value": 8, + "repair_materials": [ + "minecraft:diamond" + ] + }, + "minecraft:diamond_leggings": { + "bedrock_identifier": "minecraft:diamond_leggings", + "bedrock_data": 0, + "armor_type": "leggings", + "protection_value": 6, + "repair_materials": [ + "minecraft:diamond" + ] + }, + "minecraft:diamond_boots": { + "bedrock_identifier": "minecraft:diamond_boots", + "bedrock_data": 0, + "armor_type": "boots", + "protection_value": 3, + "repair_materials": [ + "minecraft:diamond" + ] + }, + "minecraft:golden_helmet": { + "bedrock_identifier": "minecraft:golden_helmet", + "bedrock_data": 0, + "armor_type": "helmet", + "protection_value": 2, + "repair_materials": [ + "minecraft:gold_ingot" + ] + }, + "minecraft:golden_chestplate": { + "bedrock_identifier": "minecraft:golden_chestplate", + "bedrock_data": 0, + "armor_type": "chestplate", + "protection_value": 5, + "repair_materials": [ + "minecraft:gold_ingot" + ] + }, + "minecraft:golden_leggings": { + "bedrock_identifier": "minecraft:golden_leggings", + "bedrock_data": 0, + "armor_type": "leggings", + "protection_value": 3, + "repair_materials": [ + "minecraft:gold_ingot" + ] + }, + "minecraft:golden_boots": { + "bedrock_identifier": "minecraft:golden_boots", + "bedrock_data": 0, + "armor_type": "boots", + "protection_value": 1, + "repair_materials": [ + "minecraft:gold_ingot" + ] + }, + "minecraft:netherite_helmet": { + "bedrock_identifier": "minecraft:netherite_helmet", + "bedrock_data": 0, + "armor_type": "helmet", + "protection_value": 3, + "repair_materials": [ + "minecraft:netherite_ingot" + ] + }, + "minecraft:netherite_chestplate": { + "bedrock_identifier": "minecraft:netherite_chestplate", + "bedrock_data": 0, + "armor_type": "chestplate", + "protection_value": 8, + "repair_materials": [ + "minecraft:netherite_ingot" + ] + }, + "minecraft:netherite_leggings": { + "bedrock_identifier": "minecraft:netherite_leggings", + "bedrock_data": 0, + "armor_type": "leggings", + "protection_value": 6, + "repair_materials": [ + "minecraft:netherite_ingot" + ] + }, + "minecraft:netherite_boots": { + "bedrock_identifier": "minecraft:netherite_boots", + "bedrock_data": 0, + "armor_type": "boots", + "protection_value": 3, + "repair_materials": [ + "minecraft:netherite_ingot" + ] + }, + "minecraft:flint": { + "bedrock_identifier": "minecraft:flint", + "bedrock_data": 0 + }, + "minecraft:porkchop": { + "bedrock_identifier": "minecraft:porkchop", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:cooked_porkchop": { + "bedrock_identifier": "minecraft:cooked_porkchop", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:painting": { + "bedrock_identifier": "minecraft:painting", + "bedrock_data": 0 + }, + "minecraft:golden_apple": { + "bedrock_identifier": "minecraft:golden_apple", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:enchanted_golden_apple": { + "bedrock_identifier": "minecraft:enchanted_golden_apple", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:oak_sign": { + "bedrock_identifier": "minecraft:oak_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 4302, + "lastBlockRuntimeId": 4333 + }, + "minecraft:spruce_sign": { + "bedrock_identifier": "minecraft:spruce_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 4334, + "lastBlockRuntimeId": 4365 + }, + "minecraft:birch_sign": { + "bedrock_identifier": "minecraft:birch_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 4366, + "lastBlockRuntimeId": 4397 + }, + "minecraft:jungle_sign": { + "bedrock_identifier": "minecraft:jungle_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 4462, + "lastBlockRuntimeId": 4493 + }, + "minecraft:acacia_sign": { + "bedrock_identifier": "minecraft:acacia_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 4398, + "lastBlockRuntimeId": 4429 + }, + "minecraft:cherry_sign": { + "bedrock_identifier": "minecraft:cherry_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 4430, + "lastBlockRuntimeId": 4461 + }, + "minecraft:dark_oak_sign": { + "bedrock_identifier": "minecraft:dark_oak_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 4494, + "lastBlockRuntimeId": 4525 + }, + "minecraft:mangrove_sign": { + "bedrock_identifier": "minecraft:mangrove_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 4526, + "lastBlockRuntimeId": 4557 + }, + "minecraft:bamboo_sign": { + "bedrock_identifier": "minecraft:bamboo_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 4558, + "lastBlockRuntimeId": 4589 + }, + "minecraft:crimson_sign": { + "bedrock_identifier": "minecraft:crimson_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 19276, + "lastBlockRuntimeId": 19307 + }, + "minecraft:warped_sign": { + "bedrock_identifier": "minecraft:warped_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 19308, + "lastBlockRuntimeId": 19339 + }, + "minecraft:oak_hanging_sign": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 4834, + "lastBlockRuntimeId": 4897 + }, + "minecraft:spruce_hanging_sign": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 4898, + "lastBlockRuntimeId": 4961 + }, + "minecraft:birch_hanging_sign": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 4962, + "lastBlockRuntimeId": 5025 + }, + "minecraft:jungle_hanging_sign": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 5154, + "lastBlockRuntimeId": 5217 + }, + "minecraft:acacia_hanging_sign": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 5026, + "lastBlockRuntimeId": 5089 + }, + "minecraft:cherry_hanging_sign": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 5090, + "lastBlockRuntimeId": 5153 + }, + "minecraft:dark_oak_hanging_sign": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 5218, + "lastBlockRuntimeId": 5281 + }, + "minecraft:mangrove_hanging_sign": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 5410, + "lastBlockRuntimeId": 5473 + }, + "minecraft:bamboo_hanging_sign": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 5474, + "lastBlockRuntimeId": 5537 + }, + "minecraft:crimson_hanging_sign": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 5282, + "lastBlockRuntimeId": 5345 + }, + "minecraft:warped_hanging_sign": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "bedrock_data": 0, + "firstBlockRuntimeId": 5346, + "lastBlockRuntimeId": 5409 + }, + "minecraft:bucket": { + "bedrock_identifier": "minecraft:bucket", + "bedrock_data": 0 + }, + "minecraft:water_bucket": { + "bedrock_identifier": "minecraft:water_bucket", + "bedrock_data": 0 + }, + "minecraft:lava_bucket": { + "bedrock_identifier": "minecraft:lava_bucket", + "bedrock_data": 0 + }, + "minecraft:powder_snow_bucket": { + "bedrock_identifier": "minecraft:powder_snow_bucket", + "bedrock_data": 0, + "firstBlockRuntimeId": 22318 + }, + "minecraft:snowball": { + "bedrock_identifier": "minecraft:snowball", + "bedrock_data": 0 + }, + "minecraft:leather": { + "bedrock_identifier": "minecraft:leather", + "bedrock_data": 0 + }, + "minecraft:milk_bucket": { + "bedrock_identifier": "minecraft:milk_bucket", + "bedrock_data": 0 + }, + "minecraft:pufferfish_bucket": { + "bedrock_identifier": "minecraft:pufferfish_bucket", + "bedrock_data": 0 + }, + "minecraft:salmon_bucket": { + "bedrock_identifier": "minecraft:salmon_bucket", + "bedrock_data": 0 + }, + "minecraft:cod_bucket": { + "bedrock_identifier": "minecraft:cod_bucket", + "bedrock_data": 0 + }, + "minecraft:tropical_fish_bucket": { + "bedrock_identifier": "minecraft:tropical_fish_bucket", + "bedrock_data": 0 + }, + "minecraft:axolotl_bucket": { + "bedrock_identifier": "minecraft:axolotl_bucket", + "bedrock_data": 0 + }, + "minecraft:tadpole_bucket": { + "bedrock_identifier": "minecraft:tadpole_bucket", + "bedrock_data": 0 + }, + "minecraft:brick": { + "bedrock_identifier": "minecraft:brick", + "bedrock_data": 0 + }, + "minecraft:clay_ball": { + "bedrock_identifier": "minecraft:clay_ball", + "bedrock_data": 0 + }, + "minecraft:dried_kelp_block": { + "bedrock_identifier": "minecraft:dried_kelp_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 12787 + }, + "minecraft:paper": { + "bedrock_identifier": "minecraft:paper", + "bedrock_data": 0 + }, + "minecraft:book": { + "bedrock_identifier": "minecraft:book", + "bedrock_data": 0 + }, + "minecraft:slime_ball": { + "bedrock_identifier": "minecraft:slime_ball", + "bedrock_data": 0 + }, + "minecraft:egg": { + "bedrock_identifier": "minecraft:egg", + "bedrock_data": 0 + }, + "minecraft:compass": { + "bedrock_identifier": "minecraft:compass", + "bedrock_data": 0 + }, + "minecraft:recovery_compass": { + "bedrock_identifier": "minecraft:recovery_compass", + "bedrock_data": 0 + }, + "minecraft:bundle": { + "bedrock_identifier": "minecraft:shulker_shell", + "bedrock_data": 0 + }, + "minecraft:fishing_rod": { + "bedrock_identifier": "minecraft:fishing_rod", + "bedrock_data": 0 + }, + "minecraft:clock": { + "bedrock_identifier": "minecraft:clock", + "bedrock_data": 0 + }, + "minecraft:spyglass": { + "bedrock_identifier": "minecraft:spyglass", + "bedrock_data": 0 + }, + "minecraft:glowstone_dust": { + "bedrock_identifier": "minecraft:glowstone_dust", + "bedrock_data": 0 + }, + "minecraft:cod": { + "bedrock_identifier": "minecraft:cod", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:salmon": { + "bedrock_identifier": "minecraft:salmon", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:tropical_fish": { + "bedrock_identifier": "minecraft:tropical_fish", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:pufferfish": { + "bedrock_identifier": "minecraft:pufferfish", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:cooked_cod": { + "bedrock_identifier": "minecraft:cooked_cod", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:cooked_salmon": { + "bedrock_identifier": "minecraft:cooked_salmon", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:ink_sac": { + "bedrock_identifier": "minecraft:ink_sac", + "bedrock_data": 0 + }, + "minecraft:glow_ink_sac": { + "bedrock_identifier": "minecraft:glow_ink_sac", + "bedrock_data": 0 + }, + "minecraft:cocoa_beans": { + "bedrock_identifier": "minecraft:cocoa_beans", + "bedrock_data": 3, + "firstBlockRuntimeId": 7419, + "lastBlockRuntimeId": 7430 + }, + "minecraft:white_dye": { + "bedrock_identifier": "minecraft:white_dye", + "bedrock_data": 0 + }, + "minecraft:orange_dye": { + "bedrock_identifier": "minecraft:orange_dye", + "bedrock_data": 0 + }, + "minecraft:magenta_dye": { + "bedrock_identifier": "minecraft:magenta_dye", + "bedrock_data": 0 + }, + "minecraft:light_blue_dye": { + "bedrock_identifier": "minecraft:light_blue_dye", + "bedrock_data": 0 + }, + "minecraft:yellow_dye": { + "bedrock_identifier": "minecraft:yellow_dye", + "bedrock_data": 0 + }, + "minecraft:lime_dye": { + "bedrock_identifier": "minecraft:lime_dye", + "bedrock_data": 0 + }, + "minecraft:pink_dye": { + "bedrock_identifier": "minecraft:pink_dye", + "bedrock_data": 0 + }, + "minecraft:gray_dye": { + "bedrock_identifier": "minecraft:gray_dye", + "bedrock_data": 0 + }, + "minecraft:light_gray_dye": { + "bedrock_identifier": "minecraft:light_gray_dye", + "bedrock_data": 0 + }, + "minecraft:cyan_dye": { + "bedrock_identifier": "minecraft:cyan_dye", + "bedrock_data": 0 + }, + "minecraft:purple_dye": { + "bedrock_identifier": "minecraft:purple_dye", + "bedrock_data": 0 + }, + "minecraft:blue_dye": { + "bedrock_identifier": "minecraft:blue_dye", + "bedrock_data": 0 + }, + "minecraft:brown_dye": { + "bedrock_identifier": "minecraft:brown_dye", + "bedrock_data": 0 + }, + "minecraft:green_dye": { + "bedrock_identifier": "minecraft:green_dye", + "bedrock_data": 0 + }, + "minecraft:red_dye": { + "bedrock_identifier": "minecraft:red_dye", + "bedrock_data": 0 + }, + "minecraft:black_dye": { + "bedrock_identifier": "minecraft:black_dye", + "bedrock_data": 0 + }, + "minecraft:bone_meal": { + "bedrock_identifier": "minecraft:bone_meal", + "bedrock_data": 0 + }, + "minecraft:bone": { + "bedrock_identifier": "minecraft:bone", + "bedrock_data": 0 + }, + "minecraft:sugar": { + "bedrock_identifier": "minecraft:sugar", + "bedrock_data": 0 + }, + "minecraft:cake": { + "bedrock_identifier": "minecraft:cake", + "bedrock_data": 0, + "firstBlockRuntimeId": 5874, + "lastBlockRuntimeId": 5880 + }, + "minecraft:white_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 0, + "firstBlockRuntimeId": 1688, + "lastBlockRuntimeId": 1703 + }, + "minecraft:orange_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 1, + "firstBlockRuntimeId": 1704, + "lastBlockRuntimeId": 1719 + }, + "minecraft:magenta_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 2, + "firstBlockRuntimeId": 1720, + "lastBlockRuntimeId": 1735 + }, + "minecraft:light_blue_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 3, + "firstBlockRuntimeId": 1736, + "lastBlockRuntimeId": 1751 + }, + "minecraft:yellow_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 4, + "firstBlockRuntimeId": 1752, + "lastBlockRuntimeId": 1767 + }, + "minecraft:lime_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 5, + "firstBlockRuntimeId": 1768, + "lastBlockRuntimeId": 1783 + }, + "minecraft:pink_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 6, + "firstBlockRuntimeId": 1784, + "lastBlockRuntimeId": 1799 + }, + "minecraft:gray_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 7, + "firstBlockRuntimeId": 1800, + "lastBlockRuntimeId": 1815 + }, + "minecraft:light_gray_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 8, + "firstBlockRuntimeId": 1816, + "lastBlockRuntimeId": 1831 + }, + "minecraft:cyan_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 9, + "firstBlockRuntimeId": 1832, + "lastBlockRuntimeId": 1847 + }, + "minecraft:purple_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 10, + "firstBlockRuntimeId": 1848, + "lastBlockRuntimeId": 1863 + }, + "minecraft:blue_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 11, + "firstBlockRuntimeId": 1864, + "lastBlockRuntimeId": 1879 + }, + "minecraft:brown_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 12, + "firstBlockRuntimeId": 1880, + "lastBlockRuntimeId": 1895 + }, + "minecraft:green_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 13, + "firstBlockRuntimeId": 1896, + "lastBlockRuntimeId": 1911 + }, + "minecraft:red_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 14, + "firstBlockRuntimeId": 1912, + "lastBlockRuntimeId": 1927 + }, + "minecraft:black_bed": { + "bedrock_identifier": "minecraft:bed", + "bedrock_data": 15, + "firstBlockRuntimeId": 1928, + "lastBlockRuntimeId": 1943 + }, + "minecraft:cookie": { + "bedrock_identifier": "minecraft:cookie", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:crafter": { + "bedrock_identifier": "minecraft:crafter", + "bedrock_data": 0, + "firstBlockRuntimeId": 26590, + "lastBlockRuntimeId": 26637 + }, + "minecraft:filled_map": { + "bedrock_identifier": "minecraft:filled_map", + "bedrock_data": 0 + }, + "minecraft:shears": { + "bedrock_identifier": "minecraft:shears", + "bedrock_data": 0, + "tool_type": "shears" + }, + "minecraft:melon_slice": { + "bedrock_identifier": "minecraft:melon_slice", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:dried_kelp": { + "bedrock_identifier": "minecraft:dried_kelp", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:pumpkin_seeds": { + "bedrock_identifier": "minecraft:pumpkin_seeds", + "bedrock_data": 0, + "firstBlockRuntimeId": 6821, + "lastBlockRuntimeId": 6828 + }, + "minecraft:melon_seeds": { + "bedrock_identifier": "minecraft:melon_seeds", + "bedrock_data": 0, + "firstBlockRuntimeId": 6829, + "lastBlockRuntimeId": 6836 + }, + "minecraft:beef": { + "bedrock_identifier": "minecraft:beef", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:cooked_beef": { + "bedrock_identifier": "minecraft:cooked_beef", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:chicken": { + "bedrock_identifier": "minecraft:chicken", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:cooked_chicken": { + "bedrock_identifier": "minecraft:cooked_chicken", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:rotten_flesh": { + "bedrock_identifier": "minecraft:rotten_flesh", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:ender_pearl": { + "bedrock_identifier": "minecraft:ender_pearl", + "bedrock_data": 0 + }, + "minecraft:blaze_rod": { + "bedrock_identifier": "minecraft:blaze_rod", + "bedrock_data": 0 + }, + "minecraft:ghast_tear": { + "bedrock_identifier": "minecraft:ghast_tear", + "bedrock_data": 0 + }, + "minecraft:gold_nugget": { + "bedrock_identifier": "minecraft:gold_nugget", + "bedrock_data": 0 + }, + "minecraft:nether_wart": { + "bedrock_identifier": "minecraft:nether_wart", + "bedrock_data": 0, + "firstBlockRuntimeId": 7385, + "lastBlockRuntimeId": 7388 + }, + "minecraft:potion": { + "bedrock_identifier": "minecraft:potion", + "bedrock_data": 0 + }, + "minecraft:glass_bottle": { + "bedrock_identifier": "minecraft:glass_bottle", + "bedrock_data": 0 + }, + "minecraft:spider_eye": { + "bedrock_identifier": "minecraft:spider_eye", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:fermented_spider_eye": { + "bedrock_identifier": "minecraft:fermented_spider_eye", + "bedrock_data": 0 + }, + "minecraft:blaze_powder": { + "bedrock_identifier": "minecraft:blaze_powder", + "bedrock_data": 0 + }, + "minecraft:magma_cream": { + "bedrock_identifier": "minecraft:magma_cream", + "bedrock_data": 0 + }, + "minecraft:brewing_stand": { + "bedrock_identifier": "minecraft:brewing_stand", + "bedrock_data": 0, + "firstBlockRuntimeId": 7390, + "lastBlockRuntimeId": 7397 + }, + "minecraft:cauldron": { + "bedrock_identifier": "minecraft:cauldron", + "bedrock_data": 0, + "firstBlockRuntimeId": 7398 + }, + "minecraft:ender_eye": { + "bedrock_identifier": "minecraft:ender_eye", + "bedrock_data": 0 + }, + "minecraft:glistering_melon_slice": { + "bedrock_identifier": "minecraft:glistering_melon_slice", + "bedrock_data": 0 + }, + "minecraft:armadillo_spawn_egg": { + "bedrock_identifier": "minecraft:armadillo_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:allay_spawn_egg": { + "bedrock_identifier": "minecraft:allay_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:axolotl_spawn_egg": { + "bedrock_identifier": "minecraft:axolotl_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:bat_spawn_egg": { + "bedrock_identifier": "minecraft:bat_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:bee_spawn_egg": { + "bedrock_identifier": "minecraft:bee_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:blaze_spawn_egg": { + "bedrock_identifier": "minecraft:blaze_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:bogged_spawn_egg": { + "bedrock_identifier": "minecraft:bogged_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:breeze_spawn_egg": { + "bedrock_identifier": "minecraft:blaze_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:cat_spawn_egg": { + "bedrock_identifier": "minecraft:cat_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:camel_spawn_egg": { + "bedrock_identifier": "minecraft:camel_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:cave_spider_spawn_egg": { + "bedrock_identifier": "minecraft:cave_spider_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:chicken_spawn_egg": { + "bedrock_identifier": "minecraft:chicken_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:cod_spawn_egg": { + "bedrock_identifier": "minecraft:cod_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:cow_spawn_egg": { + "bedrock_identifier": "minecraft:cow_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:creeper_spawn_egg": { + "bedrock_identifier": "minecraft:creeper_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:dolphin_spawn_egg": { + "bedrock_identifier": "minecraft:dolphin_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:donkey_spawn_egg": { + "bedrock_identifier": "minecraft:donkey_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:drowned_spawn_egg": { + "bedrock_identifier": "minecraft:drowned_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:elder_guardian_spawn_egg": { + "bedrock_identifier": "minecraft:elder_guardian_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:ender_dragon_spawn_egg": { + "bedrock_identifier": "minecraft:ender_dragon_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:enderman_spawn_egg": { + "bedrock_identifier": "minecraft:enderman_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:endermite_spawn_egg": { + "bedrock_identifier": "minecraft:endermite_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:evoker_spawn_egg": { + "bedrock_identifier": "minecraft:evoker_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:fox_spawn_egg": { + "bedrock_identifier": "minecraft:fox_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:frog_spawn_egg": { + "bedrock_identifier": "minecraft:frog_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:ghast_spawn_egg": { + "bedrock_identifier": "minecraft:ghast_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:glow_squid_spawn_egg": { + "bedrock_identifier": "minecraft:glow_squid_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:goat_spawn_egg": { + "bedrock_identifier": "minecraft:goat_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:guardian_spawn_egg": { + "bedrock_identifier": "minecraft:guardian_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:hoglin_spawn_egg": { + "bedrock_identifier": "minecraft:hoglin_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:horse_spawn_egg": { + "bedrock_identifier": "minecraft:horse_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:husk_spawn_egg": { + "bedrock_identifier": "minecraft:husk_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:iron_golem_spawn_egg": { + "bedrock_identifier": "minecraft:iron_golem_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:llama_spawn_egg": { + "bedrock_identifier": "minecraft:llama_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:magma_cube_spawn_egg": { + "bedrock_identifier": "minecraft:magma_cube_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:mooshroom_spawn_egg": { + "bedrock_identifier": "minecraft:mooshroom_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:mule_spawn_egg": { + "bedrock_identifier": "minecraft:mule_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:ocelot_spawn_egg": { + "bedrock_identifier": "minecraft:ocelot_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:panda_spawn_egg": { + "bedrock_identifier": "minecraft:panda_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:parrot_spawn_egg": { + "bedrock_identifier": "minecraft:parrot_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:phantom_spawn_egg": { + "bedrock_identifier": "minecraft:phantom_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:pig_spawn_egg": { + "bedrock_identifier": "minecraft:pig_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:piglin_spawn_egg": { + "bedrock_identifier": "minecraft:piglin_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:piglin_brute_spawn_egg": { + "bedrock_identifier": "minecraft:piglin_brute_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:pillager_spawn_egg": { + "bedrock_identifier": "minecraft:pillager_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:polar_bear_spawn_egg": { + "bedrock_identifier": "minecraft:polar_bear_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:pufferfish_spawn_egg": { + "bedrock_identifier": "minecraft:pufferfish_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:rabbit_spawn_egg": { + "bedrock_identifier": "minecraft:rabbit_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:ravager_spawn_egg": { + "bedrock_identifier": "minecraft:ravager_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:salmon_spawn_egg": { + "bedrock_identifier": "minecraft:salmon_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:sheep_spawn_egg": { + "bedrock_identifier": "minecraft:sheep_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:shulker_spawn_egg": { + "bedrock_identifier": "minecraft:shulker_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:silverfish_spawn_egg": { + "bedrock_identifier": "minecraft:silverfish_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:skeleton_spawn_egg": { + "bedrock_identifier": "minecraft:skeleton_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:skeleton_horse_spawn_egg": { + "bedrock_identifier": "minecraft:skeleton_horse_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:slime_spawn_egg": { + "bedrock_identifier": "minecraft:slime_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:sniffer_spawn_egg": { + "bedrock_identifier": "minecraft:sniffer_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:snow_golem_spawn_egg": { + "bedrock_identifier": "minecraft:snow_golem_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:spider_spawn_egg": { + "bedrock_identifier": "minecraft:spider_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:squid_spawn_egg": { + "bedrock_identifier": "minecraft:squid_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:stray_spawn_egg": { + "bedrock_identifier": "minecraft:stray_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:strider_spawn_egg": { + "bedrock_identifier": "minecraft:strider_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:tadpole_spawn_egg": { + "bedrock_identifier": "minecraft:tadpole_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:trader_llama_spawn_egg": { + "bedrock_identifier": "minecraft:trader_llama_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:tropical_fish_spawn_egg": { + "bedrock_identifier": "minecraft:tropical_fish_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:turtle_spawn_egg": { + "bedrock_identifier": "minecraft:turtle_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:vex_spawn_egg": { + "bedrock_identifier": "minecraft:vex_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:villager_spawn_egg": { + "bedrock_identifier": "minecraft:villager_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:vindicator_spawn_egg": { + "bedrock_identifier": "minecraft:vindicator_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:wandering_trader_spawn_egg": { + "bedrock_identifier": "minecraft:wandering_trader_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:warden_spawn_egg": { + "bedrock_identifier": "minecraft:warden_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:witch_spawn_egg": { + "bedrock_identifier": "minecraft:witch_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:wither_spawn_egg": { + "bedrock_identifier": "minecraft:wither_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:wither_skeleton_spawn_egg": { + "bedrock_identifier": "minecraft:wither_skeleton_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:wolf_spawn_egg": { + "bedrock_identifier": "minecraft:wolf_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:zoglin_spawn_egg": { + "bedrock_identifier": "minecraft:zoglin_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:zombie_spawn_egg": { + "bedrock_identifier": "minecraft:zombie_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:zombie_horse_spawn_egg": { + "bedrock_identifier": "minecraft:zombie_horse_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:zombie_villager_spawn_egg": { + "bedrock_identifier": "minecraft:zombie_villager_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:zombified_piglin_spawn_egg": { + "bedrock_identifier": "minecraft:zombie_pigman_spawn_egg", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:experience_bottle": { + "bedrock_identifier": "minecraft:experience_bottle", + "bedrock_data": 0 + }, + "minecraft:fire_charge": { + "bedrock_identifier": "minecraft:fire_charge", + "bedrock_data": 0 + }, + "minecraft:wind_charge": { + "bedrock_identifier": "minecraft:wind_charge", + "bedrock_data": 0 + }, + "minecraft:writable_book": { + "bedrock_identifier": "minecraft:writable_book", + "bedrock_data": 0 + }, + "minecraft:written_book": { + "bedrock_identifier": "minecraft:written_book", + "bedrock_data": 0 + }, + "minecraft:mace": { + "bedrock_identifier": "minecraft:mace", + "bedrock_data": 0 + }, + "minecraft:item_frame": { + "bedrock_identifier": "minecraft:frame", + "bedrock_data": 0 + }, + "minecraft:glow_item_frame": { + "bedrock_identifier": "minecraft:glow_frame", + "bedrock_data": 0 + }, + "minecraft:flower_pot": { + "bedrock_identifier": "minecraft:flower_pot", + "bedrock_data": 0, + "firstBlockRuntimeId": 8567 + }, + "minecraft:carrot": { + "bedrock_identifier": "minecraft:carrot", + "bedrock_data": 0, + "firstBlockRuntimeId": 8595, + "lastBlockRuntimeId": 8602, + "is_edible": true + }, + "minecraft:potato": { + "bedrock_identifier": "minecraft:potato", + "bedrock_data": 0, + "firstBlockRuntimeId": 8603, + "lastBlockRuntimeId": 8610, + "is_edible": true + }, + "minecraft:baked_potato": { + "bedrock_identifier": "minecraft:baked_potato", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:poisonous_potato": { + "bedrock_identifier": "minecraft:poisonous_potato", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:map": { + "bedrock_identifier": "minecraft:empty_map", + "bedrock_data": 0 + }, + "minecraft:golden_carrot": { + "bedrock_identifier": "minecraft:golden_carrot", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:skeleton_skull": { + "bedrock_identifier": "minecraft:skull", + "bedrock_data": 0, + "firstBlockRuntimeId": 8827, + "lastBlockRuntimeId": 8858 + }, + "minecraft:wither_skeleton_skull": { + "bedrock_identifier": "minecraft:skull", + "bedrock_data": 1, + "firstBlockRuntimeId": 8867, + "lastBlockRuntimeId": 8898 + }, + "minecraft:player_head": { + "bedrock_identifier": "minecraft:skull", + "bedrock_data": 3, + "firstBlockRuntimeId": 8947, + "lastBlockRuntimeId": 8978 + }, + "minecraft:zombie_head": { + "bedrock_identifier": "minecraft:skull", + "bedrock_data": 2, + "firstBlockRuntimeId": 8907, + "lastBlockRuntimeId": 8938 + }, + "minecraft:creeper_head": { + "bedrock_identifier": "minecraft:skull", + "bedrock_data": 4, + "firstBlockRuntimeId": 8987, + "lastBlockRuntimeId": 9018 + }, + "minecraft:dragon_head": { + "bedrock_identifier": "minecraft:skull", + "bedrock_data": 5, + "firstBlockRuntimeId": 9027, + "lastBlockRuntimeId": 9058 + }, + "minecraft:piglin_head": { + "bedrock_identifier": "minecraft:skull", + "bedrock_data": 6, + "firstBlockRuntimeId": 9067, + "lastBlockRuntimeId": 9098 + }, + "minecraft:nether_star": { + "bedrock_identifier": "minecraft:nether_star", + "bedrock_data": 0 + }, + "minecraft:pumpkin_pie": { + "bedrock_identifier": "minecraft:pumpkin_pie", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:firework_rocket": { + "bedrock_identifier": "minecraft:firework_rocket", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:firework_star": { + "bedrock_identifier": "minecraft:firework_star", + "bedrock_data": 0 + }, + "minecraft:enchanted_book": { + "bedrock_identifier": "minecraft:enchanted_book", + "bedrock_data": 0 + }, + "minecraft:nether_brick": { + "bedrock_identifier": "minecraft:netherbrick", + "bedrock_data": 0 + }, + "minecraft:prismarine_shard": { + "bedrock_identifier": "minecraft:prismarine_shard", + "bedrock_data": 0 + }, + "minecraft:prismarine_crystals": { + "bedrock_identifier": "minecraft:prismarine_crystals", + "bedrock_data": 0 + }, + "minecraft:rabbit": { + "bedrock_identifier": "minecraft:rabbit", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:cooked_rabbit": { + "bedrock_identifier": "minecraft:cooked_rabbit", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:rabbit_stew": { + "bedrock_identifier": "minecraft:rabbit_stew", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:rabbit_foot": { + "bedrock_identifier": "minecraft:rabbit_foot", + "bedrock_data": 0 + }, + "minecraft:rabbit_hide": { + "bedrock_identifier": "minecraft:rabbit_hide", + "bedrock_data": 0 + }, + "minecraft:armor_stand": { + "bedrock_identifier": "minecraft:armor_stand", + "bedrock_data": 0 + }, + "minecraft:iron_horse_armor": { + "bedrock_identifier": "minecraft:iron_horse_armor", + "bedrock_data": 0 + }, + "minecraft:golden_horse_armor": { + "bedrock_identifier": "minecraft:golden_horse_armor", + "bedrock_data": 0 + }, + "minecraft:diamond_horse_armor": { + "bedrock_identifier": "minecraft:diamond_horse_armor", + "bedrock_data": 0 + }, + "minecraft:leather_horse_armor": { + "bedrock_identifier": "minecraft:leather_horse_armor", + "bedrock_data": 0 + }, + "minecraft:lead": { + "bedrock_identifier": "minecraft:lead", + "bedrock_data": 0 + }, + "minecraft:name_tag": { + "bedrock_identifier": "minecraft:name_tag", + "bedrock_data": 0 + }, + "minecraft:command_block_minecart": { + "bedrock_identifier": "minecraft:command_block_minecart", + "bedrock_data": 0, + "is_entity_placer": true + }, + "minecraft:mutton": { + "bedrock_identifier": "minecraft:mutton", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:cooked_mutton": { + "bedrock_identifier": "minecraft:cooked_mutton", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:white_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 15, + "firstBlockRuntimeId": 10759, + "lastBlockRuntimeId": 10774 + }, + "minecraft:orange_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 14, + "firstBlockRuntimeId": 10775, + "lastBlockRuntimeId": 10790 + }, + "minecraft:magenta_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 13, + "firstBlockRuntimeId": 10791, + "lastBlockRuntimeId": 10806 + }, + "minecraft:light_blue_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 12, + "firstBlockRuntimeId": 10807, + "lastBlockRuntimeId": 10822 + }, + "minecraft:yellow_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 11, + "firstBlockRuntimeId": 10823, + "lastBlockRuntimeId": 10838 + }, + "minecraft:lime_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 10, + "firstBlockRuntimeId": 10839, + "lastBlockRuntimeId": 10854 + }, + "minecraft:pink_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 9, + "firstBlockRuntimeId": 10855, + "lastBlockRuntimeId": 10870 + }, + "minecraft:gray_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 8, + "firstBlockRuntimeId": 10871, + "lastBlockRuntimeId": 10886 + }, + "minecraft:light_gray_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 7, + "firstBlockRuntimeId": 10887, + "lastBlockRuntimeId": 10902 + }, + "minecraft:cyan_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 6, + "firstBlockRuntimeId": 10903, + "lastBlockRuntimeId": 10918 + }, + "minecraft:purple_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 5, + "firstBlockRuntimeId": 10919, + "lastBlockRuntimeId": 10934 + }, + "minecraft:blue_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 4, + "firstBlockRuntimeId": 10935, + "lastBlockRuntimeId": 10950 + }, + "minecraft:brown_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 3, + "firstBlockRuntimeId": 10951, + "lastBlockRuntimeId": 10966 + }, + "minecraft:green_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 2, + "firstBlockRuntimeId": 10967, + "lastBlockRuntimeId": 10982 + }, + "minecraft:red_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 1, + "firstBlockRuntimeId": 10983, + "lastBlockRuntimeId": 10998 + }, + "minecraft:black_banner": { + "bedrock_identifier": "minecraft:banner", + "bedrock_data": 0, + "firstBlockRuntimeId": 10999, + "lastBlockRuntimeId": 11014 + }, + "minecraft:end_crystal": { + "bedrock_identifier": "minecraft:end_crystal", + "bedrock_data": 0 + }, + "minecraft:chorus_fruit": { + "bedrock_identifier": "minecraft:chorus_fruit", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:popped_chorus_fruit": { + "bedrock_identifier": "minecraft:popped_chorus_fruit", + "bedrock_data": 0 + }, + "minecraft:torchflower_seeds": { + "bedrock_identifier": "minecraft:torchflower_seeds", + "bedrock_data": 0, + "firstBlockRuntimeId": 12495, + "lastBlockRuntimeId": 12496 + }, + "minecraft:pitcher_pod": { + "bedrock_identifier": "minecraft:pitcher_pod", + "bedrock_data": 0, + "firstBlockRuntimeId": 12497, + "lastBlockRuntimeId": 12506 + }, + "minecraft:beetroot": { + "bedrock_identifier": "minecraft:beetroot", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:beetroot_seeds": { + "bedrock_identifier": "minecraft:beetroot_seeds", + "bedrock_data": 0, + "firstBlockRuntimeId": 12509, + "lastBlockRuntimeId": 12512 + }, + "minecraft:beetroot_soup": { + "bedrock_identifier": "minecraft:beetroot_soup", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:dragon_breath": { + "bedrock_identifier": "minecraft:dragon_breath", + "bedrock_data": 0 + }, + "minecraft:splash_potion": { + "bedrock_identifier": "minecraft:splash_potion", + "bedrock_data": 0 + }, + "minecraft:spectral_arrow": { + "bedrock_identifier": "minecraft:arrow", + "bedrock_data": 0 + }, + "minecraft:tipped_arrow": { + "bedrock_identifier": "minecraft:arrow", + "bedrock_data": 0 + }, + "minecraft:lingering_potion": { + "bedrock_identifier": "minecraft:lingering_potion", + "bedrock_data": 0 + }, + "minecraft:shield": { + "bedrock_identifier": "minecraft:shield", + "bedrock_data": 0, + "repair_materials": [ + "minecraft:oak_planks", + "minecraft:spruce_planks", + "minecraft:birch_planks", + "minecraft:jungle_planks", + "minecraft:acacia_planks", + "minecraft:cherry_planks", + "minecraft:dark_oak_planks", + "minecraft:mangrove_planks", + "minecraft:bamboo_planks", + "minecraft:crimson_planks", + "minecraft:warped_planks" + ] + }, + "minecraft:totem_of_undying": { + "bedrock_identifier": "minecraft:totem_of_undying", + "bedrock_data": 0 + }, + "minecraft:shulker_shell": { + "bedrock_identifier": "minecraft:shulker_shell", + "bedrock_data": 0 + }, + "minecraft:iron_nugget": { + "bedrock_identifier": "minecraft:iron_nugget", + "bedrock_data": 0 + }, + "minecraft:knowledge_book": { + "bedrock_identifier": "minecraft:book", + "bedrock_data": 0 + }, + "minecraft:debug_stick": { + "bedrock_identifier": "minecraft:stick", + "bedrock_data": 0 + }, + "minecraft:music_disc_13": { + "bedrock_identifier": "minecraft:music_disc_13", + "bedrock_data": 0 + }, + "minecraft:music_disc_cat": { + "bedrock_identifier": "minecraft:music_disc_cat", + "bedrock_data": 0 + }, + "minecraft:music_disc_blocks": { + "bedrock_identifier": "minecraft:music_disc_blocks", + "bedrock_data": 0 + }, + "minecraft:music_disc_chirp": { + "bedrock_identifier": "minecraft:music_disc_chirp", + "bedrock_data": 0 + }, + "minecraft:music_disc_far": { + "bedrock_identifier": "minecraft:music_disc_far", + "bedrock_data": 0 + }, + "minecraft:music_disc_mall": { + "bedrock_identifier": "minecraft:music_disc_mall", + "bedrock_data": 0 + }, + "minecraft:music_disc_mellohi": { + "bedrock_identifier": "minecraft:music_disc_mellohi", + "bedrock_data": 0 + }, + "minecraft:music_disc_stal": { + "bedrock_identifier": "minecraft:music_disc_stal", + "bedrock_data": 0 + }, + "minecraft:music_disc_strad": { + "bedrock_identifier": "minecraft:music_disc_strad", + "bedrock_data": 0 + }, + "minecraft:music_disc_ward": { + "bedrock_identifier": "minecraft:music_disc_ward", + "bedrock_data": 0 + }, + "minecraft:music_disc_11": { + "bedrock_identifier": "minecraft:music_disc_11", + "bedrock_data": 0 + }, + "minecraft:music_disc_wait": { + "bedrock_identifier": "minecraft:music_disc_wait", + "bedrock_data": 0 + }, + "minecraft:music_disc_otherside": { + "bedrock_identifier": "minecraft:music_disc_otherside", + "bedrock_data": 0 + }, + "minecraft:music_disc_relic": { + "bedrock_identifier": "minecraft:music_disc_relic", + "bedrock_data": 0 + }, + "minecraft:music_disc_5": { + "bedrock_identifier": "minecraft:music_disc_5", + "bedrock_data": 0 + }, + "minecraft:music_disc_pigstep": { + "bedrock_identifier": "minecraft:music_disc_pigstep", + "bedrock_data": 0 + }, + "minecraft:disc_fragment_5": { + "bedrock_identifier": "minecraft:disc_fragment_5", + "bedrock_data": 0 + }, + "minecraft:trident": { + "bedrock_identifier": "minecraft:trident", + "bedrock_data": 0 + }, + "minecraft:phantom_membrane": { + "bedrock_identifier": "minecraft:phantom_membrane", + "bedrock_data": 0 + }, + "minecraft:nautilus_shell": { + "bedrock_identifier": "minecraft:nautilus_shell", + "bedrock_data": 0 + }, + "minecraft:heart_of_the_sea": { + "bedrock_identifier": "minecraft:heart_of_the_sea", + "bedrock_data": 0 + }, + "minecraft:crossbow": { + "bedrock_identifier": "minecraft:crossbow", + "bedrock_data": 0 + }, + "minecraft:suspicious_stew": { + "bedrock_identifier": "minecraft:suspicious_stew", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:loom": { + "bedrock_identifier": "minecraft:loom", + "bedrock_data": 0, + "firstBlockRuntimeId": 18404, + "lastBlockRuntimeId": 18407 + }, + "minecraft:flower_banner_pattern": { + "bedrock_identifier": "minecraft:flower_banner_pattern", + "bedrock_data": 0 + }, + "minecraft:creeper_banner_pattern": { + "bedrock_identifier": "minecraft:creeper_banner_pattern", + "bedrock_data": 0 + }, + "minecraft:skull_banner_pattern": { + "bedrock_identifier": "minecraft:skull_banner_pattern", + "bedrock_data": 0 + }, + "minecraft:mojang_banner_pattern": { + "bedrock_identifier": "minecraft:mojang_banner_pattern", + "bedrock_data": 0 + }, + "minecraft:globe_banner_pattern": { + "bedrock_identifier": "minecraft:globe_banner_pattern", + "bedrock_data": 0 + }, + "minecraft:piglin_banner_pattern": { + "bedrock_identifier": "minecraft:piglin_banner_pattern", + "bedrock_data": 0 + }, + "minecraft:flow_banner_pattern": { + "bedrock_identifier": "minecraft:flow_banner_pattern", + "bedrock_data": 0 + }, + "minecraft:guster_banner_pattern": { + "bedrock_identifier": "minecraft:guster_banner_pattern", + "bedrock_data": 0 + }, + "minecraft:goat_horn": { + "bedrock_identifier": "minecraft:goat_horn", + "bedrock_data": 0 + }, + "minecraft:composter": { + "bedrock_identifier": "minecraft:composter", + "bedrock_data": 0, + "firstBlockRuntimeId": 19372, + "lastBlockRuntimeId": 19380 + }, + "minecraft:barrel": { + "bedrock_identifier": "minecraft:barrel", + "bedrock_data": 0, + "firstBlockRuntimeId": 18408, + "lastBlockRuntimeId": 18419 + }, + "minecraft:smoker": { + "bedrock_identifier": "minecraft:smoker", + "bedrock_data": 0, + "firstBlockRuntimeId": 18420, + "lastBlockRuntimeId": 18427 + }, + "minecraft:blast_furnace": { + "bedrock_identifier": "minecraft:blast_furnace", + "bedrock_data": 0, + "firstBlockRuntimeId": 18428, + "lastBlockRuntimeId": 18435 + }, + "minecraft:cartography_table": { + "bedrock_identifier": "minecraft:cartography_table", + "bedrock_data": 0, + "firstBlockRuntimeId": 18436 + }, + "minecraft:fletching_table": { + "bedrock_identifier": "minecraft:fletching_table", + "bedrock_data": 0, + "firstBlockRuntimeId": 18437 + }, + "minecraft:grindstone": { + "bedrock_identifier": "minecraft:grindstone", + "bedrock_data": 0, + "firstBlockRuntimeId": 18438, + "lastBlockRuntimeId": 18449 + }, + "minecraft:smithing_table": { + "bedrock_identifier": "minecraft:smithing_table", + "bedrock_data": 0, + "firstBlockRuntimeId": 18466 + }, + "minecraft:stonecutter": { + "bedrock_identifier": "minecraft:stonecutter_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 18467, + "lastBlockRuntimeId": 18470 + }, + "minecraft:bell": { + "bedrock_identifier": "minecraft:bell", + "bedrock_data": 0, + "firstBlockRuntimeId": 18471, + "lastBlockRuntimeId": 18502 + }, + "minecraft:lantern": { + "bedrock_identifier": "minecraft:lantern", + "bedrock_data": 0, + "firstBlockRuntimeId": 18503, + "lastBlockRuntimeId": 18506 + }, + "minecraft:soul_lantern": { + "bedrock_identifier": "minecraft:soul_lantern", + "bedrock_data": 0, + "firstBlockRuntimeId": 18507, + "lastBlockRuntimeId": 18510 + }, + "minecraft:sweet_berries": { + "bedrock_identifier": "minecraft:sweet_berries", + "bedrock_data": 0, + "firstBlockRuntimeId": 18575, + "lastBlockRuntimeId": 18578, + "is_edible": true + }, + "minecraft:glow_berries": { + "bedrock_identifier": "minecraft:glow_berries", + "bedrock_data": 0, + "firstBlockRuntimeId": 24769, + "lastBlockRuntimeId": 24820, + "is_edible": true + }, + "minecraft:campfire": { + "bedrock_identifier": "minecraft:campfire", + "bedrock_data": 0, + "firstBlockRuntimeId": 18511, + "lastBlockRuntimeId": 18542 + }, + "minecraft:soul_campfire": { + "bedrock_identifier": "minecraft:soul_campfire", + "bedrock_data": 0, + "firstBlockRuntimeId": 18543, + "lastBlockRuntimeId": 18574 + }, + "minecraft:shroomlight": { + "bedrock_identifier": "minecraft:shroomlight", + "bedrock_data": 0, + "firstBlockRuntimeId": 18610 + }, + "minecraft:honeycomb": { + "bedrock_identifier": "minecraft:honeycomb", + "bedrock_data": 0 + }, + "minecraft:bee_nest": { + "bedrock_identifier": "minecraft:bee_nest", + "bedrock_data": 0, + "firstBlockRuntimeId": 19397, + "lastBlockRuntimeId": 19420 + }, + "minecraft:beehive": { + "bedrock_identifier": "minecraft:beehive", + "bedrock_data": 0, + "firstBlockRuntimeId": 19421, + "lastBlockRuntimeId": 19444 + }, + "minecraft:honey_bottle": { + "bedrock_identifier": "minecraft:honey_bottle", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:honeycomb_block": { + "bedrock_identifier": "minecraft:honeycomb_block", + "bedrock_data": 0, + "firstBlockRuntimeId": 19446 + }, + "minecraft:lodestone": { + "bedrock_identifier": "minecraft:lodestone", + "bedrock_data": 0, + "firstBlockRuntimeId": 19459 + }, + "minecraft:crying_obsidian": { + "bedrock_identifier": "minecraft:crying_obsidian", + "bedrock_data": 0, + "firstBlockRuntimeId": 19449 + }, + "minecraft:blackstone": { + "bedrock_identifier": "minecraft:blackstone", + "bedrock_data": 0, + "firstBlockRuntimeId": 19460 + }, + "minecraft:blackstone_slab": { + "bedrock_identifier": "minecraft:blackstone_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 19865, + "lastBlockRuntimeId": 19870 + }, + "minecraft:blackstone_stairs": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 19461, + "lastBlockRuntimeId": 19540 + }, + "minecraft:gilded_blackstone": { + "bedrock_identifier": "minecraft:gilded_blackstone", + "bedrock_data": 0, + "firstBlockRuntimeId": 20285 + }, + "minecraft:polished_blackstone": { + "bedrock_identifier": "minecraft:polished_blackstone", + "bedrock_data": 0, + "firstBlockRuntimeId": 19871 + }, + "minecraft:polished_blackstone_slab": { + "bedrock_identifier": "minecraft:polished_blackstone_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 20366, + "lastBlockRuntimeId": 20371 + }, + "minecraft:polished_blackstone_stairs": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 20286, + "lastBlockRuntimeId": 20365 + }, + "minecraft:chiseled_polished_blackstone": { + "bedrock_identifier": "minecraft:chiseled_polished_blackstone", + "bedrock_data": 0, + "firstBlockRuntimeId": 19874 + }, + "minecraft:polished_blackstone_bricks": { + "bedrock_identifier": "minecraft:polished_blackstone_bricks", + "bedrock_data": 0, + "firstBlockRuntimeId": 19872 + }, + "minecraft:polished_blackstone_brick_slab": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_slab", + "bedrock_data": 0, + "firstBlockRuntimeId": 19875, + "lastBlockRuntimeId": 19880 + }, + "minecraft:polished_blackstone_brick_stairs": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "bedrock_data": 0, + "firstBlockRuntimeId": 19881, + "lastBlockRuntimeId": 19960 + }, + "minecraft:cracked_polished_blackstone_bricks": { + "bedrock_identifier": "minecraft:cracked_polished_blackstone_bricks", + "bedrock_data": 0, + "firstBlockRuntimeId": 19873 + }, + "minecraft:respawn_anchor": { + "bedrock_identifier": "minecraft:respawn_anchor", + "bedrock_data": 0, + "firstBlockRuntimeId": 19450, + "lastBlockRuntimeId": 19454 + }, + "minecraft:candle": { + "bedrock_identifier": "minecraft:candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20725, + "lastBlockRuntimeId": 20740 + }, + "minecraft:white_candle": { + "bedrock_identifier": "minecraft:white_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20741, + "lastBlockRuntimeId": 20756 + }, + "minecraft:orange_candle": { + "bedrock_identifier": "minecraft:orange_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20757, + "lastBlockRuntimeId": 20772 + }, + "minecraft:magenta_candle": { + "bedrock_identifier": "minecraft:magenta_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20773, + "lastBlockRuntimeId": 20788 + }, + "minecraft:light_blue_candle": { + "bedrock_identifier": "minecraft:light_blue_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20789, + "lastBlockRuntimeId": 20804 + }, + "minecraft:yellow_candle": { + "bedrock_identifier": "minecraft:yellow_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20805, + "lastBlockRuntimeId": 20820 + }, + "minecraft:lime_candle": { + "bedrock_identifier": "minecraft:lime_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20821, + "lastBlockRuntimeId": 20836 + }, + "minecraft:pink_candle": { + "bedrock_identifier": "minecraft:pink_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20837, + "lastBlockRuntimeId": 20852 + }, + "minecraft:gray_candle": { + "bedrock_identifier": "minecraft:gray_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20853, + "lastBlockRuntimeId": 20868 + }, + "minecraft:light_gray_candle": { + "bedrock_identifier": "minecraft:light_gray_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20869, + "lastBlockRuntimeId": 20884 + }, + "minecraft:cyan_candle": { + "bedrock_identifier": "minecraft:cyan_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20885, + "lastBlockRuntimeId": 20900 + }, + "minecraft:purple_candle": { + "bedrock_identifier": "minecraft:purple_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20901, + "lastBlockRuntimeId": 20916 + }, + "minecraft:blue_candle": { + "bedrock_identifier": "minecraft:blue_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20917, + "lastBlockRuntimeId": 20932 + }, + "minecraft:brown_candle": { + "bedrock_identifier": "minecraft:brown_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20933, + "lastBlockRuntimeId": 20948 + }, + "minecraft:green_candle": { + "bedrock_identifier": "minecraft:green_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20949, + "lastBlockRuntimeId": 20964 + }, + "minecraft:red_candle": { + "bedrock_identifier": "minecraft:red_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20965, + "lastBlockRuntimeId": 20980 + }, + "minecraft:black_candle": { + "bedrock_identifier": "minecraft:black_candle", + "bedrock_data": 0, + "firstBlockRuntimeId": 20981, + "lastBlockRuntimeId": 20996 + }, + "minecraft:small_amethyst_bud": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "bedrock_data": 0, + "firstBlockRuntimeId": 21069, + "lastBlockRuntimeId": 21080 + }, + "minecraft:medium_amethyst_bud": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "bedrock_data": 0, + "firstBlockRuntimeId": 21057, + "lastBlockRuntimeId": 21068 + }, + "minecraft:large_amethyst_bud": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "bedrock_data": 0, + "firstBlockRuntimeId": 21045, + "lastBlockRuntimeId": 21056 + }, + "minecraft:amethyst_cluster": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "bedrock_data": 0, + "firstBlockRuntimeId": 21033, + "lastBlockRuntimeId": 21044 + }, + "minecraft:pointed_dripstone": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "bedrock_data": 0, + "firstBlockRuntimeId": 24748, + "lastBlockRuntimeId": 24767 + }, + "minecraft:ochre_froglight": { + "bedrock_identifier": "minecraft:ochre_froglight", + "bedrock_data": 0, + "firstBlockRuntimeId": 26563, + "lastBlockRuntimeId": 26565 + }, + "minecraft:verdant_froglight": { + "bedrock_identifier": "minecraft:verdant_froglight", + "bedrock_data": 0, + "firstBlockRuntimeId": 26566, + "lastBlockRuntimeId": 26568 + }, + "minecraft:pearlescent_froglight": { + "bedrock_identifier": "minecraft:pearlescent_froglight", + "bedrock_data": 0, + "firstBlockRuntimeId": 26569, + "lastBlockRuntimeId": 26571 + }, + "minecraft:frogspawn": { + "bedrock_identifier": "minecraft:frog_spawn", + "bedrock_data": 0, + "firstBlockRuntimeId": 26572 + }, + "minecraft:echo_shard": { + "bedrock_identifier": "minecraft:echo_shard", + "bedrock_data": 0 + }, + "minecraft:brush": { + "bedrock_identifier": "minecraft:brush", + "bedrock_data": 0 + }, + "minecraft:netherite_upgrade_smithing_template": { + "bedrock_identifier": "minecraft:netherite_upgrade_smithing_template", + "bedrock_data": 0 + }, + "minecraft:sentry_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:sentry_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:dune_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:dune_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:coast_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:coast_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:wild_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:wild_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:ward_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:ward_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:eye_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:eye_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:vex_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:vex_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:tide_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:tide_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:snout_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:snout_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:rib_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:rib_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:spire_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:spire_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:wayfinder_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:wayfinder_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:shaper_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:shaper_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:silence_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:silence_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:raiser_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:raiser_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:host_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:host_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:flow_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:flow_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:bolt_armor_trim_smithing_template": { + "bedrock_identifier": "minecraft:bolt_armor_trim_smithing_template", + "bedrock_data": 0 + }, + "minecraft:angler_pottery_sherd": { + "bedrock_identifier": "minecraft:angler_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:archer_pottery_sherd": { + "bedrock_identifier": "minecraft:archer_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:arms_up_pottery_sherd": { + "bedrock_identifier": "minecraft:arms_up_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:blade_pottery_sherd": { + "bedrock_identifier": "minecraft:blade_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:brewer_pottery_sherd": { + "bedrock_identifier": "minecraft:brewer_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:burn_pottery_sherd": { + "bedrock_identifier": "minecraft:burn_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:danger_pottery_sherd": { + "bedrock_identifier": "minecraft:danger_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:explorer_pottery_sherd": { + "bedrock_identifier": "minecraft:explorer_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:flow_pottery_sherd": { + "bedrock_identifier": "minecraft:flow_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:friend_pottery_sherd": { + "bedrock_identifier": "minecraft:friend_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:guster_pottery_sherd": { + "bedrock_identifier": "minecraft:guster_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:heart_pottery_sherd": { + "bedrock_identifier": "minecraft:heart_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:heartbreak_pottery_sherd": { + "bedrock_identifier": "minecraft:heartbreak_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:howl_pottery_sherd": { + "bedrock_identifier": "minecraft:howl_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:miner_pottery_sherd": { + "bedrock_identifier": "minecraft:miner_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:mourner_pottery_sherd": { + "bedrock_identifier": "minecraft:mourner_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:plenty_pottery_sherd": { + "bedrock_identifier": "minecraft:plenty_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:prize_pottery_sherd": { + "bedrock_identifier": "minecraft:prize_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:scrape_pottery_sherd": { + "bedrock_identifier": "minecraft:scrape_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:sheaf_pottery_sherd": { + "bedrock_identifier": "minecraft:sheaf_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:shelter_pottery_sherd": { + "bedrock_identifier": "minecraft:shelter_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:skull_pottery_sherd": { + "bedrock_identifier": "minecraft:skull_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:snort_pottery_sherd": { + "bedrock_identifier": "minecraft:snort_pottery_sherd", + "bedrock_data": 0 + }, + "minecraft:copper_grate": { + "bedrock_identifier": "minecraft:copper_grate", + "bedrock_data": 0, + "firstBlockRuntimeId": 24676, + "lastBlockRuntimeId": 24677 + }, + "minecraft:exposed_copper_grate": { + "bedrock_identifier": "minecraft:exposed_copper_grate", + "bedrock_data": 0, + "firstBlockRuntimeId": 24678, + "lastBlockRuntimeId": 24679 + }, + "minecraft:weathered_copper_grate": { + "bedrock_identifier": "minecraft:weathered_copper_grate", + "bedrock_data": 0, + "firstBlockRuntimeId": 24680, + "lastBlockRuntimeId": 24681 + }, + "minecraft:oxidized_copper_grate": { + "bedrock_identifier": "minecraft:oxidized_copper_grate", + "bedrock_data": 0, + "firstBlockRuntimeId": 24682, + "lastBlockRuntimeId": 24683 + }, + "minecraft:waxed_copper_grate": { + "bedrock_identifier": "minecraft:waxed_copper_grate", + "bedrock_data": 0, + "firstBlockRuntimeId": 24684, + "lastBlockRuntimeId": 24685 + }, + "minecraft:waxed_exposed_copper_grate": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_grate", + "bedrock_data": 0, + "firstBlockRuntimeId": 24686, + "lastBlockRuntimeId": 24687 + }, + "minecraft:waxed_weathered_copper_grate": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_grate", + "bedrock_data": 0, + "firstBlockRuntimeId": 24688, + "lastBlockRuntimeId": 24689 + }, + "minecraft:waxed_oxidized_copper_grate": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_grate", + "bedrock_data": 0, + "firstBlockRuntimeId": 24690, + "lastBlockRuntimeId": 24691 + }, + "minecraft:copper_bulb": { + "bedrock_identifier": "minecraft:copper_bulb", + "bedrock_data": 0, + "firstBlockRuntimeId": 24692, + "lastBlockRuntimeId": 24695 + }, + "minecraft:exposed_copper_bulb": { + "bedrock_identifier": "minecraft:exposed_copper_bulb", + "bedrock_data": 0, + "firstBlockRuntimeId": 24696, + "lastBlockRuntimeId": 24699 + }, + "minecraft:weathered_copper_bulb": { + "bedrock_identifier": "minecraft:weathered_copper_bulb", + "bedrock_data": 0, + "firstBlockRuntimeId": 24700, + "lastBlockRuntimeId": 24703 + }, + "minecraft:oxidized_copper_bulb": { + "bedrock_identifier": "minecraft:oxidized_copper_bulb", + "bedrock_data": 0, + "firstBlockRuntimeId": 24704, + "lastBlockRuntimeId": 24707 + }, + "minecraft:waxed_copper_bulb": { + "bedrock_identifier": "minecraft:waxed_copper_bulb", + "bedrock_data": 0, + "firstBlockRuntimeId": 24708, + "lastBlockRuntimeId": 24711 + }, + "minecraft:waxed_exposed_copper_bulb": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_bulb", + "bedrock_data": 0, + "firstBlockRuntimeId": 24712, + "lastBlockRuntimeId": 24715 + }, + "minecraft:waxed_weathered_copper_bulb": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_bulb", + "bedrock_data": 0, + "firstBlockRuntimeId": 24716, + "lastBlockRuntimeId": 24719 + }, + "minecraft:waxed_oxidized_copper_bulb": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_bulb", + "bedrock_data": 0, + "firstBlockRuntimeId": 24720, + "lastBlockRuntimeId": 24723 + }, + "minecraft:trial_spawner": { + "bedrock_identifier": "minecraft:trial_spawner", + "bedrock_data": 0, + "firstBlockRuntimeId": 26638, + "lastBlockRuntimeId": 26649 + }, + "minecraft:trial_key": { + "bedrock_identifier": "minecraft:trial_key", + "bedrock_data": 0 + }, + "minecraft:ominous_trial_key": { + "bedrock_identifier": "minecraft:trial_key", + "bedrock_data": 0 + }, + "minecraft:vault": { + "bedrock_identifier": "minecraft:vault", + "bedrock_data": 0, + "firstBlockRuntimeId": 26650, + "lastBlockRuntimeId": 26681 + }, + "minecraft:ominous_bottle": { + "bedrock_identifier": "minecraft:glass_bottle", + "bedrock_data": 0, + "is_edible": true + }, + "minecraft:breeze_rod": { + "bedrock_identifier": "minecraft:breeze_rod", + "bedrock_data": 0 + } +} \ No newline at end of file From 2b125414c97ee460d7bbd28b94d96d793a1a80b1 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 16 Jun 2024 06:01:38 +0800 Subject: [PATCH 012/136] feat: more works --- platforms/allay/build.gradle.kts | 1 + .../allaymc/terra/allay/AllayPlatform.java | 24 +- .../org/allaymc/terra/allay/JeBlockState.java | 19 +- .../java/org/allaymc/terra/allay/Mapping.java | 134 +++++++-- .../allaymc/terra/allay/TerraAllayPlugin.java | 2 +- .../generator/AllayGeneratorWrapper.java | 3 +- .../src/main/resources/mapping/blocks.json | 270 ++++++++++-------- 7 files changed, 317 insertions(+), 136 deletions(-) diff --git a/platforms/allay/build.gradle.kts b/platforms/allay/build.gradle.kts index 0749708bc..ba31e8617 100644 --- a/platforms/allay/build.gradle.kts +++ b/platforms/allay/build.gradle.kts @@ -4,6 +4,7 @@ repositories { dependencies { shadedApi(project(":common:implementation:base")) + implementation("com.google.code.gson", "gson", "2.11.0") compileOnly("org.projectlombok:lombok:1.18.32") compileOnly("org.allaymc", "Allay-API", "1.0.0") diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java index f05ebbf7f..513b10cd6 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java @@ -1,10 +1,16 @@ package org.allaymc.terra.allay; +import com.dfsek.tectonic.api.TypeRegistry; +import com.dfsek.tectonic.api.depth.DepthTracker; +import com.dfsek.tectonic.api.exception.LoadException; import com.dfsek.terra.AbstractPlatform; +import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.handle.ItemHandle; import com.dfsek.terra.api.handle.WorldHandle; - +import com.dfsek.terra.api.world.biome.PlatformBiome; +import org.allaymc.api.data.VanillaBiomeId; import org.allaymc.api.server.Server; +import org.allaymc.terra.allay.delegate.AllayBiome; import org.allaymc.terra.allay.handle.AllayItemHandle; import org.allaymc.terra.allay.handle.AllayWorldHandle; import org.jetbrains.annotations.NotNull; @@ -22,6 +28,10 @@ public class AllayPlatform extends AbstractPlatform { protected static final AllayWorldHandle ALLAY_WORLD_HANDLE = new AllayWorldHandle(); protected static final AllayItemHandle ALLAY_ITEM_HANDLE = new AllayItemHandle(); + public AllayPlatform() { + load(); + } + @Override public boolean reload() { // TODO: Implement reload @@ -52,4 +62,16 @@ public class AllayPlatform extends AbstractPlatform { public void runPossiblyUnsafeTask(@NotNull Runnable task) { Server.getInstance().getScheduler().runLater(Server.getInstance(), task); } + + @Override + public void register(TypeRegistry registry) { + super.register(registry); + registry.registerLoader(BlockState.class, (type, o, loader, depthTracker) -> ALLAY_WORLD_HANDLE.createBlockState((String) o)) + .registerLoader(PlatformBiome.class, (type, o, loader, depthTracker) -> parseBiome((String) o, depthTracker)); + } + + protected AllayBiome parseBiome(String id, DepthTracker depthTracker) throws LoadException { + if(!id.startsWith("minecraft:")) throw new LoadException("Invalid biome identifier " + id, depthTracker); + return new AllayBiome(VanillaBiomeId.fromId(Mapping.biomeIdJeToBe(id))); + } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java index 3b1735e10..7d959b860 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java @@ -1,9 +1,7 @@ package org.allaymc.terra.allay; -import org.allaymc.api.utils.Identifier; +import org.allaymc.api.utils.HashUtils; -import java.util.HashMap; -import java.util.Map; import java.util.TreeMap; @@ -15,6 +13,7 @@ import java.util.TreeMap; public class JeBlockState { protected final String identifier; protected final TreeMap properties; + protected int hash = Integer.MAX_VALUE; // 懒加载 public static JeBlockState fromString(String data) { return new JeBlockState(data); @@ -46,7 +45,19 @@ public class JeBlockState { if(!includeProperties) return identifier; StringBuilder builder = new StringBuilder(identifier).append(";"); properties.forEach((k, v) -> builder.append(k).append("=").append(v).append(";")); - return builder.toString(); + var str = builder.toString(); + if (hash == Integer.MAX_VALUE) { + // 顺便算一下hash + hash = HashUtils.fnv1a_32(str.getBytes()); + } + return str; + } + + public int getHash() { + if (hash == Integer.MAX_VALUE) { + hash = HashUtils.fnv1a_32(toString(true).getBytes()); + } + return hash; } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java index 0502f3365..3e7090d51 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -1,6 +1,23 @@ package org.allaymc.terra.allay; +import com.dfsek.terra.api.block.state.properties.Property; + +import com.google.gson.reflect.TypeToken; +import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; +import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap; +import it.unimi.dsi.fastutil.objects.Object2ObjectOpenHashMap; +import lombok.extern.slf4j.Slf4j; +import org.allaymc.api.block.property.type.BlockPropertyType.BlockPropertyValue; +import org.allaymc.api.block.registry.BlockTypeRegistry; import org.allaymc.api.block.type.BlockState; +import org.allaymc.api.block.type.BlockTypes; +import org.allaymc.api.utils.Identifier; +import org.allaymc.api.utils.JSONUtils; + +import java.io.IOException; +import java.util.List; +import java.util.Map; +import java.util.TreeMap; /** @@ -8,34 +25,117 @@ import org.allaymc.api.block.type.BlockState; * * @author daoge_cmd */ +@Slf4j public final class Mapping { + private static final Map BLOCK_STATE_BE_TO_JE = new Object2ObjectOpenHashMap<>(); + private static final Map BLOCK_STATE_JE_HASH_TO_BE = new Int2ObjectOpenHashMap<>(); + private static final Map ITEM_ID_JE_TO_BE = new Object2ObjectOpenHashMap<>(); + private static final Map BIOME_ID_JE_TO_BE = new Object2IntOpenHashMap<>(); + public static void init() { - // TODO + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/blocks.json")) { + if (stream == null) { + log.error("blocks.json not found"); + return; + } + var mappings = (List>>) JSONUtils.from(stream, new TypeToken>(){}).get("mappings"); + for(var mapping : mappings) { + var jeState = createJeBlockState(mapping.get("java_state")); + var beState = createBeBlockState(mapping.get("bedrock_state")); + BLOCK_STATE_BE_TO_JE.put(beState, jeState); + BLOCK_STATE_JE_HASH_TO_BE.put(jeState.getHash(), beState); + } + } catch(IOException e) { + log.error("Failed to load mapping", e); + } + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/items.json")) { + if (stream == null) { + log.error("items.json not found"); + return; + } + var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); + for(var mapping : mappings) { + ITEM_ID_JE_TO_BE.put(mapping.getKey(), (String) mapping.getValue().get("bedrock_identifier")); + } + } catch(IOException e) { + log.error("Failed to load mapping", e); + } + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/biomes.json")) { + if (stream == null) { + log.error("biomes.json not found"); + return; + } + var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); + for(var mapping : mappings) { + BIOME_ID_JE_TO_BE.put(mapping.getKey(), mapping.getValue().get("bedrock_id")); + } + } catch(IOException e) { + log.error("Failed to load mapping", e); + } + } + + private static BlockState createBeBlockState(Map data) { + var identifier = new Identifier((String) data.get("bedrock_identifier")); + // 方块类型 + var blockType = BlockTypeRegistry.getRegistry().get(identifier); + // 方块属性 + Map state = (Map) data.get("state"); + if (state == null) return blockType.getDefaultState(); + var propertyValues = new BlockPropertyValue[state.size()]; + int index = -1; + for(var entry : state.entrySet()) { + index++; + var propertyName = entry.getKey(); + var propertyType = blockType.getProperties().get(propertyName); + if (propertyType == null) { + log.warn("Unknown property type: {}", propertyName); + return null; + } + try { + propertyValues[index] = propertyType.tryCreateValue(entry.getValue()); + } catch (IllegalArgumentException e) { + log.warn("Failed to create property value for {}: {}", propertyName, entry.getValue()); + return null; + } + } + return blockType.ofState(propertyValues); + } + + private static JeBlockState createJeBlockState(Map data) { + var identifier = (String) data.get("Name"); + var properties = (Map) data.getOrDefault("Properties", Map.of()); + return JeBlockState.create(identifier, new TreeMap<>(properties)); } public static JeBlockState blockStateBeToJe(BlockState beBlockState) { - // TODO - return null; + return BLOCK_STATE_BE_TO_JE.get(beBlockState); } public static BlockState blockStateJeToBe(JeBlockState jeBlockState) { - // TODO - return null; - } - - public static String enchantmentIdBeToJe(String beEnchantmentId) { - // TODO - return null; - } - - public static String enchantmentIdJeToBe(String jeEnchantmentId) { - // TODO - return null; + var result = BLOCK_STATE_JE_HASH_TO_BE.get(jeBlockState.getHash()); + if(result == null) { + log.warn("Failed to find be block state for {}", jeBlockState); + return BlockTypes.AIR_TYPE.getDefaultState(); + } + return result; } public static String itemIdJeToBe(String jeItemId) { - // TODO - return null; + return ITEM_ID_JE_TO_BE.get(jeItemId); + } + + // Enchantment identifiers are same in both versions + + public static String enchantmentIdBeToJe(String beEnchantmentId) { + return beEnchantmentId; + } + + public static String enchantmentIdJeToBe(String jeEnchantmentId) { + return jeEnchantmentId; + } + + public static int biomeIdJeToBe(String jeBiomeId) { + return BIOME_ID_JE_TO_BE.get(jeBiomeId); } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java index 5681a09ac..0e10dd492 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java @@ -25,7 +25,7 @@ public class TerraAllayPlugin extends Plugin { // TODO: Adapt command manager @Override - public void onEnable() { + public void onLoad() { log.info("Starting Terra..."); log.info("Loading mapping..."); diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java index 5ff0b1f36..cd66efdfa 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java @@ -29,7 +29,7 @@ import java.util.Locale; */ @Slf4j public class AllayGeneratorWrapper extends WorldGenerator implements GeneratorWrapper { - protected static final String DEFAULT_PACK_NAME = "default"; + protected static final String DEFAULT_PACK_NAME = "overworld"; protected static final String OPTION_PACK_NAME = "pack"; protected static final String OPTION_SEED = "pack"; @@ -86,6 +86,7 @@ public class AllayGeneratorWrapper extends WorldGenerator implements GeneratorWr @Override public void setDimension(Dimension dimension) { + super.setDimension(dimension); this.worldProperties = new WorldProperties() { @Override public long getSeed() { diff --git a/platforms/allay/src/main/resources/mapping/blocks.json b/platforms/allay/src/main/resources/mapping/blocks.json index a341f74f4..334c21844 100644 --- a/platforms/allay/src/main/resources/mapping/blocks.json +++ b/platforms/allay/src/main/resources/mapping/blocks.json @@ -28903,7 +28903,10 @@ "Name": "minecraft:short_grass" }, "bedrock_state": { - "bedrock_identifier": "short_grass" + "bedrock_identifier": "tallgrass", + "state": { + "tall_grass_type": "tall" + } } }, { @@ -28911,7 +28914,10 @@ "Name": "minecraft:fern" }, "bedrock_state": { - "bedrock_identifier": "fern" + "bedrock_identifier": "tallgrass", + "state": { + "tall_grass_type": "fern" + } } }, { @@ -187594,9 +187600,10 @@ "Name": "minecraft:sunflower" }, "bedrock_state": { - "bedrock_identifier": "sunflower", + "bedrock_identifier": "double_plant", "state": { - "upper_block_bit": true + "upper_block_bit": true, + "double_plant_type": "sunflower" } } }, @@ -187608,9 +187615,10 @@ "Name": "minecraft:sunflower" }, "bedrock_state": { - "bedrock_identifier": "sunflower", + "bedrock_identifier": "double_plant", "state": { - "upper_block_bit": false + "upper_block_bit": false, + "double_plant_type": "sunflower" } } }, @@ -187622,9 +187630,10 @@ "Name": "minecraft:lilac" }, "bedrock_state": { - "bedrock_identifier": "lilac", + "bedrock_identifier": "double_plant", "state": { - "upper_block_bit": true + "upper_block_bit": true, + "double_plant_type": "syringa" } } }, @@ -187636,9 +187645,10 @@ "Name": "minecraft:lilac" }, "bedrock_state": { - "bedrock_identifier": "lilac", + "bedrock_identifier": "double_plant", "state": { - "upper_block_bit": false + "upper_block_bit": false, + "double_plant_type": "syringa" } } }, @@ -187650,9 +187660,10 @@ "Name": "minecraft:rose_bush" }, "bedrock_state": { - "bedrock_identifier": "rose_bush", + "bedrock_identifier": "double_plant", "state": { - "upper_block_bit": true + "upper_block_bit": true, + "double_plant_type": "rose" } } }, @@ -187664,9 +187675,10 @@ "Name": "minecraft:rose_bush" }, "bedrock_state": { - "bedrock_identifier": "rose_bush", + "bedrock_identifier": "double_plant", "state": { - "upper_block_bit": false + "upper_block_bit": false, + "double_plant_type": "rose" } } }, @@ -187678,9 +187690,10 @@ "Name": "minecraft:peony" }, "bedrock_state": { - "bedrock_identifier": "peony", + "bedrock_identifier": "double_plant", "state": { - "upper_block_bit": true + "upper_block_bit": true, + "double_plant_type": "paeonia" } } }, @@ -187692,9 +187705,10 @@ "Name": "minecraft:peony" }, "bedrock_state": { - "bedrock_identifier": "peony", + "bedrock_identifier": "double_plant", "state": { - "upper_block_bit": false + "upper_block_bit": false, + "double_plant_type": "paeonia" } } }, @@ -187706,9 +187720,10 @@ "Name": "minecraft:tall_grass" }, "bedrock_state": { - "bedrock_identifier": "tall_grass", + "bedrock_identifier": "double_plant", "state": { - "upper_block_bit": true + "upper_block_bit": true, + "double_plant_type": "grass" } } }, @@ -187720,9 +187735,10 @@ "Name": "minecraft:tall_grass" }, "bedrock_state": { - "bedrock_identifier": "tall_grass", + "bedrock_identifier": "double_plant", "state": { - "upper_block_bit": false + "upper_block_bit": false, + "double_plant_type": "grass" } } }, @@ -187734,9 +187750,10 @@ "Name": "minecraft:large_fern" }, "bedrock_state": { - "bedrock_identifier": "large_fern", + "bedrock_identifier": "double_plant", "state": { - "upper_block_bit": true + "upper_block_bit": true, + "double_plant_type": "fern" } } }, @@ -187748,9 +187765,10 @@ "Name": "minecraft:large_fern" }, "bedrock_state": { - "bedrock_identifier": "large_fern", + "bedrock_identifier": "double_plant", "state": { - "upper_block_bit": false + "upper_block_bit": false, + "double_plant_type": "fern" } } }, @@ -194712,8 +194730,9 @@ "Name": "minecraft:smooth_stone_slab" }, "bedrock_state": { - "bedrock_identifier": "smooth_stone_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "smooth_stone", "minecraft:vertical_half": "top" } } @@ -194727,8 +194746,9 @@ "Name": "minecraft:smooth_stone_slab" }, "bedrock_state": { - "bedrock_identifier": "smooth_stone_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "smooth_stone", "minecraft:vertical_half": "top" } } @@ -194742,8 +194762,9 @@ "Name": "minecraft:smooth_stone_slab" }, "bedrock_state": { - "bedrock_identifier": "smooth_stone_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "smooth_stone", "minecraft:vertical_half": "bottom" } } @@ -194757,8 +194778,9 @@ "Name": "minecraft:smooth_stone_slab" }, "bedrock_state": { - "bedrock_identifier": "smooth_stone_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "smooth_stone", "minecraft:vertical_half": "bottom" } } @@ -194804,8 +194826,9 @@ "Name": "minecraft:sandstone_slab" }, "bedrock_state": { - "bedrock_identifier": "sandstone_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "sandstone", "minecraft:vertical_half": "top" } } @@ -194819,8 +194842,9 @@ "Name": "minecraft:sandstone_slab" }, "bedrock_state": { - "bedrock_identifier": "sandstone_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "sandstone", "minecraft:vertical_half": "top" } } @@ -194834,8 +194858,9 @@ "Name": "minecraft:sandstone_slab" }, "bedrock_state": { - "bedrock_identifier": "sandstone_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "sandstone", "minecraft:vertical_half": "bottom" } } @@ -194849,8 +194874,9 @@ "Name": "minecraft:sandstone_slab" }, "bedrock_state": { - "bedrock_identifier": "sandstone_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "sandstone", "minecraft:vertical_half": "bottom" } } @@ -194992,8 +195018,9 @@ "Name": "minecraft:petrified_oak_slab" }, "bedrock_state": { - "bedrock_identifier": "petrified_oak_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "wood", "minecraft:vertical_half": "top" } } @@ -195007,8 +195034,9 @@ "Name": "minecraft:petrified_oak_slab" }, "bedrock_state": { - "bedrock_identifier": "petrified_oak_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "wood", "minecraft:vertical_half": "top" } } @@ -195022,8 +195050,9 @@ "Name": "minecraft:petrified_oak_slab" }, "bedrock_state": { - "bedrock_identifier": "petrified_oak_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "wood", "minecraft:vertical_half": "bottom" } } @@ -195037,8 +195066,9 @@ "Name": "minecraft:petrified_oak_slab" }, "bedrock_state": { - "bedrock_identifier": "petrified_oak_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "wood", "minecraft:vertical_half": "bottom" } } @@ -195084,8 +195114,9 @@ "Name": "minecraft:cobblestone_slab" }, "bedrock_state": { - "bedrock_identifier": "cobblestone_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "cobblestone", "minecraft:vertical_half": "top" } } @@ -195099,8 +195130,9 @@ "Name": "minecraft:cobblestone_slab" }, "bedrock_state": { - "bedrock_identifier": "cobblestone_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "cobblestone", "minecraft:vertical_half": "top" } } @@ -195114,8 +195146,9 @@ "Name": "minecraft:cobblestone_slab" }, "bedrock_state": { - "bedrock_identifier": "cobblestone_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "cobblestone", "minecraft:vertical_half": "bottom" } } @@ -195129,8 +195162,9 @@ "Name": "minecraft:cobblestone_slab" }, "bedrock_state": { - "bedrock_identifier": "cobblestone_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "cobblestone", "minecraft:vertical_half": "bottom" } } @@ -195176,8 +195210,9 @@ "Name": "minecraft:brick_slab" }, "bedrock_state": { - "bedrock_identifier": "brick_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "brick", "minecraft:vertical_half": "top" } } @@ -195191,8 +195226,9 @@ "Name": "minecraft:brick_slab" }, "bedrock_state": { - "bedrock_identifier": "brick_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "brick", "minecraft:vertical_half": "top" } } @@ -195206,8 +195242,9 @@ "Name": "minecraft:brick_slab" }, "bedrock_state": { - "bedrock_identifier": "brick_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "brick", "minecraft:vertical_half": "bottom" } } @@ -195221,8 +195258,9 @@ "Name": "minecraft:brick_slab" }, "bedrock_state": { - "bedrock_identifier": "brick_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "brick", "minecraft:vertical_half": "bottom" } } @@ -195268,8 +195306,9 @@ "Name": "minecraft:stone_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_brick_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "stone_brick", "minecraft:vertical_half": "top" } } @@ -195283,8 +195322,9 @@ "Name": "minecraft:stone_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_brick_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "stone_brick", "minecraft:vertical_half": "top" } } @@ -195298,8 +195338,9 @@ "Name": "minecraft:stone_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_brick_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "stone_brick", "minecraft:vertical_half": "bottom" } } @@ -195313,8 +195354,9 @@ "Name": "minecraft:stone_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_brick_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "stone_brick", "minecraft:vertical_half": "bottom" } } @@ -195450,8 +195492,9 @@ "Name": "minecraft:nether_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "nether_brick_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "nether_brick", "minecraft:vertical_half": "top" } } @@ -195465,8 +195508,9 @@ "Name": "minecraft:nether_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "nether_brick_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "nether_brick", "minecraft:vertical_half": "top" } } @@ -195480,8 +195524,9 @@ "Name": "minecraft:nether_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "nether_brick_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "nether_brick", "minecraft:vertical_half": "bottom" } } @@ -195495,8 +195540,9 @@ "Name": "minecraft:nether_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "nether_brick_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "nether_brick", "minecraft:vertical_half": "bottom" } } @@ -195542,8 +195588,9 @@ "Name": "minecraft:quartz_slab" }, "bedrock_state": { - "bedrock_identifier": "quartz_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "quartz", "minecraft:vertical_half": "top" } } @@ -195557,8 +195604,9 @@ "Name": "minecraft:quartz_slab" }, "bedrock_state": { - "bedrock_identifier": "quartz_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "quartz", "minecraft:vertical_half": "top" } } @@ -195572,8 +195620,9 @@ "Name": "minecraft:quartz_slab" }, "bedrock_state": { - "bedrock_identifier": "quartz_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "quartz", "minecraft:vertical_half": "bottom" } } @@ -195587,8 +195636,9 @@ "Name": "minecraft:quartz_slab" }, "bedrock_state": { - "bedrock_identifier": "quartz_slab", + "bedrock_identifier": "stone_block_slab", "state": { + "stone_slab_type": "quartz", "minecraft:vertical_half": "bottom" } } @@ -222004,7 +222054,11 @@ "Name": "minecraft:dead_tube_coral_block" }, "bedrock_state": { - "bedrock_identifier": "dead_tube_coral_block" + "bedrock_identifier": "coral_block", + "state": { + "coral_color": "blue", + "dead_bit": true + } } }, { @@ -222012,7 +222066,11 @@ "Name": "minecraft:dead_brain_coral_block" }, "bedrock_state": { - "bedrock_identifier": "dead_brain_coral_block" + "bedrock_identifier": "coral_block", + "state": { + "coral_color": "pink", + "dead_bit": true + } } }, { @@ -222020,7 +222078,11 @@ "Name": "minecraft:dead_bubble_coral_block" }, "bedrock_state": { - "bedrock_identifier": "dead_bubble_coral_block" + "bedrock_identifier": "coral_block", + "state": { + "coral_color": "purple", + "dead_bit": true + } } }, { @@ -222028,7 +222090,11 @@ "Name": "minecraft:dead_fire_coral_block" }, "bedrock_state": { - "bedrock_identifier": "dead_fire_coral_block" + "bedrock_identifier": "coral_block", + "state": { + "coral_color": "red", + "dead_bit": true + } } }, { @@ -222036,7 +222102,11 @@ "Name": "minecraft:dead_horn_coral_block" }, "bedrock_state": { - "bedrock_identifier": "dead_horn_coral_block" + "bedrock_identifier": "coral_block", + "state": { + "coral_color": "yellow", + "dead_bit": true + } } }, { @@ -222044,7 +222114,11 @@ "Name": "minecraft:tube_coral_block" }, "bedrock_state": { - "bedrock_identifier": "tube_coral_block" + "bedrock_identifier": "coral_block", + "state": { + "coral_color": "blue", + "dead_bit": false + } } }, { @@ -222052,7 +222126,11 @@ "Name": "minecraft:brain_coral_block" }, "bedrock_state": { - "bedrock_identifier": "brain_coral_block" + "bedrock_identifier": "coral_block", + "state": { + "coral_color": "pink", + "dead_bit": false + } } }, { @@ -222060,7 +222138,11 @@ "Name": "minecraft:bubble_coral_block" }, "bedrock_state": { - "bedrock_identifier": "bubble_coral_block" + "bedrock_identifier": "coral_block", + "state": { + "coral_color": "purple", + "dead_bit": false + } } }, { @@ -222068,7 +222150,11 @@ "Name": "minecraft:fire_coral_block" }, "bedrock_state": { - "bedrock_identifier": "fire_coral_block" + "bedrock_identifier": "coral_block", + "state": { + "coral_color": "red", + "dead_bit": false + } } }, { @@ -222076,7 +222162,11 @@ "Name": "minecraft:horn_coral_block" }, "bedrock_state": { - "bedrock_identifier": "horn_coral_block" + "bedrock_identifier": "coral_block", + "state": { + "coral_color": "yellow", + "dead_bit": false + } } }, { @@ -511090,7 +511180,6 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { - "ominous": true, "trial_spawner_state": 0 } } @@ -511106,7 +511195,6 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { - "ominous": true, "trial_spawner_state": 1 } } @@ -511122,7 +511210,6 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { - "ominous": true, "trial_spawner_state": 2 } } @@ -511138,7 +511225,6 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { - "ominous": true, "trial_spawner_state": 3 } } @@ -511154,7 +511240,6 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { - "ominous": true, "trial_spawner_state": 4 } } @@ -511170,7 +511255,6 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { - "ominous": true, "trial_spawner_state": 5 } } @@ -511186,7 +511270,6 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { - "ominous": false, "trial_spawner_state": 0 } } @@ -511202,7 +511285,6 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { - "ominous": false, "trial_spawner_state": 1 } } @@ -511218,7 +511300,6 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { - "ominous": false, "trial_spawner_state": 2 } } @@ -511234,7 +511315,6 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { - "ominous": false, "trial_spawner_state": 3 } } @@ -511250,7 +511330,6 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { - "ominous": false, "trial_spawner_state": 4 } } @@ -511266,7 +511345,6 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { - "ominous": false, "trial_spawner_state": 5 } } @@ -511283,7 +511361,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "inactive", "minecraft:cardinal_direction": "north" } @@ -511301,7 +511378,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "active", "minecraft:cardinal_direction": "north" } @@ -511319,7 +511395,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "unlocking", "minecraft:cardinal_direction": "north" } @@ -511337,7 +511412,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "ejecting", "minecraft:cardinal_direction": "north" } @@ -511355,7 +511429,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "inactive", "minecraft:cardinal_direction": "north" } @@ -511373,7 +511446,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "active", "minecraft:cardinal_direction": "north" } @@ -511391,7 +511463,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "unlocking", "minecraft:cardinal_direction": "north" } @@ -511409,7 +511480,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "ejecting", "minecraft:cardinal_direction": "north" } @@ -511427,7 +511497,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "inactive", "minecraft:cardinal_direction": "south" } @@ -511445,7 +511514,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "active", "minecraft:cardinal_direction": "south" } @@ -511463,7 +511531,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "unlocking", "minecraft:cardinal_direction": "south" } @@ -511481,7 +511548,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "ejecting", "minecraft:cardinal_direction": "south" } @@ -511499,7 +511565,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "inactive", "minecraft:cardinal_direction": "south" } @@ -511517,7 +511582,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "active", "minecraft:cardinal_direction": "south" } @@ -511535,7 +511599,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "unlocking", "minecraft:cardinal_direction": "south" } @@ -511553,7 +511616,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "ejecting", "minecraft:cardinal_direction": "south" } @@ -511571,7 +511633,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "inactive", "minecraft:cardinal_direction": "west" } @@ -511589,7 +511650,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "active", "minecraft:cardinal_direction": "west" } @@ -511607,7 +511667,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "unlocking", "minecraft:cardinal_direction": "west" } @@ -511625,7 +511684,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "ejecting", "minecraft:cardinal_direction": "west" } @@ -511643,7 +511701,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "inactive", "minecraft:cardinal_direction": "west" } @@ -511661,7 +511718,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "active", "minecraft:cardinal_direction": "west" } @@ -511679,7 +511735,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "unlocking", "minecraft:cardinal_direction": "west" } @@ -511697,7 +511752,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "ejecting", "minecraft:cardinal_direction": "west" } @@ -511715,7 +511769,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "inactive", "minecraft:cardinal_direction": "east" } @@ -511733,7 +511786,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "active", "minecraft:cardinal_direction": "east" } @@ -511751,7 +511803,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "unlocking", "minecraft:cardinal_direction": "east" } @@ -511769,7 +511820,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": true, "vault_state": "ejecting", "minecraft:cardinal_direction": "east" } @@ -511787,7 +511837,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "inactive", "minecraft:cardinal_direction": "east" } @@ -511805,7 +511854,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "active", "minecraft:cardinal_direction": "east" } @@ -511823,7 +511871,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "unlocking", "minecraft:cardinal_direction": "east" } @@ -511841,7 +511888,6 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { - "ominous": false, "vault_state": "ejecting", "minecraft:cardinal_direction": "east" } From 62e589870d6a847f46c64ded264f04ff12d36351 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 16 Jun 2024 15:02:42 +0800 Subject: [PATCH 013/136] feat: more works --- .../java/org/allaymc/terra/allay/Mapping.java | 2 + .../allay/delegate/AllayEntityTypeHandle.java | 18 ------- .../terra/allay/delegate/AllayProtoWorld.java | 52 ++++++++++++++----- .../generator/AllayGeneratorWrapper.java | 2 +- .../terra/allay/handle/AllayWorldHandle.java | 4 +- 5 files changed, 44 insertions(+), 34 deletions(-) delete mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEntityTypeHandle.java diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java index 3e7090d51..05181dca5 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -11,6 +11,8 @@ import org.allaymc.api.block.property.type.BlockPropertyType.BlockPropertyValue; import org.allaymc.api.block.registry.BlockTypeRegistry; import org.allaymc.api.block.type.BlockState; import org.allaymc.api.block.type.BlockTypes; +import org.allaymc.api.entity.registry.EntityTypeRegistry; +import org.allaymc.api.entity.type.EntityType; import org.allaymc.api.utils.Identifier; import org.allaymc.api.utils.JSONUtils; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEntityTypeHandle.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEntityTypeHandle.java deleted file mode 100644 index f6a24ead6..000000000 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEntityTypeHandle.java +++ /dev/null @@ -1,18 +0,0 @@ -package org.allaymc.terra.allay.delegate; - -import com.dfsek.terra.api.entity.EntityType; - - -/** - * Terra Project 2024/6/16 - * - * 我们暂时不支持实体,因为端本身都没实体ai,生成实体没有意义 - * - * @author daoge_cmd - */ -public record AllayEntityTypeHandle(String id) implements EntityType { - @Override - public String getHandle() { - return id; - } -} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java index 8df369733..85420669f 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java @@ -10,22 +10,37 @@ import com.dfsek.terra.api.world.biome.generation.BiomeProvider; import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; import com.dfsek.terra.api.world.chunk.generation.ProtoWorld; +import org.allaymc.api.world.chunk.UnsafeChunk; +import org.allaymc.terra.allay.Mapping; + /** * Terra Project 2024/6/16 * * @author daoge_cmd */ -public record AllayProtoWorld(ServerWorld serverWorld, int centerChunkX, int centerChunkZ) implements ProtoWorld { +public record AllayProtoWorld(AllayServerWorld allayServerWorld, UnsafeChunk centerChunk) implements ProtoWorld { + + @Override + public int centerChunkX() { + return centerChunk.getX(); + } + + @Override + public int centerChunkZ() { + return centerChunk.getZ(); + } @Override public ServerWorld getWorld() { - return serverWorld; + return allayServerWorld; } @Override public void setBlockState(int x, int y, int z, BlockState data, boolean physics) { - serverWorld.setBlockState(x, y, z, data, physics); + if(isInRegin(x, y, z)) { + centerChunk.setBlockState(x & 15, y, z & 15, ((AllayBlockState)data).allayBlockState()); + } } @Override @@ -36,7 +51,11 @@ public record AllayProtoWorld(ServerWorld serverWorld, int centerChunkX, int cen @Override public BlockState getBlockState(int x, int y, int z) { - return serverWorld.getBlockState(x, y, z); + if(isInRegin(x, y, z)) { + var blockState = centerChunk.getBlockState(x & 15, y, z & 15); + return new AllayBlockState(blockState, Mapping.blockStateBeToJe(blockState)); + } + return AllayBlockState.AIR; } @Override @@ -47,36 +66,43 @@ public record AllayProtoWorld(ServerWorld serverWorld, int centerChunkX, int cen @Override public ChunkGenerator getGenerator() { - return serverWorld.getGenerator(); + return allayServerWorld.getGenerator(); } @Override public BiomeProvider getBiomeProvider() { - return serverWorld.getBiomeProvider(); + return allayServerWorld.getBiomeProvider(); } @Override public ConfigPack getPack() { - return serverWorld.getPack(); + return allayServerWorld.getPack(); } @Override public long getSeed() { - return serverWorld.getSeed(); + return allayServerWorld.getSeed(); } @Override public int getMaxHeight() { - return serverWorld.getMaxHeight(); + return allayServerWorld.getMaxHeight(); } @Override public int getMinHeight() { - return serverWorld.getMinHeight(); + return allayServerWorld.getMinHeight(); } @Override - public ServerWorld getHandle() { - return serverWorld; + public AllayServerWorld getHandle() { + return allayServerWorld; } -} + + private boolean isInRegin(int x, int y, int z) { + return + x >= centerChunkX() && x < centerChunkX() + 16 && + z >= centerChunkZ() && z < centerChunkZ() + 16 && + y >= getMinHeight() && y <= getMaxHeight(); + } +} \ No newline at end of file diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java index cd66efdfa..5fd7ed19c 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java @@ -74,7 +74,7 @@ public class AllayGeneratorWrapper extends WorldGenerator implements GeneratorWr } } } - var tmp = new AllayProtoWorld(new AllayServerWorld(this, dimension), chunkX, chunkZ); + var tmp = new AllayProtoWorld(new AllayServerWorld(this, dimension), chunk); try { for (var generationStage : configPack.getStages()) { generationStage.populate(tmp); diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java index 37ff884b7..06e163abd 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java @@ -7,7 +7,6 @@ import com.dfsek.terra.api.handle.WorldHandle; import org.allaymc.terra.allay.JeBlockState; import org.allaymc.terra.allay.Mapping; import org.allaymc.terra.allay.delegate.AllayBlockState; -import org.allaymc.terra.allay.delegate.AllayEntityTypeHandle; import org.jetbrains.annotations.NotNull; @@ -31,6 +30,7 @@ public class AllayWorldHandle implements WorldHandle { @Override public @NotNull EntityType getEntity(@NotNull String id) { - return new AllayEntityTypeHandle(id); + // TODO: 我们暂时不支持实体,因为端本身都没实体ai,生成实体没有意义 + return null; } } From 3d4aec4abbf88adfbd535958ea3fa91497eb724d Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 16 Jun 2024 15:03:19 +0800 Subject: [PATCH 014/136] chores: improve imports --- .../java/org/allaymc/terra/allay/AllayPlatform.java | 11 ++++++----- .../main/java/org/allaymc/terra/allay/Mapping.java | 4 ---- .../org/allaymc/terra/allay/TerraAllayPlugin.java | 4 ++-- .../allaymc/terra/allay/delegate/AllayBiome.java | 3 ++- .../terra/allay/delegate/AllayBlockState.java | 6 +++--- .../terra/allay/delegate/AllayBlockType.java | 4 ++-- .../allaymc/terra/allay/delegate/AllayChunk.java | 6 +++--- .../terra/allay/delegate/AllayEnchantment.java | 6 +++--- .../allaymc/terra/allay/delegate/AllayItemMeta.java | 6 +++--- .../terra/allay/delegate/AllayItemStack.java | 4 ++-- .../allaymc/terra/allay/delegate/AllayItemType.java | 4 ++-- .../terra/allay/delegate/AllayProtoChunk.java | 7 +++---- .../terra/allay/delegate/AllayProtoWorld.java | 6 +++--- .../terra/allay/delegate/AllayServerWorld.java | 8 ++++---- .../allay/generator/AllayGeneratorWrapper.java | 13 ++++++------- .../allaymc/terra/allay/handle/AllayItemHandle.java | 9 ++++----- .../terra/allay/handle/AllayWorldHandle.java | 8 ++++---- 17 files changed, 52 insertions(+), 57 deletions(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java index 513b10cd6..4cad7a112 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java @@ -3,11 +3,6 @@ package org.allaymc.terra.allay; import com.dfsek.tectonic.api.TypeRegistry; import com.dfsek.tectonic.api.depth.DepthTracker; import com.dfsek.tectonic.api.exception.LoadException; -import com.dfsek.terra.AbstractPlatform; -import com.dfsek.terra.api.block.state.BlockState; -import com.dfsek.terra.api.handle.ItemHandle; -import com.dfsek.terra.api.handle.WorldHandle; -import com.dfsek.terra.api.world.biome.PlatformBiome; import org.allaymc.api.data.VanillaBiomeId; import org.allaymc.api.server.Server; import org.allaymc.terra.allay.delegate.AllayBiome; @@ -17,6 +12,12 @@ import org.jetbrains.annotations.NotNull; import java.io.File; +import com.dfsek.terra.AbstractPlatform; +import com.dfsek.terra.api.block.state.BlockState; +import com.dfsek.terra.api.handle.ItemHandle; +import com.dfsek.terra.api.handle.WorldHandle; +import com.dfsek.terra.api.world.biome.PlatformBiome; + /** * Terra Project 2024/6/15 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java index 05181dca5..592c0affc 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -1,7 +1,5 @@ package org.allaymc.terra.allay; -import com.dfsek.terra.api.block.state.properties.Property; - import com.google.gson.reflect.TypeToken; import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap; @@ -11,8 +9,6 @@ import org.allaymc.api.block.property.type.BlockPropertyType.BlockPropertyValue; import org.allaymc.api.block.registry.BlockTypeRegistry; import org.allaymc.api.block.type.BlockState; import org.allaymc.api.block.type.BlockTypes; -import org.allaymc.api.entity.registry.EntityTypeRegistry; -import org.allaymc.api.entity.type.EntityType; import org.allaymc.api.utils.Identifier; import org.allaymc.api.utils.JSONUtils; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java index 0e10dd492..359c2dfe9 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java @@ -1,12 +1,12 @@ package org.allaymc.terra.allay; -import com.dfsek.terra.api.event.events.platform.PlatformInitializationEvent; - import lombok.extern.slf4j.Slf4j; import org.allaymc.api.plugin.Plugin; import org.allaymc.api.world.generator.WorldGeneratorFactory; import org.allaymc.terra.allay.generator.AllayGeneratorWrapper; +import com.dfsek.terra.api.event.events.platform.PlatformInitializationEvent; + /** * Terra Project 2024/6/15 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java index 8fd05108b..71673618a 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java @@ -1,8 +1,9 @@ package org.allaymc.terra.allay.delegate; -import com.dfsek.terra.api.world.biome.PlatformBiome; import org.allaymc.api.world.biome.BiomeType; +import com.dfsek.terra.api.world.biome.PlatformBiome; + /** * Terra Project 2024/6/16 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java index df446445f..79791d554 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java @@ -1,12 +1,12 @@ package org.allaymc.terra.allay.delegate; -import com.dfsek.terra.api.block.BlockType; -import com.dfsek.terra.api.block.state.properties.Property; - import org.allaymc.api.block.type.BlockState; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.terra.allay.JeBlockState; +import com.dfsek.terra.api.block.BlockType; +import com.dfsek.terra.api.block.state.properties.Property; + /** * Terra Project 2024/6/16 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java index fc47b8803..1cbf4d284 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java @@ -1,11 +1,11 @@ package org.allaymc.terra.allay.delegate; -import com.dfsek.terra.api.block.state.BlockState; - import org.allaymc.api.block.type.BlockType; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.terra.allay.Mapping; +import com.dfsek.terra.api.block.state.BlockState; + /** * Terra Project 2024/6/16 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java index 60a337fee..b5cf27910 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java @@ -1,12 +1,12 @@ package org.allaymc.terra.allay.delegate; -import com.dfsek.terra.api.block.state.BlockState; -import com.dfsek.terra.api.world.ServerWorld; - import org.allaymc.api.world.chunk.Chunk; import org.allaymc.terra.allay.Mapping; import org.jetbrains.annotations.NotNull; +import com.dfsek.terra.api.block.state.BlockState; +import com.dfsek.terra.api.world.ServerWorld; + /** * Terra Project 2024/6/16 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java index f74d8c2f9..ef8e0b400 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java @@ -1,11 +1,11 @@ package org.allaymc.terra.allay.delegate; -import com.dfsek.terra.api.inventory.ItemStack; -import com.dfsek.terra.api.inventory.item.Enchantment; - import org.allaymc.api.item.enchantment.EnchantmentType; import org.allaymc.terra.allay.Mapping; +import com.dfsek.terra.api.inventory.ItemStack; +import com.dfsek.terra.api.inventory.item.Enchantment; + /** * Terra Project 2024/6/16 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java index 27b04090c..07620bd60 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java @@ -1,13 +1,13 @@ package org.allaymc.terra.allay.delegate; -import com.dfsek.terra.api.inventory.item.Enchantment; -import com.dfsek.terra.api.inventory.item.ItemMeta; - import org.allaymc.api.item.ItemStack; import java.util.HashMap; import java.util.Map; +import com.dfsek.terra.api.inventory.item.Enchantment; +import com.dfsek.terra.api.inventory.item.ItemMeta; + /** * Terra Project 2024/6/16 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java index dfa7aeba4..9eb4484be 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java @@ -1,10 +1,10 @@ package org.allaymc.terra.allay.delegate; +import org.allaymc.api.item.ItemStack; + import com.dfsek.terra.api.inventory.Item; import com.dfsek.terra.api.inventory.item.ItemMeta; -import org.allaymc.api.item.ItemStack; - /** * Terra Project 2024/6/16 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java index 0fb41a0e0..d5735e430 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java @@ -1,9 +1,9 @@ package org.allaymc.terra.allay.delegate; -import com.dfsek.terra.api.inventory.Item; - import org.allaymc.api.item.type.ItemType; +import com.dfsek.terra.api.inventory.Item; + /** * Terra Project 2024/6/16 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java index 1c3fbc4e4..7cc24b963 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java @@ -1,13 +1,12 @@ package org.allaymc.terra.allay.delegate; -import com.dfsek.terra.api.block.state.BlockState; -import com.dfsek.terra.api.world.chunk.generation.ProtoChunk; - -import org.allaymc.api.world.chunk.Chunk; import org.allaymc.api.world.chunk.UnsafeChunk; import org.allaymc.terra.allay.Mapping; import org.jetbrains.annotations.NotNull; +import com.dfsek.terra.api.block.state.BlockState; +import com.dfsek.terra.api.world.chunk.generation.ProtoChunk; + /** * Terra Project 2024/6/16 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java index 85420669f..9df965a8a 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java @@ -1,5 +1,8 @@ package org.allaymc.terra.allay.delegate; +import org.allaymc.api.world.chunk.UnsafeChunk; +import org.allaymc.terra.allay.Mapping; + import com.dfsek.terra.api.block.entity.BlockEntity; import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.config.ConfigPack; @@ -10,9 +13,6 @@ import com.dfsek.terra.api.world.biome.generation.BiomeProvider; import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; import com.dfsek.terra.api.world.chunk.generation.ProtoWorld; -import org.allaymc.api.world.chunk.UnsafeChunk; -import org.allaymc.terra.allay.Mapping; - /** * Terra Project 2024/6/16 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java index 489c98ef3..941b8ddc5 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java @@ -1,5 +1,9 @@ package org.allaymc.terra.allay.delegate; +import org.allaymc.api.world.Dimension; +import org.allaymc.terra.allay.Mapping; +import org.allaymc.terra.allay.generator.AllayGeneratorWrapper; + import com.dfsek.terra.api.block.entity.BlockEntity; import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.config.ConfigPack; @@ -10,10 +14,6 @@ import com.dfsek.terra.api.world.biome.generation.BiomeProvider; import com.dfsek.terra.api.world.chunk.Chunk; import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; -import org.allaymc.api.world.Dimension; -import org.allaymc.terra.allay.Mapping; -import org.allaymc.terra.allay.generator.AllayGeneratorWrapper; - /** * Terra Project 2024/6/16 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java index 5fd7ed19c..e0c5fb7e4 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java @@ -1,12 +1,5 @@ package org.allaymc.terra.allay.generator; -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.api.world.biome.generation.BiomeProvider; -import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; -import com.dfsek.terra.api.world.chunk.generation.util.GeneratorWrapper; - -import com.dfsek.terra.api.world.info.WorldProperties; - import lombok.Getter; import lombok.extern.slf4j.Slf4j; import org.allaymc.api.world.Dimension; @@ -21,6 +14,12 @@ import org.allaymc.terra.allay.delegate.AllayServerWorld; import java.util.Locale; +import com.dfsek.terra.api.config.ConfigPack; +import com.dfsek.terra.api.world.biome.generation.BiomeProvider; +import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; +import com.dfsek.terra.api.world.chunk.generation.util.GeneratorWrapper; +import com.dfsek.terra.api.world.info.WorldProperties; + /** * Terra Project 2024/6/16 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java index fe0819de3..f0ceb0c3b 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java @@ -1,11 +1,6 @@ package org.allaymc.terra.allay.handle; -import com.dfsek.terra.api.handle.ItemHandle; -import com.dfsek.terra.api.inventory.Item; -import com.dfsek.terra.api.inventory.item.Enchantment; - import org.allaymc.api.item.enchantment.EnchantmentRegistry; -import org.allaymc.api.item.enchantment.type.EnchantmentLuckOfTheSeaType; import org.allaymc.api.item.registry.ItemTypeRegistry; import org.allaymc.api.utils.Identifier; import org.allaymc.terra.allay.Mapping; @@ -15,6 +10,10 @@ import org.allaymc.terra.allay.delegate.AllayItemType; import java.util.Set; import java.util.stream.Collectors; +import com.dfsek.terra.api.handle.ItemHandle; +import com.dfsek.terra.api.inventory.Item; +import com.dfsek.terra.api.inventory.item.Enchantment; + /** * Terra Project 2024/6/16 diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java index 06e163abd..ed9137dd8 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java @@ -1,14 +1,14 @@ package org.allaymc.terra.allay.handle; -import com.dfsek.terra.api.block.state.BlockState; -import com.dfsek.terra.api.entity.EntityType; -import com.dfsek.terra.api.handle.WorldHandle; - import org.allaymc.terra.allay.JeBlockState; import org.allaymc.terra.allay.Mapping; import org.allaymc.terra.allay.delegate.AllayBlockState; import org.jetbrains.annotations.NotNull; +import com.dfsek.terra.api.block.state.BlockState; +import com.dfsek.terra.api.entity.EntityType; +import com.dfsek.terra.api.handle.WorldHandle; + /** * Terra Project 2024/6/16 From d861d3e8499d3f69b1b297079e210d87f0bbecb2 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 16 Jun 2024 15:48:18 +0800 Subject: [PATCH 015/136] feat: more works --- .../org/allaymc/terra/allay/JeBlockState.java | 12 +++ .../java/org/allaymc/terra/allay/Mapping.java | 95 ++++++++++++++----- .../terra/allay/delegate/AllayProtoWorld.java | 4 +- 3 files changed, 84 insertions(+), 27 deletions(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java index 7d959b860..3db3e051b 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java @@ -34,6 +34,18 @@ public class JeBlockState { properties.put(tmp.substring(0, index), tmp.substring(index + 1)); } } + completeMissingProperties(); + } + + private void completeMissingProperties() { + var defaultProperties = Mapping.getJeBlockDefaultProperties(identifier); + if(properties.size() == defaultProperties.size()) { + return; + } + for (var entry : defaultProperties.entrySet()) { + if (properties.containsKey(entry.getKey())) continue; + properties.put(entry.getKey(), entry.getValue()); + } } private JeBlockState(String identifier, TreeMap properties) { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java index 592c0affc..d6e010b66 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -26,16 +26,62 @@ import java.util.TreeMap; @Slf4j public final class Mapping { + private static final Map> JE_BLOCK_DEFAULT_PROPERTIES = new Object2ObjectOpenHashMap<>(); private static final Map BLOCK_STATE_BE_TO_JE = new Object2ObjectOpenHashMap<>(); private static final Map BLOCK_STATE_JE_HASH_TO_BE = new Int2ObjectOpenHashMap<>(); private static final Map ITEM_ID_JE_TO_BE = new Object2ObjectOpenHashMap<>(); private static final Map BIOME_ID_JE_TO_BE = new Object2IntOpenHashMap<>(); + private static final BlockState BE_AIR_STATE = BlockTypes.AIR_TYPE.getDefaultState(); public static void init() { + if(!initBlockStateMapping()) error(); + if (!initJeBlockDefaultProperties()) error(); + if(!initItemMapping()) error(); + if(!initBiomeMapping()) error(); + } + + private static void error() { + throw new RuntimeException("Mapping not initialized"); + } + + private static boolean initBiomeMapping() { + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/biomes.json")) { + if (stream == null) { + log.error("biomes.json not found"); + return false; + } + var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); + for(var mapping : mappings) { + BIOME_ID_JE_TO_BE.put(mapping.getKey(), mapping.getValue().get("bedrock_id")); + } + } catch(IOException e) { + log.error("Failed to load mapping", e); + return false; + } + return true; + } + + private static boolean initItemMapping() { + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/items.json")) { + if (stream == null) { + log.error("items.json not found"); + return false; + } + var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); + for(var mapping : mappings) { + ITEM_ID_JE_TO_BE.put(mapping.getKey(), (String) mapping.getValue().get("bedrock_identifier")); + } + } catch(IOException e) { + log.error("Failed to load mapping", e); + } + return true; + } + + private static boolean initBlockStateMapping() { try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/blocks.json")) { if (stream == null) { log.error("blocks.json not found"); - return; + return false; } var mappings = (List>>) JSONUtils.from(stream, new TypeToken>(){}).get("mappings"); for(var mapping : mappings) { @@ -47,30 +93,20 @@ public final class Mapping { } catch(IOException e) { log.error("Failed to load mapping", e); } - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/items.json")) { - if (stream == null) { - log.error("items.json not found"); - return; + return true; + } + + private static boolean initJeBlockDefaultProperties() { + for (var beBlockType : BlockTypeRegistry.getRegistry().getContent().values()) { + var defaultBeBlockState = beBlockType.getDefaultState(); + var defaultJeBlockState = blockStateBeToJe(defaultBeBlockState); + if (defaultJeBlockState == null) { + log.warn("Failed to find JE block state for {}", defaultBeBlockState); + continue; } - var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); - for(var mapping : mappings) { - ITEM_ID_JE_TO_BE.put(mapping.getKey(), (String) mapping.getValue().get("bedrock_identifier")); - } - } catch(IOException e) { - log.error("Failed to load mapping", e); - } - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/biomes.json")) { - if (stream == null) { - log.error("biomes.json not found"); - return; - } - var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); - for(var mapping : mappings) { - BIOME_ID_JE_TO_BE.put(mapping.getKey(), mapping.getValue().get("bedrock_id")); - } - } catch(IOException e) { - log.error("Failed to load mapping", e); + JE_BLOCK_DEFAULT_PROPERTIES.put(defaultJeBlockState.identifier, defaultJeBlockState.properties); } + return true; } private static BlockState createBeBlockState(Map data) { @@ -88,13 +124,13 @@ public final class Mapping { var propertyType = blockType.getProperties().get(propertyName); if (propertyType == null) { log.warn("Unknown property type: {}", propertyName); - return null; + return BlockTypes.AIR_TYPE.getDefaultState(); } try { propertyValues[index] = propertyType.tryCreateValue(entry.getValue()); } catch (IllegalArgumentException e) { log.warn("Failed to create property value for {}: {}", propertyName, entry.getValue()); - return null; + return BE_AIR_STATE; } } return blockType.ofState(propertyValues); @@ -136,4 +172,13 @@ public final class Mapping { public static int biomeIdJeToBe(String jeBiomeId) { return BIOME_ID_JE_TO_BE.get(jeBiomeId); } + + public static Map getJeBlockDefaultProperties(String jeBlockIdentifier) { + var defaultProperties = JE_BLOCK_DEFAULT_PROPERTIES.get(jeBlockIdentifier); + if( defaultProperties == null) { + log.warn("Failed to find default properties for {}", jeBlockIdentifier); + return Map.of(); + } + return defaultProperties; + } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java index 9df965a8a..bfb6eef33 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java @@ -101,8 +101,8 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, UnsafeChunk cen private boolean isInRegin(int x, int y, int z) { return - x >= centerChunkX() && x < centerChunkX() + 16 && - z >= centerChunkZ() && z < centerChunkZ() + 16 && + x >= centerChunkX() * 16 && x < centerChunkX() * 16 + 16 && + z >= centerChunkZ() * 16 && z < centerChunkZ() * 16 + 16 && y >= getMinHeight() && y <= getMaxHeight(); } } \ No newline at end of file From 1f937a2ae0c7aa5af2779a6e116464baf34601cb Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 16 Jun 2024 15:55:28 +0800 Subject: [PATCH 016/136] feat: fake entity --- .../terra/allay/delegate/AllayFakeEntity.java | 48 +++++++++++++++++++ .../terra/allay/delegate/AllayProtoWorld.java | 5 +- .../allay/delegate/AllayServerWorld.java | 5 +- 3 files changed, 54 insertions(+), 4 deletions(-) create mode 100644 platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java new file mode 100644 index 000000000..6a4c24643 --- /dev/null +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java @@ -0,0 +1,48 @@ +package org.allaymc.terra.allay.delegate; + +import com.dfsek.terra.api.entity.Entity; +import com.dfsek.terra.api.util.vector.Vector3; +import com.dfsek.terra.api.world.ServerWorld; + + +/** + * Terra Project 2024/6/16 + * + * @author daoge_cmd + */ +public final class AllayFakeEntity implements Entity { + + private final Object fakeHandle = new Object(); + private Vector3 position; + private ServerWorld world; + + public AllayFakeEntity(Vector3 position, ServerWorld world) { + this.position = position; + this.world = world; + } + + @Override + public Vector3 position() { + return position; + } + + @Override + public void position(Vector3 position) { + this.position = position; + } + + @Override + public void world(ServerWorld world) { + this.world = world; + } + + @Override + public ServerWorld world() { + return world; + } + + @Override + public Object getHandle() { + return null; + } +} diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java index bfb6eef33..ff63b33f4 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java @@ -1,5 +1,7 @@ package org.allaymc.terra.allay.delegate; +import com.dfsek.terra.api.util.vector.Vector3; + import org.allaymc.api.world.chunk.UnsafeChunk; import org.allaymc.terra.allay.Mapping; @@ -45,8 +47,7 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, UnsafeChunk cen @Override public Entity spawnEntity(double x, double y, double z, EntityType entityType) { - // TODO - return null; + return new AllayFakeEntity(Vector3.of(x, y, z), allayServerWorld); } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java index 941b8ddc5..ca9425454 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java @@ -1,5 +1,7 @@ package org.allaymc.terra.allay.delegate; +import com.dfsek.terra.api.util.vector.Vector3; + import org.allaymc.api.world.Dimension; import org.allaymc.terra.allay.Mapping; import org.allaymc.terra.allay.generator.AllayGeneratorWrapper; @@ -34,8 +36,7 @@ public record AllayServerWorld(AllayGeneratorWrapper allayGeneratorWrapper, Dime @Override public Entity spawnEntity(double x, double y, double z, EntityType entityType) { - // TODO - return null; + return new AllayFakeEntity(Vector3.of(x, y, z), this); } @Override From 133df45968c86d00b133afb802fe3f86682595db Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 17 Jun 2024 00:37:16 +0800 Subject: [PATCH 017/136] feat: make it works! --- .../allaymc/terra/allay/TerraAllayPlugin.java | 2 +- .../terra/allay/delegate/AllayProtoWorld.java | 24 ++- .../generator/AllayGeneratorWrapper.java | 153 ++++++++++-------- .../terra/allay/handle/AllayWorldHandle.java | 8 +- 4 files changed, 114 insertions(+), 73 deletions(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java index 359c2dfe9..bc65c3d6e 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java @@ -36,7 +36,7 @@ public class TerraAllayPlugin extends Plugin { PLATFORM.getEventManager().callEvent(new PlatformInitializationEvent()); log.info("Registering generator..."); - WorldGeneratorFactory.getFactory().register("TERRA", AllayGeneratorWrapper::new); + WorldGeneratorFactory.getFactory().register("TERRA", preset -> new AllayGeneratorWrapper(preset).getAllayWorldGenerator()); log.info("Terra started"); } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java index ff63b33f4..a0e93b972 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java @@ -2,6 +2,7 @@ package org.allaymc.terra.allay.delegate; import com.dfsek.terra.api.util.vector.Vector3; +import org.allaymc.api.world.chunk.ChunkAccessible; import org.allaymc.api.world.chunk.UnsafeChunk; import org.allaymc.terra.allay.Mapping; @@ -15,13 +16,12 @@ import com.dfsek.terra.api.world.biome.generation.BiomeProvider; import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; import com.dfsek.terra.api.world.chunk.generation.ProtoWorld; - /** * Terra Project 2024/6/16 * * @author daoge_cmd */ -public record AllayProtoWorld(AllayServerWorld allayServerWorld, UnsafeChunk centerChunk) implements ProtoWorld { +public record AllayProtoWorld(AllayServerWorld allayServerWorld, UnsafeChunk centerChunk, ChunkAccessible chunkAccessor) implements ProtoWorld { @Override public int centerChunkX() { @@ -40,11 +40,18 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, UnsafeChunk cen @Override public void setBlockState(int x, int y, int z, BlockState data, boolean physics) { - if(isInRegin(x, y, z)) { + if(isInCurrentChunk(x, y, z)) { centerChunk.setBlockState(x & 15, y, z & 15, ((AllayBlockState)data).allayBlockState()); + } else { + setBlockStateInOtherChunk(x, y, z, data, physics); } } + private void setBlockStateInOtherChunk(int x, int y, int z, BlockState data, boolean physics) { + var chunk = chunkAccessor.getChunk(x >> 4, z >> 4); + chunk.setBlockState(x & 15, y, z & 15, ((AllayBlockState)data).allayBlockState()); + } + @Override public Entity spawnEntity(double x, double y, double z, EntityType entityType) { return new AllayFakeEntity(Vector3.of(x, y, z), allayServerWorld); @@ -52,11 +59,16 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, UnsafeChunk cen @Override public BlockState getBlockState(int x, int y, int z) { - if(isInRegin(x, y, z)) { + if(isInCurrentChunk(x, y, z)) { var blockState = centerChunk.getBlockState(x & 15, y, z & 15); return new AllayBlockState(blockState, Mapping.blockStateBeToJe(blockState)); } - return AllayBlockState.AIR; + return getBlockStateInOtherChunk(x, y, z); + } + + private BlockState getBlockStateInOtherChunk(int x, int y, int z) { + var chunk = chunkAccessor.getChunk(x >> 4, z >> 4); + return new AllayBlockState(chunk.getBlockState(x & 15, y, z & 15), Mapping.blockStateBeToJe(chunk.getBlockState(x & 15, y, z & 15))); } @Override @@ -100,7 +112,7 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, UnsafeChunk cen return allayServerWorld; } - private boolean isInRegin(int x, int y, int z) { + private boolean isInCurrentChunk(int x, int y, int z) { return x >= centerChunkX() * 16 && x < centerChunkX() * 16 + 16 && z >= centerChunkZ() * 16 && z < centerChunkZ() * 16 + 16 && diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java index e0c5fb7e4..56d273f50 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java @@ -2,11 +2,14 @@ package org.allaymc.terra.allay.generator; import lombok.Getter; import lombok.extern.slf4j.Slf4j; -import org.allaymc.api.world.Dimension; +import org.allaymc.api.utils.AllayStringUtils; import org.allaymc.api.world.biome.BiomeType; -import org.allaymc.api.world.generator.ChunkGenerateContext; import org.allaymc.api.world.generator.WorldGenerator; import org.allaymc.api.world.generator.WorldGeneratorType; +import org.allaymc.api.world.generator.context.NoiseContext; +import org.allaymc.api.world.generator.context.PopulateContext; +import org.allaymc.api.world.generator.function.Noiser; +import org.allaymc.api.world.generator.function.Populator; import org.allaymc.terra.allay.TerraAllayPlugin; import org.allaymc.terra.allay.delegate.AllayProtoChunk; import org.allaymc.terra.allay.delegate.AllayProtoWorld; @@ -27,7 +30,7 @@ import com.dfsek.terra.api.world.info.WorldProperties; * @author daoge_cmd */ @Slf4j -public class AllayGeneratorWrapper extends WorldGenerator implements GeneratorWrapper { +public class AllayGeneratorWrapper implements GeneratorWrapper { protected static final String DEFAULT_PACK_NAME = "overworld"; protected static final String OPTION_PACK_NAME = "pack"; protected static final String OPTION_SEED = "pack"; @@ -37,77 +40,107 @@ public class AllayGeneratorWrapper extends WorldGenerator implements GeneratorWr @Getter protected final ConfigPack configPack; protected final ChunkGenerator chunkGenerator; - protected WorldProperties worldProperties; @Getter - protected long seed; + protected final long seed; + @Getter + protected final WorldGenerator allayWorldGenerator; + protected WorldProperties worldProperties; + protected AllayServerWorld allayServerWorld; public AllayGeneratorWrapper(String preset) { - super(preset); - var options = parseOptions(preset); + var options = AllayStringUtils.parseOptions(preset); var packName = options.getOrDefault(OPTION_PACK_NAME, DEFAULT_PACK_NAME); this.seed = Long.parseLong(options.getOrDefault(OPTION_SEED, "0")); this.configPack = createConfigPack(packName); this.chunkGenerator = createGenerator(this.configPack); this.biomeProvider = this.configPack.getBiomeProvider(); + this.allayWorldGenerator = WorldGenerator + .builder() + .name("TERRA") + .preset("")// preset已经在构造函数读取完了,这边不需要传preset + .noisers(new AllayNoiser()) + .populators(new AllayPopulator()) + .onDimensionSet(dimension -> { + this.allayServerWorld = new AllayServerWorld(this, dimension); + this.worldProperties = new WorldProperties() { + @Override + public long getSeed() { + return seed; + } + + @Override + public int getMaxHeight() { + return dimension.getDimensionInfo().maxHeight(); + } + + @Override + public int getMinHeight() { + return dimension.getDimensionInfo().minHeight(); + } + + @Override + public Object getHandle() { + // 这里留null就行,没啥用 + return null; + } + }; + }) + .build(); } - @Override - public void generate(ChunkGenerateContext context) { - var chunk = context.chunk(); - var chunkX = chunk.getX(); - var chunkZ = chunk.getZ(); - chunkGenerator.generateChunkData( - new AllayProtoChunk(chunk), - worldProperties, biomeProvider, - chunkX, chunkZ - ); - var minHeight = dimension.getDimensionInfo().minHeight(); - var maxHeight = dimension.getDimensionInfo().maxHeight(); - for (int x = 0; x < 16; x++) { - for (int y = minHeight; y < maxHeight; y++) { - for (int z = 0; z < 16; z++) { - chunk.setBiome( - x, y, z, - (BiomeType) biomeProvider.getBiome(chunkX * 16 + x, y, chunkZ * 16 + z, seed).getPlatformBiome().getHandle() - ); + public class AllayNoiser implements Noiser { + + @Override + public Boolean apply(NoiseContext context) { + var chunk = context.getCurrentChunk(); + var chunkX = chunk.getX(); + var chunkZ = chunk.getZ(); + chunkGenerator.generateChunkData( + new AllayProtoChunk(chunk), + worldProperties, biomeProvider, + chunkX, chunkZ + ); + var minHeight = context.getDimensionInfo().minHeight(); + var maxHeight = context.getDimensionInfo().maxHeight(); + for (int x = 0; x < 16; x++) { + for (int y = minHeight; y < maxHeight; y++) { + for (int z = 0; z < 16; z++) { + chunk.setBiome( + x, y, z, + (BiomeType) biomeProvider.getBiome(chunkX * 16 + x, y, chunkZ * 16 + z, seed).getPlatformBiome().getHandle() + ); + } } } + return true; } - var tmp = new AllayProtoWorld(new AllayServerWorld(this, dimension), chunk); - try { - for (var generationStage : configPack.getStages()) { - generationStage.populate(tmp); - } - } catch (Exception e) { - log.error("Error while populating chunk", e); + + @Override + public String getName() { + return "TERRA_NOISER"; } } - @Override - public void setDimension(Dimension dimension) { - super.setDimension(dimension); - this.worldProperties = new WorldProperties() { - @Override - public long getSeed() { - return seed; - } + public class AllayPopulator implements Populator { - @Override - public int getMaxHeight() { - return dimension.getDimensionInfo().maxHeight(); + @Override + public Boolean apply(PopulateContext context) { + var chunk = context.getCurrentChunk(); + var tmp = new AllayProtoWorld(allayServerWorld, chunk, context.getChunkAccessor()); + try { + for (var generationStage : configPack.getStages()) { + generationStage.populate(tmp); + } + } catch (Exception e) { + log.error("Error while populating chunk", e); } + return true; + } - @Override - public int getMinHeight() { - return dimension.getDimensionInfo().minHeight(); - } - - @Override - public Object getHandle() { - // 这里留null就行,没啥用 - return null; - } - }; + @Override + public String getName() { + return "TERRA_POPULATOR"; + } } protected static ConfigPack createConfigPack(String packName) { @@ -126,14 +159,4 @@ public class AllayGeneratorWrapper extends WorldGenerator implements GeneratorWr public ChunkGenerator getHandle() { return chunkGenerator; } - - @Override - public String getGeneratorName() { - return "TERRA"; - } - - @Override - public WorldGeneratorType getType() { - return WorldGeneratorType.INFINITE; - } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java index ed9137dd8..6f070e0c1 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java @@ -31,6 +31,12 @@ public class AllayWorldHandle implements WorldHandle { @Override public @NotNull EntityType getEntity(@NotNull String id) { // TODO: 我们暂时不支持实体,因为端本身都没实体ai,生成实体没有意义 - return null; + return new EntityType() { + private final Object fakeEntityType = new Object(); + @Override + public Object getHandle() { + return fakeEntityType; + } + }; } } From 6ff0903d832e140aaa561b1cac146a07474d2ba2 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 17 Jun 2024 01:21:14 +0800 Subject: [PATCH 018/136] fix: fix an mistake --- .../java/org/allaymc/terra/allay/delegate/AllayChunk.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java index b5cf27910..113b3a5ae 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java @@ -27,12 +27,12 @@ public record AllayChunk(ServerWorld world, Chunk allayChunk) implements com.dfs @Override public int getX() { - return 0; + return allayChunk.getX(); } @Override public int getZ() { - return 0; + return allayChunk.getZ(); } @Override From 4a3678cea9ba1e8f2629b2bcb995330b2b175825 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Tue, 18 Jun 2024 03:41:17 +0800 Subject: [PATCH 019/136] feat: update to 1.21 --- README.md | 11 +- .../java/org/allaymc/terra/allay/Mapping.java | 19 +- .../resources/je_block_default_states.json | 3462 +++++++++++++++++ .../src/main/resources/mapping/blocks.json | 270 +- 4 files changed, 3596 insertions(+), 166 deletions(-) create mode 100644 platforms/allay/src/main/resources/je_block_default_states.json diff --git a/README.md b/README.md index c0f9414b7..ebba0fec2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,15 @@ Terra Logo -# Terra +# Terra (Allay Platform) + +This fork adds support for allay + +if you want to build it, here are some files you may need: + +- `mapping/biomes.json` from GeyserMC/mappings +- `mapping/items.json` from GeyserMC/mappings +- `mapping/blocks.json` you should generate it using GeyserMC/mappings-generator, and it's origin name is `generator_blocks.json` +- `je_block_default_state` converted from https://zh.minecraft.wiki/w/Module:Block_state_values currently Terra is a modern world generation modding platform, primarily for Minecraft. Terra allows complete customization of world generation with an advanced API, diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java index d6e010b66..8f8504d16 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -97,14 +97,19 @@ public final class Mapping { } private static boolean initJeBlockDefaultProperties() { - for (var beBlockType : BlockTypeRegistry.getRegistry().getContent().values()) { - var defaultBeBlockState = beBlockType.getDefaultState(); - var defaultJeBlockState = blockStateBeToJe(defaultBeBlockState); - if (defaultJeBlockState == null) { - log.warn("Failed to find JE block state for {}", defaultBeBlockState); - continue; + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("je_block_default_states.json")) { + if (stream == null) { + log.error("je_block_default_states.json not found"); + return false; } - JE_BLOCK_DEFAULT_PROPERTIES.put(defaultJeBlockState.identifier, defaultJeBlockState.properties); + var states = JSONUtils.from(stream, new TypeToken>>(){}); + for(var entry : states.entrySet()) { + var identifier = entry.getKey(); + var properties = entry.getValue(); + JE_BLOCK_DEFAULT_PROPERTIES.put(identifier, properties); + } + } catch(IOException e) { + throw new RuntimeException(e); } return true; } diff --git a/platforms/allay/src/main/resources/je_block_default_states.json b/platforms/allay/src/main/resources/je_block_default_states.json new file mode 100644 index 000000000..09be0cf42 --- /dev/null +++ b/platforms/allay/src/main/resources/je_block_default_states.json @@ -0,0 +1,3462 @@ +{ + "acacia_button": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "minecraft:acacia_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:acacia_fence": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:acacia_fence_gate": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "minecraft:acacia_hanging_sign": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:acacia_leaves": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + }, + "minecraft:acacia_log": { + "axis": "y" + }, + "minecraft:acacia_planks": {}, + "minecraft:acacia_pressure_plate": { + "powered": "false" + }, + "minecraft:acacia_sapling": { + "stage": "0" + }, + "minecraft:acacia_sign": { + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:acacia_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:acacia_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:acacia_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:acacia_wall_hanging_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:acacia_wall_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:acacia_wood": { + "axis": "y" + }, + "minecraft:activator_rail": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + }, + "minecraft:air": {}, + "minecraft:allium": {}, + "minecraft:amethyst_block": {}, + "minecraft:amethyst_cluster": { + "facing": "up", + "waterlogged": "false" + }, + "minecraft:ancient_debris": {}, + "minecraft:andesite": {}, + "minecraft:andesite_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:andesite_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:andesite_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:anvil": { + "facing": "north" + }, + "minecraft:attached_melon_stem": { + "facing": "north" + }, + "minecraft:attached_pumpkin_stem": { + "facing": "north" + }, + "minecraft:azalea": {}, + "minecraft:azalea_leaves": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + }, + "minecraft:azure_bluet": {}, + "minecraft:bamboo": { + "age": "0", + "leaves": "none", + "stage": "0" + }, + "minecraft:bamboo_block": { + "axis": "y" + }, + "minecraft:bamboo_button": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "minecraft:bamboo_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:bamboo_fence": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:bamboo_fence_gate": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "minecraft:bamboo_hanging_sign": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:bamboo_mosaic": {}, + "minecraft:bamboo_mosaic_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:bamboo_mosaic_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:bamboo_planks": {}, + "minecraft:bamboo_pressure_plate": { + "powered": "false" + }, + "minecraft:bamboo_sapling": {}, + "minecraft:bamboo_sign": { + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:bamboo_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:bamboo_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:bamboo_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:bamboo_wall_hanging_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:bamboo_wall_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:barrel": { + "facing": "north", + "open": "false" + }, + "minecraft:barrier": { + "waterlogged": "false" + }, + "minecraft:basalt": { + "axis": "y" + }, + "minecraft:beacon": {}, + "minecraft:bedrock": {}, + "minecraft:bee_nest": { + "facing": "north", + "honey_level": "0" + }, + "minecraft:beehive": { + "facing": "north", + "honey_level": "0" + }, + "minecraft:beetroots": { + "age": "0" + }, + "minecraft:bell": { + "attachment": "floor", + "facing": "north", + "powered": "false" + }, + "minecraft:big_dripleaf": { + "facing": "north", + "tilt": "none", + "waterlogged": "false" + }, + "minecraft:big_dripleaf_stem": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:birch_button": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "minecraft:birch_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:birch_fence": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:birch_fence_gate": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "minecraft:birch_hanging_sign": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:birch_leaves": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + }, + "minecraft:birch_log": { + "axis": "y" + }, + "minecraft:birch_planks": {}, + "minecraft:birch_pressure_plate": { + "powered": "false" + }, + "minecraft:birch_sapling": { + "stage": "0" + }, + "minecraft:birch_sign": { + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:birch_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:birch_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:birch_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:birch_wall_hanging_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:birch_wall_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:birch_wood": { + "axis": "y" + }, + "minecraft:black_banner": { + "rotation": "0" + }, + "minecraft:black_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:black_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:black_candle_cake": { + "lit": "false" + }, + "minecraft:black_carpet": {}, + "minecraft:black_concrete": {}, + "minecraft:black_concrete_powder": {}, + "minecraft:black_glazed_terracotta": { + "facing": "north" + }, + "minecraft:black_shulker_box": { + "facing": "up" + }, + "minecraft:black_stained_glass": {}, + "minecraft:black_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:black_terracotta": {}, + "minecraft:black_wall_banner": { + "facing": "north" + }, + "minecraft:black_wool": {}, + "minecraft:blackstone": {}, + "minecraft:blackstone_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:blackstone_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:blackstone_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:blast_furnace": { + "facing": "north", + "lit": "false" + }, + "minecraft:blue_banner": { + "rotation": "0" + }, + "minecraft:blue_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:blue_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:blue_candle_cake": { + "lit": "false" + }, + "minecraft:blue_carpet": {}, + "minecraft:blue_concrete": {}, + "minecraft:blue_concrete_powder": {}, + "minecraft:blue_glazed_terracotta": { + "facing": "north" + }, + "minecraft:blue_ice": {}, + "minecraft:blue_orchid": {}, + "minecraft:blue_shulker_box": { + "facing": "up" + }, + "minecraft:blue_stained_glass": {}, + "minecraft:blue_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:blue_terracotta": {}, + "minecraft:blue_wall_banner": { + "facing": "north" + }, + "minecraft:blue_wool": {}, + "minecraft:bone_block": { + "axis": "y" + }, + "minecraft:bookshelf": {}, + "minecraft:brain_coral": { + "waterlogged": "true" + }, + "minecraft:brain_coral_block": {}, + "minecraft:brain_coral_fan": { + "waterlogged": "true" + }, + "minecraft:brain_coral_wall_fan": { + "facing": "north", + "waterlogged": "true" + }, + "minecraft:brewing_stand": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "false" + }, + "minecraft:brick_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:brick_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:brick_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:bricks": {}, + "minecraft:brown_banner": { + "rotation": "0" + }, + "minecraft:brown_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:brown_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:brown_candle_cake": { + "lit": "false" + }, + "minecraft:brown_carpet": {}, + "minecraft:brown_concrete": {}, + "minecraft:brown_concrete_powder": {}, + "minecraft:brown_glazed_terracotta": { + "facing": "north" + }, + "minecraft:brown_mushroom": {}, + "minecraft:brown_mushroom_block": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "minecraft:brown_shulker_box": { + "facing": "up" + }, + "minecraft:brown_stained_glass": {}, + "minecraft:brown_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:brown_terracotta": {}, + "minecraft:brown_wall_banner": { + "facing": "north" + }, + "minecraft:brown_wool": {}, + "minecraft:bubble_column": { + "drag": "true" + }, + "minecraft:bubble_coral": { + "waterlogged": "true" + }, + "minecraft:bubble_coral_block": {}, + "minecraft:bubble_coral_fan": { + "waterlogged": "true" + }, + "minecraft:bubble_coral_wall_fan": { + "facing": "north", + "waterlogged": "true" + }, + "minecraft:budding_amethyst": {}, + "minecraft:cactus": { + "age": "0" + }, + "minecraft:cake": { + "bites": "0" + }, + "minecraft:calcite": {}, + "minecraft:calibrated_sculk_sensor": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + }, + "minecraft:campfire": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + }, + "minecraft:candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:candle_cake": { + "lit": "false" + }, + "minecraft:carrots": { + "age": "0" + }, + "minecraft:cartography_table": {}, + "minecraft:carved_pumpkin": { + "facing": "north" + }, + "minecraft:cauldron": {}, + "minecraft:cave_air": {}, + "minecraft:cave_vines": { + "age": "0", + "berries": "false" + }, + "minecraft:cave_vines_plant": { + "berries": "false" + }, + "minecraft:chain": { + "axis": "y", + "waterlogged": "false" + }, + "minecraft:chain_command_block": { + "conditional": "false", + "facing": "north" + }, + "minecraft:cherry_button": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "minecraft:cherry_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:cherry_fence": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:cherry_fence_gate": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "minecraft:cherry_hanging_sign": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:cherry_leaves": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + }, + "minecraft:cherry_log": { + "axis": "y" + }, + "minecraft:cherry_planks": {}, + "minecraft:cherry_pressure_plate": { + "powered": "false" + }, + "minecraft:cherry_sapling": { + "stage": "0" + }, + "minecraft:cherry_sign": { + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:cherry_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:cherry_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:cherry_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:cherry_wall_hanging_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:cherry_wall_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:cherry_wood": { + "axis": "y" + }, + "minecraft:chest": { + "facing": "north", + "type": "single", + "waterlogged": "false" + }, + "minecraft:chipped_anvil": { + "facing": "north" + }, + "minecraft:chiseled_bookshelf": { + "facing": "north", + "chiseled_bookshelf_slot_0_occupied": "false", + "chiseled_bookshelf_slot_1_occupied": "false", + "chiseled_bookshelf_slot_2_occupied": "false", + "chiseled_bookshelf_slot_3_occupied": "false", + "chiseled_bookshelf_slot_4_occupied": "false", + "chiseled_bookshelf_slot_5_occupied": "false" + }, + "minecraft:chiseled_copper": {}, + "minecraft:chiseled_deepslate": {}, + "minecraft:chiseled_nether_bricks": {}, + "minecraft:chiseled_polished_blackstone": {}, + "minecraft:chiseled_quartz_block": {}, + "minecraft:chiseled_red_sandstone": {}, + "minecraft:chiseled_sandstone": {}, + "minecraft:chiseled_stone_bricks": {}, + "minecraft:chiseled_tuff": {}, + "minecraft:chiseled_tuff_bricks": {}, + "minecraft:chorus_flower": { + "age": "0" + }, + "minecraft:chorus_plant": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "minecraft:clay": {}, + "minecraft:coal_block": {}, + "minecraft:coal_ore": {}, + "minecraft:coarse_dirt": {}, + "minecraft:cobbled_deepslate": {}, + "minecraft:cobbled_deepslate_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:cobbled_deepslate_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:cobbled_deepslate_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:cobblestone": {}, + "minecraft:cobblestone_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:cobblestone_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:cobblestone_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:cobweb": {}, + "minecraft:cocoa": { + "age": "0", + "facing": "north" + }, + "minecraft:command_block": { + "conditional": "false", + "facing": "north" + }, + "minecraft:comparator": { + "facing": "north", + "mode_comparator": "compare", + "powered": "false" + }, + "minecraft:composter": { + "level_composter": "0" + }, + "minecraft:conduit": { + "waterlogged": "true" + }, + "minecraft:copper_block": {}, + "minecraft:copper_bulb": { + "lit": "false", + "powered": "false" + }, + "minecraft:copper_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:copper_grate": { + "waterlogged": "false" + }, + "minecraft:copper_ore": {}, + "minecraft:copper_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:cornflower": {}, + "minecraft:cracked_deepslate_bricks": {}, + "minecraft:cracked_deepslate_tiles": {}, + "minecraft:cracked_nether_bricks": {}, + "minecraft:cracked_polished_blackstone_bricks": {}, + "minecraft:cracked_stone_bricks": {}, + "minecraft:crafter": { + "crafting": "false", + "orientation": "north_up", + "triggered": "false" + }, + "minecraft:crafting_table": {}, + "minecraft:creeper_head": { + "powered": "false", + "rotation": "0" + }, + "minecraft:creeper_wall_head": { + "facing": "north", + "powered": "false" + }, + "minecraft:crimson_button": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "minecraft:crimson_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:crimson_fence": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:crimson_fence_gate": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "minecraft:crimson_fungus": {}, + "minecraft:crimson_hanging_sign": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:crimson_hyphae": { + "axis": "y" + }, + "minecraft:crimson_nylium": {}, + "minecraft:crimson_planks": {}, + "minecraft:crimson_pressure_plate": { + "powered": "false" + }, + "minecraft:crimson_roots": {}, + "minecraft:crimson_sign": { + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:crimson_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:crimson_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:crimson_stem": { + "axis": "y" + }, + "minecraft:crimson_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:crimson_wall_hanging_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:crimson_wall_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:crying_obsidian": {}, + "minecraft:cut_copper": {}, + "minecraft:cut_copper_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:cut_copper_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:cut_red_sandstone": {}, + "minecraft:cut_red_sandstone_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:cut_sandstone": {}, + "minecraft:cut_sandstone_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:cyan_banner": { + "rotation": "0" + }, + "minecraft:cyan_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:cyan_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:cyan_candle_cake": { + "lit": "false" + }, + "minecraft:cyan_carpet": {}, + "minecraft:cyan_concrete": {}, + "minecraft:cyan_concrete_powder": {}, + "minecraft:cyan_glazed_terracotta": { + "facing": "north" + }, + "minecraft:cyan_shulker_box": { + "facing": "up" + }, + "minecraft:cyan_stained_glass": {}, + "minecraft:cyan_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:cyan_terracotta": {}, + "minecraft:cyan_wall_banner": { + "facing": "north" + }, + "minecraft:cyan_wool": {}, + "minecraft:damaged_anvil": { + "facing": "north" + }, + "minecraft:dandelion": {}, + "minecraft:dark_oak_button": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "minecraft:dark_oak_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:dark_oak_fence": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:dark_oak_fence_gate": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "minecraft:dark_oak_hanging_sign": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:dark_oak_leaves": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + }, + "minecraft:dark_oak_log": { + "axis": "y" + }, + "minecraft:dark_oak_planks": {}, + "minecraft:dark_oak_pressure_plate": { + "powered": "false" + }, + "minecraft:dark_oak_sapling": { + "stage": "0" + }, + "minecraft:dark_oak_sign": { + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:dark_oak_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:dark_oak_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:dark_oak_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:dark_oak_wall_hanging_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:dark_oak_wall_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:dark_oak_wood": { + "axis": "y" + }, + "minecraft:dark_prismarine": {}, + "minecraft:dark_prismarine_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:dark_prismarine_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:daylight_detector": { + "inverted": "false", + "power": "0" + }, + "minecraft:dead_brain_coral": { + "waterlogged": "true" + }, + "minecraft:dead_brain_coral_block": {}, + "minecraft:dead_brain_coral_fan": { + "waterlogged": "true" + }, + "minecraft:dead_brain_coral_wall_fan": { + "facing": "north", + "waterlogged": "true" + }, + "minecraft:dead_bubble_coral": { + "waterlogged": "true" + }, + "minecraft:dead_bubble_coral_block": {}, + "minecraft:dead_bubble_coral_fan": { + "waterlogged": "true" + }, + "minecraft:dead_bubble_coral_wall_fan": { + "facing": "north", + "waterlogged": "true" + }, + "minecraft:dead_bush": {}, + "minecraft:dead_fire_coral": { + "waterlogged": "true" + }, + "minecraft:dead_fire_coral_block": {}, + "minecraft:dead_fire_coral_fan": { + "waterlogged": "true" + }, + "minecraft:dead_fire_coral_wall_fan": { + "facing": "north", + "waterlogged": "true" + }, + "minecraft:dead_horn_coral": { + "waterlogged": "true" + }, + "minecraft:dead_horn_coral_block": {}, + "minecraft:dead_horn_coral_fan": { + "waterlogged": "true" + }, + "minecraft:dead_horn_coral_wall_fan": { + "facing": "north", + "waterlogged": "true" + }, + "minecraft:dead_tube_coral": { + "waterlogged": "true" + }, + "minecraft:dead_tube_coral_block": {}, + "minecraft:dead_tube_coral_fan": { + "waterlogged": "true" + }, + "minecraft:dead_tube_coral_wall_fan": { + "facing": "north", + "waterlogged": "true" + }, + "minecraft:decorated_pot": { + "cracked": "false", + "facing": "north", + "waterlogged": "false" + }, + "minecraft:deepslate": { + "axis": "y" + }, + "minecraft:deepslate_brick_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:deepslate_brick_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:deepslate_brick_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:deepslate_bricks": {}, + "minecraft:deepslate_coal_ore": {}, + "minecraft:deepslate_copper_ore": {}, + "minecraft:deepslate_diamond_ore": {}, + "minecraft:deepslate_emerald_ore": {}, + "minecraft:deepslate_gold_ore": {}, + "minecraft:deepslate_iron_ore": {}, + "minecraft:deepslate_lapis_ore": {}, + "minecraft:deepslate_redstone_ore": { + "lit": "false" + }, + "minecraft:deepslate_tile_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:deepslate_tile_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:deepslate_tile_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:deepslate_tiles": {}, + "minecraft:detector_rail": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + }, + "minecraft:diamond_block": {}, + "minecraft:diamond_ore": {}, + "minecraft:diorite": {}, + "minecraft:diorite_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:diorite_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:diorite_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:dirt": {}, + "minecraft:dirt_path": {}, + "minecraft:dispenser": { + "facing": "north", + "triggered": "false" + }, + "minecraft:dragon_egg": {}, + "minecraft:dragon_head": { + "powered": "false", + "rotation": "0" + }, + "minecraft:dragon_wall_head": { + "facing": "north", + "powered": "false" + }, + "minecraft:dried_kelp_block": {}, + "minecraft:dripstone_block": {}, + "minecraft:dropper": { + "facing": "north", + "triggered": "false" + }, + "minecraft:emerald_block": {}, + "minecraft:emerald_ore": {}, + "minecraft:enchanting_table": {}, + "minecraft:end_gateway": {}, + "minecraft:end_portal": {}, + "minecraft:end_portal_frame": { + "eye": "false", + "facing": "north" + }, + "minecraft:end_rod": { + "facing": "up" + }, + "minecraft:end_stone": {}, + "minecraft:end_stone_brick_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:end_stone_brick_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:end_stone_brick_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:end_stone_bricks": {}, + "minecraft:ender_chest": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:exposed_chiseled_copper": {}, + "minecraft:exposed_copper": {}, + "minecraft:exposed_copper_bulb": { + "lit": "false", + "powered": "false" + }, + "minecraft:exposed_copper_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:exposed_copper_grate": { + "waterlogged": "false" + }, + "minecraft:exposed_copper_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:exposed_cut_copper": {}, + "minecraft:exposed_cut_copper_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:exposed_cut_copper_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:farmland": { + "moisture": "0" + }, + "minecraft:fern": {}, + "minecraft:fire": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "minecraft:fire_coral": { + "waterlogged": "true" + }, + "minecraft:fire_coral_block": {}, + "minecraft:fire_coral_fan": { + "waterlogged": "true" + }, + "minecraft:fire_coral_wall_fan": { + "facing": "north", + "waterlogged": "true" + }, + "minecraft:fletching_table": {}, + "minecraft:flower_pot": {}, + "minecraft:flowering_azalea": {}, + "minecraft:flowering_azalea_leaves": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + }, + "minecraft:frogspawn": {}, + "minecraft:frosted_ice": { + "age": "0" + }, + "minecraft:furnace": { + "facing": "north", + "lit": "false" + }, + "minecraft:gilded_blackstone": {}, + "minecraft:glass": {}, + "minecraft:glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:glow_lichen": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:glowstone": {}, + "minecraft:gold_block": {}, + "minecraft:gold_ore": {}, + "minecraft:granite": {}, + "minecraft:granite_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:granite_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:granite_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:grass_block": { + "snowy": "false" + }, + "minecraft:gravel": {}, + "minecraft:gray_banner": { + "rotation": "0" + }, + "minecraft:gray_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:gray_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:gray_candle_cake": { + "lit": "false" + }, + "minecraft:gray_carpet": {}, + "minecraft:gray_concrete": {}, + "minecraft:gray_concrete_powder": {}, + "minecraft:gray_glazed_terracotta": { + "facing": "north" + }, + "minecraft:gray_shulker_box": { + "facing": "up" + }, + "minecraft:gray_stained_glass": {}, + "minecraft:gray_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:gray_terracotta": {}, + "minecraft:gray_wall_banner": { + "facing": "north" + }, + "minecraft:gray_wool": {}, + "minecraft:green_banner": { + "rotation": "0" + }, + "minecraft:green_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:green_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:green_candle_cake": { + "lit": "false" + }, + "minecraft:green_carpet": {}, + "minecraft:green_concrete": {}, + "minecraft:green_concrete_powder": {}, + "minecraft:green_glazed_terracotta": { + "facing": "north" + }, + "minecraft:green_shulker_box": { + "facing": "up" + }, + "minecraft:green_stained_glass": {}, + "minecraft:green_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:green_terracotta": {}, + "minecraft:green_wall_banner": { + "facing": "north" + }, + "minecraft:green_wool": {}, + "minecraft:grindstone": { + "face": "wall", + "facing": "north" + }, + "minecraft:hanging_roots": { + "waterlogged": "false" + }, + "minecraft:hay_block": { + "axis": "y" + }, + "minecraft:heavy_core": { + "waterlogged": "false" + }, + "minecraft:heavy_weighted_pressure_plate": { + "power": "0" + }, + "minecraft:honey_block": {}, + "minecraft:honeycomb_block": {}, + "minecraft:hopper": { + "enabled": "true", + "facing_hopper": "down" + }, + "minecraft:horn_coral": { + "waterlogged": "true" + }, + "minecraft:horn_coral_block": {}, + "minecraft:horn_coral_fan": { + "waterlogged": "true" + }, + "minecraft:horn_coral_wall_fan": { + "facing": "north", + "waterlogged": "true" + }, + "minecraft:ice": {}, + "minecraft:infested_chiseled_stone_bricks": {}, + "minecraft:infested_cobblestone": {}, + "minecraft:infested_cracked_stone_bricks": {}, + "minecraft:infested_deepslate": { + "axis": "y" + }, + "minecraft:infested_mossy_stone_bricks": {}, + "minecraft:infested_stone": {}, + "minecraft:infested_stone_bricks": {}, + "minecraft:iron_bars": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:iron_block": {}, + "minecraft:iron_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:iron_ore": {}, + "minecraft:iron_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:jack_o_lantern": { + "facing": "north" + }, + "minecraft:jigsaw": { + "orientation": "north_up" + }, + "minecraft:jukebox": { + "has_record": "false" + }, + "minecraft:jungle_button": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "minecraft:jungle_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:jungle_fence": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:jungle_fence_gate": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "minecraft:jungle_hanging_sign": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:jungle_leaves": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + }, + "minecraft:jungle_log": { + "axis": "y" + }, + "minecraft:jungle_planks": {}, + "minecraft:jungle_pressure_plate": { + "powered": "false" + }, + "minecraft:jungle_sapling": { + "stage": "0" + }, + "minecraft:jungle_sign": { + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:jungle_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:jungle_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:jungle_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:jungle_wall_hanging_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:jungle_wall_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:jungle_wood": { + "axis": "y" + }, + "minecraft:kelp": { + "age": "0" + }, + "minecraft:kelp_plant": {}, + "minecraft:ladder": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:lantern": { + "hanging": "false", + "waterlogged": "false" + }, + "minecraft:lapis_block": {}, + "minecraft:lapis_ore": {}, + "minecraft:large_amethyst_bud": { + "facing": "up", + "waterlogged": "false" + }, + "minecraft:large_fern": { + "half": "lower" + }, + "minecraft:lava": { + "level": "0" + }, + "minecraft:lava_cauldron": {}, + "minecraft:lectern": { + "facing": "north", + "has_book": "false", + "powered": "false" + }, + "minecraft:lever": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "minecraft:light": { + "level": "15", + "waterlogged": "false" + }, + "minecraft:light_blue_banner": { + "rotation": "0" + }, + "minecraft:light_blue_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:light_blue_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:light_blue_candle_cake": { + "lit": "false" + }, + "minecraft:light_blue_carpet": {}, + "minecraft:light_blue_concrete": {}, + "minecraft:light_blue_concrete_powder": {}, + "minecraft:light_blue_glazed_terracotta": { + "facing": "north" + }, + "minecraft:light_blue_shulker_box": { + "facing": "up" + }, + "minecraft:light_blue_stained_glass": {}, + "minecraft:light_blue_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:light_blue_terracotta": {}, + "minecraft:light_blue_wall_banner": { + "facing": "north" + }, + "minecraft:light_blue_wool": {}, + "minecraft:light_gray_banner": { + "rotation": "0" + }, + "minecraft:light_gray_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:light_gray_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:light_gray_candle_cake": { + "lit": "false" + }, + "minecraft:light_gray_carpet": {}, + "minecraft:light_gray_concrete": {}, + "minecraft:light_gray_concrete_powder": {}, + "minecraft:light_gray_glazed_terracotta": { + "facing": "north" + }, + "minecraft:light_gray_shulker_box": { + "facing": "up" + }, + "minecraft:light_gray_stained_glass": {}, + "minecraft:light_gray_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:light_gray_terracotta": {}, + "minecraft:light_gray_wall_banner": { + "facing": "north" + }, + "minecraft:light_gray_wool": {}, + "minecraft:light_weighted_pressure_plate": { + "power": "0" + }, + "minecraft:lightning_rod": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:lilac": { + "half": "lower" + }, + "minecraft:lily_of_the_valley": {}, + "minecraft:lily_pad": {}, + "minecraft:lime_banner": { + "rotation": "0" + }, + "minecraft:lime_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:lime_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:lime_candle_cake": { + "lit": "false" + }, + "minecraft:lime_carpet": {}, + "minecraft:lime_concrete": {}, + "minecraft:lime_concrete_powder": {}, + "minecraft:lime_glazed_terracotta": { + "facing": "north" + }, + "minecraft:lime_shulker_box": { + "facing": "up" + }, + "minecraft:lime_stained_glass": {}, + "minecraft:lime_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:lime_terracotta": {}, + "minecraft:lime_wall_banner": { + "facing": "north" + }, + "minecraft:lime_wool": {}, + "minecraft:lodestone": {}, + "minecraft:loom": { + "facing": "north" + }, + "minecraft:magenta_banner": { + "rotation": "0" + }, + "minecraft:magenta_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:magenta_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:magenta_candle_cake": { + "lit": "false" + }, + "minecraft:magenta_carpet": {}, + "minecraft:magenta_concrete": {}, + "minecraft:magenta_concrete_powder": {}, + "minecraft:magenta_glazed_terracotta": { + "facing": "north" + }, + "minecraft:magenta_shulker_box": { + "facing": "up" + }, + "minecraft:magenta_stained_glass": {}, + "minecraft:magenta_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:magenta_terracotta": {}, + "minecraft:magenta_wall_banner": { + "facing": "north" + }, + "minecraft:magenta_wool": {}, + "minecraft:magma_block": {}, + "minecraft:mangrove_button": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "minecraft:mangrove_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:mangrove_fence": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:mangrove_fence_gate": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "minecraft:mangrove_hanging_sign": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:mangrove_leaves": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + }, + "minecraft:mangrove_log": { + "axis": "y" + }, + "minecraft:mangrove_planks": {}, + "minecraft:mangrove_pressure_plate": { + "powered": "false" + }, + "minecraft:mangrove_propagule": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + }, + "minecraft:mangrove_roots": { + "waterlogged": "false" + }, + "minecraft:mangrove_sign": { + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:mangrove_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:mangrove_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:mangrove_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:mangrove_wall_hanging_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:mangrove_wall_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:mangrove_wood": { + "axis": "y" + }, + "minecraft:medium_amethyst_bud": { + "facing": "up", + "waterlogged": "false" + }, + "minecraft:melon": {}, + "minecraft:melon_stem": { + "age": "0" + }, + "minecraft:moss_block": {}, + "minecraft:moss_carpet": {}, + "minecraft:mossy_cobblestone": {}, + "minecraft:mossy_cobblestone_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:mossy_cobblestone_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:mossy_cobblestone_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:mossy_stone_brick_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:mossy_stone_brick_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:mossy_stone_brick_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:mossy_stone_bricks": {}, + "minecraft:moving_piston": { + "facing": "north", + "type": "normal" + }, + "minecraft:mud": {}, + "minecraft:mud_brick_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:mud_brick_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:mud_brick_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:mud_bricks": {}, + "minecraft:muddy_mangrove_roots": { + "axis": "y" + }, + "minecraft:mushroom_stem": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "minecraft:mycelium": { + "snowy": "false" + }, + "minecraft:nether_brick_fence": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:nether_brick_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:nether_brick_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:nether_brick_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:nether_bricks": {}, + "minecraft:nether_gold_ore": {}, + "minecraft:nether_portal": { + "horizontal_axis": "x" + }, + "minecraft:nether_quartz_ore": {}, + "minecraft:nether_sprouts": {}, + "minecraft:nether_wart": { + "age": "0" + }, + "minecraft:nether_wart_block": {}, + "minecraft:netherite_block": {}, + "minecraft:netherrack": {}, + "minecraft:note_block": { + "noteblock_instrument": "harp", + "note": "0", + "powered": "false" + }, + "minecraft:oak_button": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "minecraft:oak_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:oak_fence": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:oak_fence_gate": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "minecraft:oak_hanging_sign": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:oak_leaves": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + }, + "minecraft:oak_log": { + "axis": "y" + }, + "minecraft:oak_planks": {}, + "minecraft:oak_pressure_plate": { + "powered": "false" + }, + "minecraft:oak_sapling": { + "stage": "0" + }, + "minecraft:oak_sign": { + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:oak_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:oak_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:oak_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:oak_wall_hanging_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:oak_wall_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:oak_wood": { + "axis": "y" + }, + "minecraft:observer": { + "facing": "south", + "powered": "false" + }, + "minecraft:obsidian": {}, + "minecraft:ochre_froglight": { + "axis": "y" + }, + "minecraft:orange_banner": { + "rotation": "0" + }, + "minecraft:orange_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:orange_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:orange_candle_cake": { + "lit": "false" + }, + "minecraft:orange_carpet": {}, + "minecraft:orange_concrete": {}, + "minecraft:orange_concrete_powder": {}, + "minecraft:orange_glazed_terracotta": { + "facing": "north" + }, + "minecraft:orange_shulker_box": { + "facing": "up" + }, + "minecraft:orange_stained_glass": {}, + "minecraft:orange_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:orange_terracotta": {}, + "minecraft:orange_tulip": {}, + "minecraft:orange_wall_banner": { + "facing": "north" + }, + "minecraft:orange_wool": {}, + "minecraft:oxeye_daisy": {}, + "minecraft:oxidized_chiseled_copper": {}, + "minecraft:oxidized_copper": {}, + "minecraft:oxidized_copper_bulb": { + "lit": "false", + "powered": "false" + }, + "minecraft:oxidized_copper_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:oxidized_copper_grate": { + "waterlogged": "false" + }, + "minecraft:oxidized_copper_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:oxidized_cut_copper": {}, + "minecraft:oxidized_cut_copper_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:oxidized_cut_copper_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:packed_ice": {}, + "minecraft:packed_mud": {}, + "minecraft:pearlescent_froglight": { + "axis": "y" + }, + "minecraft:peony": { + "half": "lower" + }, + "minecraft:petrified_oak_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:piglin_head": { + "powered": "false", + "rotation": "0" + }, + "minecraft:piglin_wall_head": { + "facing": "north", + "powered": "false" + }, + "minecraft:pink_banner": { + "rotation": "0" + }, + "minecraft:pink_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:pink_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:pink_candle_cake": { + "lit": "false" + }, + "minecraft:pink_carpet": {}, + "minecraft:pink_concrete": {}, + "minecraft:pink_concrete_powder": {}, + "minecraft:pink_glazed_terracotta": { + "facing": "north" + }, + "minecraft:pink_petals": { + "facing": "north", + "flower_amount": "1" + }, + "minecraft:pink_shulker_box": { + "facing": "up" + }, + "minecraft:pink_stained_glass": {}, + "minecraft:pink_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:pink_terracotta": {}, + "minecraft:pink_tulip": {}, + "minecraft:pink_wall_banner": { + "facing": "north" + }, + "minecraft:pink_wool": {}, + "minecraft:piston": { + "extended": "false", + "facing": "north" + }, + "minecraft:piston_head": { + "facing": "north", + "short": "false", + "type": "normal" + }, + "minecraft:pitcher_crop": { + "age": "0", + "half": "lower" + }, + "minecraft:pitcher_plant": { + "half": "lower" + }, + "minecraft:player_head": { + "powered": "false", + "rotation": "0" + }, + "minecraft:player_wall_head": { + "facing": "north", + "powered": "false" + }, + "minecraft:podzol": { + "snowy": "false" + }, + "minecraft:pointed_dripstone": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + }, + "minecraft:polished_andesite": {}, + "minecraft:polished_andesite_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:polished_andesite_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:polished_basalt": { + "axis": "y" + }, + "minecraft:polished_blackstone": {}, + "minecraft:polished_blackstone_brick_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:polished_blackstone_brick_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:polished_blackstone_brick_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:polished_blackstone_bricks": {}, + "minecraft:polished_blackstone_button": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "minecraft:polished_blackstone_pressure_plate": { + "powered": "false" + }, + "minecraft:polished_blackstone_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:polished_blackstone_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:polished_blackstone_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:polished_deepslate": {}, + "minecraft:polished_deepslate_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:polished_deepslate_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:polished_deepslate_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:polished_diorite": {}, + "minecraft:polished_diorite_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:polished_diorite_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:polished_granite": {}, + "minecraft:polished_granite_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:polished_granite_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:polished_tuff": {}, + "minecraft:polished_tuff_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:polished_tuff_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:polished_tuff_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:poppy": {}, + "minecraft:potatoes": { + "age": "0" + }, + "minecraft:potted_acacia_sapling": {}, + "minecraft:potted_allium": {}, + "minecraft:potted_azalea_bush": {}, + "minecraft:potted_azure_bluet": {}, + "minecraft:potted_bamboo": {}, + "minecraft:potted_birch_sapling": {}, + "minecraft:potted_blue_orchid": {}, + "minecraft:potted_brown_mushroom": {}, + "minecraft:potted_cactus": {}, + "minecraft:potted_cherry_sapling": {}, + "minecraft:potted_cornflower": {}, + "minecraft:potted_crimson_fungus": {}, + "minecraft:potted_crimson_roots": {}, + "minecraft:potted_dandelion": {}, + "minecraft:potted_dark_oak_sapling": {}, + "minecraft:potted_dead_bush": {}, + "minecraft:potted_fern": {}, + "minecraft:potted_flowering_azalea_bush": {}, + "minecraft:potted_jungle_sapling": {}, + "minecraft:potted_lily_of_the_valley": {}, + "minecraft:potted_mangrove_propagule": {}, + "minecraft:potted_oak_sapling": {}, + "minecraft:potted_orange_tulip": {}, + "minecraft:potted_oxeye_daisy": {}, + "minecraft:potted_pink_tulip": {}, + "minecraft:potted_poppy": {}, + "minecraft:potted_red_mushroom": {}, + "minecraft:potted_red_tulip": {}, + "minecraft:potted_spruce_sapling": {}, + "minecraft:potted_torchflower": {}, + "minecraft:potted_warped_fungus": {}, + "minecraft:potted_warped_roots": {}, + "minecraft:potted_white_tulip": {}, + "minecraft:potted_wither_rose": {}, + "minecraft:powder_snow": {}, + "minecraft:powder_snow_cauldron": { + "level_cauldron": "1" + }, + "minecraft:powered_rail": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + }, + "minecraft:prismarine": {}, + "minecraft:prismarine_brick_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:prismarine_brick_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:prismarine_bricks": {}, + "minecraft:prismarine_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:prismarine_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:prismarine_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:pumpkin": {}, + "minecraft:pumpkin_stem": { + "age": "0" + }, + "minecraft:purple_banner": { + "rotation": "0" + }, + "minecraft:purple_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:purple_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:purple_candle_cake": { + "lit": "false" + }, + "minecraft:purple_carpet": {}, + "minecraft:purple_concrete": {}, + "minecraft:purple_concrete_powder": {}, + "minecraft:purple_glazed_terracotta": { + "facing": "north" + }, + "minecraft:purple_shulker_box": { + "facing": "up" + }, + "minecraft:purple_stained_glass": {}, + "minecraft:purple_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:purple_terracotta": {}, + "minecraft:purple_wall_banner": { + "facing": "north" + }, + "minecraft:purple_wool": {}, + "minecraft:purpur_block": {}, + "minecraft:purpur_pillar": { + "axis": "y" + }, + "minecraft:purpur_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:purpur_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:quartz_block": {}, + "minecraft:quartz_bricks": {}, + "minecraft:quartz_pillar": { + "axis": "y" + }, + "minecraft:quartz_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:quartz_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:rail": { + "rail_shape": "north_south", + "waterlogged": "false" + }, + "minecraft:raw_copper_block": {}, + "minecraft:raw_gold_block": {}, + "minecraft:raw_iron_block": {}, + "minecraft:red_banner": { + "rotation": "0" + }, + "minecraft:red_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:red_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:red_candle_cake": { + "lit": "false" + }, + "minecraft:red_carpet": {}, + "minecraft:red_concrete": {}, + "minecraft:red_concrete_powder": {}, + "minecraft:red_glazed_terracotta": { + "facing": "north" + }, + "minecraft:red_mushroom": {}, + "minecraft:red_mushroom_block": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "minecraft:red_nether_brick_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:red_nether_brick_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:red_nether_brick_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:red_nether_bricks": {}, + "minecraft:red_sand": {}, + "minecraft:red_sandstone": {}, + "minecraft:red_sandstone_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:red_sandstone_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:red_sandstone_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:red_shulker_box": { + "facing": "up" + }, + "minecraft:red_stained_glass": {}, + "minecraft:red_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:red_terracotta": {}, + "minecraft:red_tulip": {}, + "minecraft:red_wall_banner": { + "facing": "north" + }, + "minecraft:red_wool": {}, + "minecraft:redstone_block": {}, + "minecraft:redstone_lamp": { + "lit": "false" + }, + "minecraft:redstone_ore": { + "lit": "false" + }, + "minecraft:redstone_torch": { + "lit": "true" + }, + "minecraft:redstone_wall_torch": { + "facing": "north", + "lit": "true" + }, + "minecraft:redstone_wire": { + "east_redstone": "none", + "north_redstone": "none", + "power": "0", + "south_redstone": "none", + "west_redstone": "none" + }, + "minecraft:reinforced_deepslate": {}, + "minecraft:repeater": { + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "false" + }, + "minecraft:repeating_command_block": { + "conditional": "false", + "facing": "north" + }, + "minecraft:respawn_anchor": { + "respawn_anchor_charges": "0" + }, + "minecraft:rooted_dirt": {}, + "minecraft:rose_bush": { + "half": "lower" + }, + "minecraft:sand": {}, + "minecraft:sandstone": {}, + "minecraft:sandstone_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:sandstone_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:sandstone_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:scaffolding": { + "bottom": "false", + "stability_distance": "7", + "waterlogged": "false" + }, + "minecraft:sculk": {}, + "minecraft:sculk_catalyst": { + "bloom": "false" + }, + "minecraft:sculk_sensor": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + }, + "minecraft:sculk_shrieker": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "false" + }, + "minecraft:sculk_vein": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:sea_lantern": {}, + "minecraft:sea_pickle": { + "pickles": "1", + "waterlogged": "true" + }, + "minecraft:seagrass": {}, + "minecraft:short_grass": {}, + "minecraft:shroomlight": {}, + "minecraft:shulker_box": { + "facing": "up" + }, + "minecraft:skeleton_skull": { + "powered": "false", + "rotation": "0" + }, + "minecraft:skeleton_wall_skull": { + "facing": "north", + "powered": "false" + }, + "minecraft:slime_block": {}, + "minecraft:small_amethyst_bud": { + "facing": "up", + "waterlogged": "false" + }, + "minecraft:small_dripleaf": { + "facing": "north", + "half": "lower", + "waterlogged": "false" + }, + "minecraft:smithing_table": {}, + "minecraft:smoker": { + "facing": "north", + "lit": "false" + }, + "minecraft:smooth_basalt": {}, + "minecraft:smooth_quartz": {}, + "minecraft:smooth_quartz_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:smooth_quartz_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:smooth_red_sandstone": {}, + "minecraft:smooth_red_sandstone_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:smooth_red_sandstone_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:smooth_sandstone": {}, + "minecraft:smooth_sandstone_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:smooth_sandstone_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:smooth_stone": {}, + "minecraft:smooth_stone_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:sniffer_egg": { + "hatch": "0" + }, + "minecraft:snow": { + "layers": "1" + }, + "minecraft:snow_block": {}, + "minecraft:soul_campfire": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + }, + "minecraft:soul_fire": {}, + "minecraft:soul_lantern": { + "hanging": "false", + "waterlogged": "false" + }, + "minecraft:soul_sand": {}, + "minecraft:soul_soil": {}, + "minecraft:soul_torch": {}, + "minecraft:soul_wall_torch": { + "facing": "north" + }, + "minecraft:spawner": {}, + "minecraft:sponge": {}, + "minecraft:spore_blossom": {}, + "minecraft:spruce_button": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "minecraft:spruce_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:spruce_fence": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:spruce_fence_gate": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "minecraft:spruce_hanging_sign": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:spruce_leaves": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + }, + "minecraft:spruce_log": { + "axis": "y" + }, + "minecraft:spruce_planks": {}, + "minecraft:spruce_pressure_plate": { + "powered": "false" + }, + "minecraft:spruce_sapling": { + "stage": "0" + }, + "minecraft:spruce_sign": { + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:spruce_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:spruce_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:spruce_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:spruce_wall_hanging_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:spruce_wall_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:spruce_wood": { + "axis": "y" + }, + "minecraft:sticky_piston": { + "extended": "false", + "facing": "north" + }, + "minecraft:stone": {}, + "minecraft:stone_brick_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:stone_brick_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:stone_brick_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:stone_bricks": {}, + "minecraft:stone_button": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "minecraft:stone_pressure_plate": { + "powered": "false" + }, + "minecraft:stone_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:stone_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:stonecutter": { + "facing": "north" + }, + "minecraft:stripped_acacia_log": { + "axis": "y" + }, + "minecraft:stripped_acacia_wood": { + "axis": "y" + }, + "minecraft:stripped_bamboo_block": { + "axis": "y" + }, + "minecraft:stripped_birch_log": { + "axis": "y" + }, + "minecraft:stripped_birch_wood": { + "axis": "y" + }, + "minecraft:stripped_cherry_log": { + "axis": "y" + }, + "minecraft:stripped_cherry_wood": { + "axis": "y" + }, + "minecraft:stripped_crimson_hyphae": { + "axis": "y" + }, + "minecraft:stripped_crimson_stem": { + "axis": "y" + }, + "minecraft:stripped_dark_oak_log": { + "axis": "y" + }, + "minecraft:stripped_dark_oak_wood": { + "axis": "y" + }, + "minecraft:stripped_jungle_log": { + "axis": "y" + }, + "minecraft:stripped_jungle_wood": { + "axis": "y" + }, + "minecraft:stripped_mangrove_log": { + "axis": "y" + }, + "minecraft:stripped_mangrove_wood": { + "axis": "y" + }, + "minecraft:stripped_oak_log": { + "axis": "y" + }, + "minecraft:stripped_oak_wood": { + "axis": "y" + }, + "minecraft:stripped_spruce_log": { + "axis": "y" + }, + "minecraft:stripped_spruce_wood": { + "axis": "y" + }, + "minecraft:stripped_warped_hyphae": { + "axis": "y" + }, + "minecraft:stripped_warped_stem": { + "axis": "y" + }, + "minecraft:structure_block": { + "structureblock_mode": "load" + }, + "minecraft:structure_void": {}, + "minecraft:sugar_cane": { + "age": "0" + }, + "minecraft:sunflower": { + "half": "lower" + }, + "minecraft:suspicious_gravel": { + "dusted": "0" + }, + "minecraft:suspicious_sand": { + "dusted": "0" + }, + "minecraft:sweet_berry_bush": { + "age": "0" + }, + "minecraft:tall_grass": { + "half": "lower" + }, + "minecraft:tall_seagrass": { + "half": "lower" + }, + "minecraft:target": { + "power": "0" + }, + "minecraft:terracotta": {}, + "minecraft:tinted_glass": {}, + "minecraft:tnt": { + "unstable": "false" + }, + "minecraft:torch": {}, + "minecraft:torchflower": {}, + "minecraft:torchflower_crop": { + "age": "0" + }, + "minecraft:trapped_chest": { + "facing": "north", + "type": "single", + "waterlogged": "false" + }, + "minecraft:trial_spawner": { + "ominous": "false", + "trial_spawner_state": "inactive" + }, + "minecraft:tripwire": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + }, + "minecraft:tripwire_hook": { + "attached": "false", + "facing": "north", + "powered": "false" + }, + "minecraft:tube_coral": { + "waterlogged": "true" + }, + "minecraft:tube_coral_block": {}, + "minecraft:tube_coral_fan": { + "waterlogged": "true" + }, + "minecraft:tube_coral_wall_fan": { + "facing": "north", + "waterlogged": "true" + }, + "minecraft:tuff": {}, + "minecraft:tuff_brick_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:tuff_brick_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:tuff_brick_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:tuff_bricks": {}, + "minecraft:tuff_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:tuff_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:tuff_wall": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + }, + "minecraft:turtle_egg": { + "eggs": "1", + "hatch": "0" + }, + "minecraft:twisting_vines": { + "age": "0" + }, + "minecraft:twisting_vines_plant": {}, + "minecraft:vault": { + "facing": "north", + "ominous": "false", + "vault_state": "inactive" + }, + "minecraft:verdant_froglight": { + "axis": "y" + }, + "minecraft:vine": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "minecraft:void_air": {}, + "minecraft:wall_torch": { + "facing": "north" + }, + "minecraft:warped_button": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "minecraft:warped_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:warped_fence": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:warped_fence_gate": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "minecraft:warped_fungus": {}, + "minecraft:warped_hanging_sign": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:warped_hyphae": { + "axis": "y" + }, + "minecraft:warped_nylium": {}, + "minecraft:warped_planks": {}, + "minecraft:warped_pressure_plate": { + "powered": "false" + }, + "minecraft:warped_roots": {}, + "minecraft:warped_sign": { + "rotation": "0", + "waterlogged": "false" + }, + "minecraft:warped_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:warped_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:warped_stem": { + "axis": "y" + }, + "minecraft:warped_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:warped_wall_hanging_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:warped_wall_sign": { + "facing": "north", + "waterlogged": "false" + }, + "minecraft:warped_wart_block": {}, + "minecraft:water": { + "level": "0" + }, + "minecraft:water_cauldron": { + "level_cauldron": "1" + }, + "minecraft:waxed_chiseled_copper": {}, + "minecraft:waxed_copper_block": {}, + "minecraft:waxed_copper_bulb": { + "lit": "false", + "powered": "false" + }, + "minecraft:waxed_copper_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:waxed_copper_grate": { + "waterlogged": "false" + }, + "minecraft:waxed_copper_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:waxed_cut_copper": {}, + "minecraft:waxed_cut_copper_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:waxed_cut_copper_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:waxed_exposed_chiseled_copper": {}, + "minecraft:waxed_exposed_copper": {}, + "minecraft:waxed_exposed_copper_bulb": { + "lit": "false", + "powered": "false" + }, + "minecraft:waxed_exposed_copper_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:waxed_exposed_copper_grate": { + "waterlogged": "false" + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:waxed_exposed_cut_copper": {}, + "minecraft:waxed_exposed_cut_copper_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:waxed_oxidized_chiseled_copper": {}, + "minecraft:waxed_oxidized_copper": {}, + "minecraft:waxed_oxidized_copper_bulb": { + "lit": "false", + "powered": "false" + }, + "minecraft:waxed_oxidized_copper_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:waxed_oxidized_copper_grate": { + "waterlogged": "false" + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:waxed_oxidized_cut_copper": {}, + "minecraft:waxed_oxidized_cut_copper_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:waxed_weathered_chiseled_copper": {}, + "minecraft:waxed_weathered_copper": {}, + "minecraft:waxed_weathered_copper_bulb": { + "lit": "false", + "powered": "false" + }, + "minecraft:waxed_weathered_copper_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:waxed_weathered_copper_grate": { + "waterlogged": "false" + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:waxed_weathered_cut_copper": {}, + "minecraft:waxed_weathered_cut_copper_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:weathered_chiseled_copper": {}, + "minecraft:weathered_copper": {}, + "minecraft:weathered_copper_bulb": { + "lit": "false", + "powered": "false" + }, + "minecraft:weathered_copper_door": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "minecraft:weathered_copper_grate": { + "waterlogged": "false" + }, + "minecraft:weathered_copper_trapdoor": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "minecraft:weathered_cut_copper": {}, + "minecraft:weathered_cut_copper_slab": { + "type": "bottom", + "waterlogged": "false" + }, + "minecraft:weathered_cut_copper_stairs": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "minecraft:weeping_vines": { + "age": "0" + }, + "minecraft:weeping_vines_plant": {}, + "minecraft:wet_sponge": {}, + "minecraft:wheat": { + "age": "0" + }, + "minecraft:white_banner": { + "rotation": "0" + }, + "minecraft:white_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:white_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:white_candle_cake": { + "lit": "false" + }, + "minecraft:white_carpet": {}, + "minecraft:white_concrete": {}, + "minecraft:white_concrete_powder": {}, + "minecraft:white_glazed_terracotta": { + "facing": "north" + }, + "minecraft:white_shulker_box": { + "facing": "up" + }, + "minecraft:white_stained_glass": {}, + "minecraft:white_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:white_terracotta": {}, + "minecraft:white_tulip": {}, + "minecraft:white_wall_banner": { + "facing": "north" + }, + "minecraft:white_wool": {}, + "minecraft:wither_rose": {}, + "minecraft:wither_skeleton_skull": { + "powered": "false", + "rotation": "0" + }, + "minecraft:wither_skeleton_wall_skull": { + "facing": "north", + "powered": "false" + }, + "minecraft:yellow_banner": { + "rotation": "0" + }, + "minecraft:yellow_bed": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "minecraft:yellow_candle": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + }, + "minecraft:yellow_candle_cake": { + "lit": "false" + }, + "minecraft:yellow_carpet": {}, + "minecraft:yellow_concrete": {}, + "minecraft:yellow_concrete_powder": {}, + "minecraft:yellow_glazed_terracotta": { + "facing": "north" + }, + "minecraft:yellow_shulker_box": { + "facing": "up" + }, + "minecraft:yellow_stained_glass": {}, + "minecraft:yellow_stained_glass_pane": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "minecraft:yellow_terracotta": {}, + "minecraft:yellow_wall_banner": { + "facing": "north" + }, + "minecraft:yellow_wool": {}, + "minecraft:zombie_head": { + "powered": "false", + "rotation": "0" + }, + "minecraft:zombie_wall_head": { + "facing": "north", + "powered": "false" + } +} \ No newline at end of file diff --git a/platforms/allay/src/main/resources/mapping/blocks.json b/platforms/allay/src/main/resources/mapping/blocks.json index 334c21844..a341f74f4 100644 --- a/platforms/allay/src/main/resources/mapping/blocks.json +++ b/platforms/allay/src/main/resources/mapping/blocks.json @@ -28903,10 +28903,7 @@ "Name": "minecraft:short_grass" }, "bedrock_state": { - "bedrock_identifier": "tallgrass", - "state": { - "tall_grass_type": "tall" - } + "bedrock_identifier": "short_grass" } }, { @@ -28914,10 +28911,7 @@ "Name": "minecraft:fern" }, "bedrock_state": { - "bedrock_identifier": "tallgrass", - "state": { - "tall_grass_type": "fern" - } + "bedrock_identifier": "fern" } }, { @@ -187600,10 +187594,9 @@ "Name": "minecraft:sunflower" }, "bedrock_state": { - "bedrock_identifier": "double_plant", + "bedrock_identifier": "sunflower", "state": { - "upper_block_bit": true, - "double_plant_type": "sunflower" + "upper_block_bit": true } } }, @@ -187615,10 +187608,9 @@ "Name": "minecraft:sunflower" }, "bedrock_state": { - "bedrock_identifier": "double_plant", + "bedrock_identifier": "sunflower", "state": { - "upper_block_bit": false, - "double_plant_type": "sunflower" + "upper_block_bit": false } } }, @@ -187630,10 +187622,9 @@ "Name": "minecraft:lilac" }, "bedrock_state": { - "bedrock_identifier": "double_plant", + "bedrock_identifier": "lilac", "state": { - "upper_block_bit": true, - "double_plant_type": "syringa" + "upper_block_bit": true } } }, @@ -187645,10 +187636,9 @@ "Name": "minecraft:lilac" }, "bedrock_state": { - "bedrock_identifier": "double_plant", + "bedrock_identifier": "lilac", "state": { - "upper_block_bit": false, - "double_plant_type": "syringa" + "upper_block_bit": false } } }, @@ -187660,10 +187650,9 @@ "Name": "minecraft:rose_bush" }, "bedrock_state": { - "bedrock_identifier": "double_plant", + "bedrock_identifier": "rose_bush", "state": { - "upper_block_bit": true, - "double_plant_type": "rose" + "upper_block_bit": true } } }, @@ -187675,10 +187664,9 @@ "Name": "minecraft:rose_bush" }, "bedrock_state": { - "bedrock_identifier": "double_plant", + "bedrock_identifier": "rose_bush", "state": { - "upper_block_bit": false, - "double_plant_type": "rose" + "upper_block_bit": false } } }, @@ -187690,10 +187678,9 @@ "Name": "minecraft:peony" }, "bedrock_state": { - "bedrock_identifier": "double_plant", + "bedrock_identifier": "peony", "state": { - "upper_block_bit": true, - "double_plant_type": "paeonia" + "upper_block_bit": true } } }, @@ -187705,10 +187692,9 @@ "Name": "minecraft:peony" }, "bedrock_state": { - "bedrock_identifier": "double_plant", + "bedrock_identifier": "peony", "state": { - "upper_block_bit": false, - "double_plant_type": "paeonia" + "upper_block_bit": false } } }, @@ -187720,10 +187706,9 @@ "Name": "minecraft:tall_grass" }, "bedrock_state": { - "bedrock_identifier": "double_plant", + "bedrock_identifier": "tall_grass", "state": { - "upper_block_bit": true, - "double_plant_type": "grass" + "upper_block_bit": true } } }, @@ -187735,10 +187720,9 @@ "Name": "minecraft:tall_grass" }, "bedrock_state": { - "bedrock_identifier": "double_plant", + "bedrock_identifier": "tall_grass", "state": { - "upper_block_bit": false, - "double_plant_type": "grass" + "upper_block_bit": false } } }, @@ -187750,10 +187734,9 @@ "Name": "minecraft:large_fern" }, "bedrock_state": { - "bedrock_identifier": "double_plant", + "bedrock_identifier": "large_fern", "state": { - "upper_block_bit": true, - "double_plant_type": "fern" + "upper_block_bit": true } } }, @@ -187765,10 +187748,9 @@ "Name": "minecraft:large_fern" }, "bedrock_state": { - "bedrock_identifier": "double_plant", + "bedrock_identifier": "large_fern", "state": { - "upper_block_bit": false, - "double_plant_type": "fern" + "upper_block_bit": false } } }, @@ -194730,9 +194712,8 @@ "Name": "minecraft:smooth_stone_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "smooth_stone_slab", "state": { - "stone_slab_type": "smooth_stone", "minecraft:vertical_half": "top" } } @@ -194746,9 +194727,8 @@ "Name": "minecraft:smooth_stone_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "smooth_stone_slab", "state": { - "stone_slab_type": "smooth_stone", "minecraft:vertical_half": "top" } } @@ -194762,9 +194742,8 @@ "Name": "minecraft:smooth_stone_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "smooth_stone_slab", "state": { - "stone_slab_type": "smooth_stone", "minecraft:vertical_half": "bottom" } } @@ -194778,9 +194757,8 @@ "Name": "minecraft:smooth_stone_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "smooth_stone_slab", "state": { - "stone_slab_type": "smooth_stone", "minecraft:vertical_half": "bottom" } } @@ -194826,9 +194804,8 @@ "Name": "minecraft:sandstone_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "sandstone_slab", "state": { - "stone_slab_type": "sandstone", "minecraft:vertical_half": "top" } } @@ -194842,9 +194819,8 @@ "Name": "minecraft:sandstone_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "sandstone_slab", "state": { - "stone_slab_type": "sandstone", "minecraft:vertical_half": "top" } } @@ -194858,9 +194834,8 @@ "Name": "minecraft:sandstone_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "sandstone_slab", "state": { - "stone_slab_type": "sandstone", "minecraft:vertical_half": "bottom" } } @@ -194874,9 +194849,8 @@ "Name": "minecraft:sandstone_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "sandstone_slab", "state": { - "stone_slab_type": "sandstone", "minecraft:vertical_half": "bottom" } } @@ -195018,9 +194992,8 @@ "Name": "minecraft:petrified_oak_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "petrified_oak_slab", "state": { - "stone_slab_type": "wood", "minecraft:vertical_half": "top" } } @@ -195034,9 +195007,8 @@ "Name": "minecraft:petrified_oak_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "petrified_oak_slab", "state": { - "stone_slab_type": "wood", "minecraft:vertical_half": "top" } } @@ -195050,9 +195022,8 @@ "Name": "minecraft:petrified_oak_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "petrified_oak_slab", "state": { - "stone_slab_type": "wood", "minecraft:vertical_half": "bottom" } } @@ -195066,9 +195037,8 @@ "Name": "minecraft:petrified_oak_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "petrified_oak_slab", "state": { - "stone_slab_type": "wood", "minecraft:vertical_half": "bottom" } } @@ -195114,9 +195084,8 @@ "Name": "minecraft:cobblestone_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "cobblestone_slab", "state": { - "stone_slab_type": "cobblestone", "minecraft:vertical_half": "top" } } @@ -195130,9 +195099,8 @@ "Name": "minecraft:cobblestone_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "cobblestone_slab", "state": { - "stone_slab_type": "cobblestone", "minecraft:vertical_half": "top" } } @@ -195146,9 +195114,8 @@ "Name": "minecraft:cobblestone_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "cobblestone_slab", "state": { - "stone_slab_type": "cobblestone", "minecraft:vertical_half": "bottom" } } @@ -195162,9 +195129,8 @@ "Name": "minecraft:cobblestone_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "cobblestone_slab", "state": { - "stone_slab_type": "cobblestone", "minecraft:vertical_half": "bottom" } } @@ -195210,9 +195176,8 @@ "Name": "minecraft:brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "brick_slab", "state": { - "stone_slab_type": "brick", "minecraft:vertical_half": "top" } } @@ -195226,9 +195191,8 @@ "Name": "minecraft:brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "brick_slab", "state": { - "stone_slab_type": "brick", "minecraft:vertical_half": "top" } } @@ -195242,9 +195206,8 @@ "Name": "minecraft:brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "brick_slab", "state": { - "stone_slab_type": "brick", "minecraft:vertical_half": "bottom" } } @@ -195258,9 +195221,8 @@ "Name": "minecraft:brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "brick_slab", "state": { - "stone_slab_type": "brick", "minecraft:vertical_half": "bottom" } } @@ -195306,9 +195268,8 @@ "Name": "minecraft:stone_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "stone_brick_slab", "state": { - "stone_slab_type": "stone_brick", "minecraft:vertical_half": "top" } } @@ -195322,9 +195283,8 @@ "Name": "minecraft:stone_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "stone_brick_slab", "state": { - "stone_slab_type": "stone_brick", "minecraft:vertical_half": "top" } } @@ -195338,9 +195298,8 @@ "Name": "minecraft:stone_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "stone_brick_slab", "state": { - "stone_slab_type": "stone_brick", "minecraft:vertical_half": "bottom" } } @@ -195354,9 +195313,8 @@ "Name": "minecraft:stone_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "stone_brick_slab", "state": { - "stone_slab_type": "stone_brick", "minecraft:vertical_half": "bottom" } } @@ -195492,9 +195450,8 @@ "Name": "minecraft:nether_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "nether_brick_slab", "state": { - "stone_slab_type": "nether_brick", "minecraft:vertical_half": "top" } } @@ -195508,9 +195465,8 @@ "Name": "minecraft:nether_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "nether_brick_slab", "state": { - "stone_slab_type": "nether_brick", "minecraft:vertical_half": "top" } } @@ -195524,9 +195480,8 @@ "Name": "minecraft:nether_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "nether_brick_slab", "state": { - "stone_slab_type": "nether_brick", "minecraft:vertical_half": "bottom" } } @@ -195540,9 +195495,8 @@ "Name": "minecraft:nether_brick_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "nether_brick_slab", "state": { - "stone_slab_type": "nether_brick", "minecraft:vertical_half": "bottom" } } @@ -195588,9 +195542,8 @@ "Name": "minecraft:quartz_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "quartz_slab", "state": { - "stone_slab_type": "quartz", "minecraft:vertical_half": "top" } } @@ -195604,9 +195557,8 @@ "Name": "minecraft:quartz_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "quartz_slab", "state": { - "stone_slab_type": "quartz", "minecraft:vertical_half": "top" } } @@ -195620,9 +195572,8 @@ "Name": "minecraft:quartz_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "quartz_slab", "state": { - "stone_slab_type": "quartz", "minecraft:vertical_half": "bottom" } } @@ -195636,9 +195587,8 @@ "Name": "minecraft:quartz_slab" }, "bedrock_state": { - "bedrock_identifier": "stone_block_slab", + "bedrock_identifier": "quartz_slab", "state": { - "stone_slab_type": "quartz", "minecraft:vertical_half": "bottom" } } @@ -222054,11 +222004,7 @@ "Name": "minecraft:dead_tube_coral_block" }, "bedrock_state": { - "bedrock_identifier": "coral_block", - "state": { - "coral_color": "blue", - "dead_bit": true - } + "bedrock_identifier": "dead_tube_coral_block" } }, { @@ -222066,11 +222012,7 @@ "Name": "minecraft:dead_brain_coral_block" }, "bedrock_state": { - "bedrock_identifier": "coral_block", - "state": { - "coral_color": "pink", - "dead_bit": true - } + "bedrock_identifier": "dead_brain_coral_block" } }, { @@ -222078,11 +222020,7 @@ "Name": "minecraft:dead_bubble_coral_block" }, "bedrock_state": { - "bedrock_identifier": "coral_block", - "state": { - "coral_color": "purple", - "dead_bit": true - } + "bedrock_identifier": "dead_bubble_coral_block" } }, { @@ -222090,11 +222028,7 @@ "Name": "minecraft:dead_fire_coral_block" }, "bedrock_state": { - "bedrock_identifier": "coral_block", - "state": { - "coral_color": "red", - "dead_bit": true - } + "bedrock_identifier": "dead_fire_coral_block" } }, { @@ -222102,11 +222036,7 @@ "Name": "minecraft:dead_horn_coral_block" }, "bedrock_state": { - "bedrock_identifier": "coral_block", - "state": { - "coral_color": "yellow", - "dead_bit": true - } + "bedrock_identifier": "dead_horn_coral_block" } }, { @@ -222114,11 +222044,7 @@ "Name": "minecraft:tube_coral_block" }, "bedrock_state": { - "bedrock_identifier": "coral_block", - "state": { - "coral_color": "blue", - "dead_bit": false - } + "bedrock_identifier": "tube_coral_block" } }, { @@ -222126,11 +222052,7 @@ "Name": "minecraft:brain_coral_block" }, "bedrock_state": { - "bedrock_identifier": "coral_block", - "state": { - "coral_color": "pink", - "dead_bit": false - } + "bedrock_identifier": "brain_coral_block" } }, { @@ -222138,11 +222060,7 @@ "Name": "minecraft:bubble_coral_block" }, "bedrock_state": { - "bedrock_identifier": "coral_block", - "state": { - "coral_color": "purple", - "dead_bit": false - } + "bedrock_identifier": "bubble_coral_block" } }, { @@ -222150,11 +222068,7 @@ "Name": "minecraft:fire_coral_block" }, "bedrock_state": { - "bedrock_identifier": "coral_block", - "state": { - "coral_color": "red", - "dead_bit": false - } + "bedrock_identifier": "fire_coral_block" } }, { @@ -222162,11 +222076,7 @@ "Name": "minecraft:horn_coral_block" }, "bedrock_state": { - "bedrock_identifier": "coral_block", - "state": { - "coral_color": "yellow", - "dead_bit": false - } + "bedrock_identifier": "horn_coral_block" } }, { @@ -511180,6 +511090,7 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { + "ominous": true, "trial_spawner_state": 0 } } @@ -511195,6 +511106,7 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { + "ominous": true, "trial_spawner_state": 1 } } @@ -511210,6 +511122,7 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { + "ominous": true, "trial_spawner_state": 2 } } @@ -511225,6 +511138,7 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { + "ominous": true, "trial_spawner_state": 3 } } @@ -511240,6 +511154,7 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { + "ominous": true, "trial_spawner_state": 4 } } @@ -511255,6 +511170,7 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { + "ominous": true, "trial_spawner_state": 5 } } @@ -511270,6 +511186,7 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { + "ominous": false, "trial_spawner_state": 0 } } @@ -511285,6 +511202,7 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { + "ominous": false, "trial_spawner_state": 1 } } @@ -511300,6 +511218,7 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { + "ominous": false, "trial_spawner_state": 2 } } @@ -511315,6 +511234,7 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { + "ominous": false, "trial_spawner_state": 3 } } @@ -511330,6 +511250,7 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { + "ominous": false, "trial_spawner_state": 4 } } @@ -511345,6 +511266,7 @@ "bedrock_state": { "bedrock_identifier": "trial_spawner", "state": { + "ominous": false, "trial_spawner_state": 5 } } @@ -511361,6 +511283,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "inactive", "minecraft:cardinal_direction": "north" } @@ -511378,6 +511301,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "active", "minecraft:cardinal_direction": "north" } @@ -511395,6 +511319,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "unlocking", "minecraft:cardinal_direction": "north" } @@ -511412,6 +511337,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "ejecting", "minecraft:cardinal_direction": "north" } @@ -511429,6 +511355,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "inactive", "minecraft:cardinal_direction": "north" } @@ -511446,6 +511373,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "active", "minecraft:cardinal_direction": "north" } @@ -511463,6 +511391,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "unlocking", "minecraft:cardinal_direction": "north" } @@ -511480,6 +511409,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "ejecting", "minecraft:cardinal_direction": "north" } @@ -511497,6 +511427,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "inactive", "minecraft:cardinal_direction": "south" } @@ -511514,6 +511445,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "active", "minecraft:cardinal_direction": "south" } @@ -511531,6 +511463,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "unlocking", "minecraft:cardinal_direction": "south" } @@ -511548,6 +511481,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "ejecting", "minecraft:cardinal_direction": "south" } @@ -511565,6 +511499,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "inactive", "minecraft:cardinal_direction": "south" } @@ -511582,6 +511517,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "active", "minecraft:cardinal_direction": "south" } @@ -511599,6 +511535,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "unlocking", "minecraft:cardinal_direction": "south" } @@ -511616,6 +511553,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "ejecting", "minecraft:cardinal_direction": "south" } @@ -511633,6 +511571,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "inactive", "minecraft:cardinal_direction": "west" } @@ -511650,6 +511589,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "active", "minecraft:cardinal_direction": "west" } @@ -511667,6 +511607,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "unlocking", "minecraft:cardinal_direction": "west" } @@ -511684,6 +511625,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "ejecting", "minecraft:cardinal_direction": "west" } @@ -511701,6 +511643,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "inactive", "minecraft:cardinal_direction": "west" } @@ -511718,6 +511661,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "active", "minecraft:cardinal_direction": "west" } @@ -511735,6 +511679,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "unlocking", "minecraft:cardinal_direction": "west" } @@ -511752,6 +511697,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "ejecting", "minecraft:cardinal_direction": "west" } @@ -511769,6 +511715,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "inactive", "minecraft:cardinal_direction": "east" } @@ -511786,6 +511733,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "active", "minecraft:cardinal_direction": "east" } @@ -511803,6 +511751,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "unlocking", "minecraft:cardinal_direction": "east" } @@ -511820,6 +511769,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": true, "vault_state": "ejecting", "minecraft:cardinal_direction": "east" } @@ -511837,6 +511787,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "inactive", "minecraft:cardinal_direction": "east" } @@ -511854,6 +511805,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "active", "minecraft:cardinal_direction": "east" } @@ -511871,6 +511823,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "unlocking", "minecraft:cardinal_direction": "east" } @@ -511888,6 +511841,7 @@ "bedrock_state": { "bedrock_identifier": "vault", "state": { + "ominous": false, "vault_state": "ejecting", "minecraft:cardinal_direction": "east" } From e68f928e3845eb425b2c4b0e10a1bbb186ab041b Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Tue, 18 Jun 2024 14:59:42 +0800 Subject: [PATCH 020/136] feat: use OtherChunkAccessibleContext directly --- .../terra/allay/delegate/AllayProtoWorld.java | 41 ++++--------------- .../generator/AllayGeneratorWrapper.java | 3 +- 2 files changed, 10 insertions(+), 34 deletions(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java index a0e93b972..d7a8b2b7b 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java @@ -4,6 +4,7 @@ import com.dfsek.terra.api.util.vector.Vector3; import org.allaymc.api.world.chunk.ChunkAccessible; import org.allaymc.api.world.chunk.UnsafeChunk; +import org.allaymc.api.world.generator.context.OtherChunkAccessibleContext; import org.allaymc.terra.allay.Mapping; import com.dfsek.terra.api.block.entity.BlockEntity; @@ -21,16 +22,16 @@ import com.dfsek.terra.api.world.chunk.generation.ProtoWorld; * * @author daoge_cmd */ -public record AllayProtoWorld(AllayServerWorld allayServerWorld, UnsafeChunk centerChunk, ChunkAccessible chunkAccessor) implements ProtoWorld { +public record AllayProtoWorld(AllayServerWorld allayServerWorld, OtherChunkAccessibleContext context) implements ProtoWorld { @Override public int centerChunkX() { - return centerChunk.getX(); + return context.getCurrentChunk().getX(); } @Override public int centerChunkZ() { - return centerChunk.getZ(); + return context.getCurrentChunk().getZ(); } @Override @@ -40,16 +41,13 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, UnsafeChunk cen @Override public void setBlockState(int x, int y, int z, BlockState data, boolean physics) { - if(isInCurrentChunk(x, y, z)) { - centerChunk.setBlockState(x & 15, y, z & 15, ((AllayBlockState)data).allayBlockState()); - } else { - setBlockStateInOtherChunk(x, y, z, data, physics); - } + context.setBlockState(x & 15, y, z & 15, ((AllayBlockState)data).allayBlockState()); } - private void setBlockStateInOtherChunk(int x, int y, int z, BlockState data, boolean physics) { - var chunk = chunkAccessor.getChunk(x >> 4, z >> 4); - chunk.setBlockState(x & 15, y, z & 15, ((AllayBlockState)data).allayBlockState()); + @Override + public BlockState getBlockState(int x, int y, int z) { + var blockState = context.getBlockState(x & 15, y, z & 15); + return new AllayBlockState(blockState, Mapping.blockStateBeToJe(blockState)); } @Override @@ -57,20 +55,6 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, UnsafeChunk cen return new AllayFakeEntity(Vector3.of(x, y, z), allayServerWorld); } - @Override - public BlockState getBlockState(int x, int y, int z) { - if(isInCurrentChunk(x, y, z)) { - var blockState = centerChunk.getBlockState(x & 15, y, z & 15); - return new AllayBlockState(blockState, Mapping.blockStateBeToJe(blockState)); - } - return getBlockStateInOtherChunk(x, y, z); - } - - private BlockState getBlockStateInOtherChunk(int x, int y, int z) { - var chunk = chunkAccessor.getChunk(x >> 4, z >> 4); - return new AllayBlockState(chunk.getBlockState(x & 15, y, z & 15), Mapping.blockStateBeToJe(chunk.getBlockState(x & 15, y, z & 15))); - } - @Override public BlockEntity getBlockEntity(int x, int y, int z) { // TODO @@ -111,11 +95,4 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, UnsafeChunk cen public AllayServerWorld getHandle() { return allayServerWorld; } - - private boolean isInCurrentChunk(int x, int y, int z) { - return - x >= centerChunkX() * 16 && x < centerChunkX() * 16 + 16 && - z >= centerChunkZ() * 16 && z < centerChunkZ() * 16 + 16 && - y >= getMinHeight() && y <= getMaxHeight(); - } } \ No newline at end of file diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java index 56d273f50..a9c979658 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java @@ -125,8 +125,7 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { @Override public Boolean apply(PopulateContext context) { - var chunk = context.getCurrentChunk(); - var tmp = new AllayProtoWorld(allayServerWorld, chunk, context.getChunkAccessor()); + var tmp = new AllayProtoWorld(allayServerWorld, context); try { for (var generationStage : configPack.getStages()) { generationStage.populate(tmp); From 2d0e4a83b0934f4d8775ae2f2935f5bd5300d41c Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Wed, 19 Jun 2024 01:05:37 +0800 Subject: [PATCH 021/136] fix: OtherChunkAccessibleContext.get/setBlockState() should use level pos instead of chunk local pos --- .../org/allaymc/terra/allay/delegate/AllayProtoWorld.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java index d7a8b2b7b..ab503db3b 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java @@ -41,12 +41,12 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, OtherChunkAcces @Override public void setBlockState(int x, int y, int z, BlockState data, boolean physics) { - context.setBlockState(x & 15, y, z & 15, ((AllayBlockState)data).allayBlockState()); + context.setBlockState(x, y, z, ((AllayBlockState)data).allayBlockState()); } @Override public BlockState getBlockState(int x, int y, int z) { - var blockState = context.getBlockState(x & 15, y, z & 15); + var blockState = context.getBlockState(x, y, z); return new AllayBlockState(blockState, Mapping.blockStateBeToJe(blockState)); } From 5fa7007d45649f39c83db2145fec3bce3138fc1a Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Wed, 19 Jun 2024 17:19:17 +0800 Subject: [PATCH 022/136] fix: fix a typo --- .../allaymc/terra/allay/generator/AllayGeneratorWrapper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java index a9c979658..aeb01ae51 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java @@ -33,7 +33,7 @@ import com.dfsek.terra.api.world.info.WorldProperties; public class AllayGeneratorWrapper implements GeneratorWrapper { protected static final String DEFAULT_PACK_NAME = "overworld"; protected static final String OPTION_PACK_NAME = "pack"; - protected static final String OPTION_SEED = "pack"; + protected static final String OPTION_SEED = "seed"; @Getter protected final BiomeProvider biomeProvider; From d490324bfc502501eefdfc548b906379ab5eb6cd Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Wed, 19 Jun 2024 18:09:31 +0800 Subject: [PATCH 023/136] feat: support waterlogged --- .../org/allaymc/terra/allay/JeBlockState.java | 4 +++ .../terra/allay/delegate/AllayBlockState.java | 27 ++++++++++++++++--- .../terra/allay/delegate/AllayChunk.java | 14 +++++++++- .../terra/allay/delegate/AllayProtoChunk.java | 14 +++++++++- .../terra/allay/delegate/AllayProtoWorld.java | 15 ++++++++--- .../allay/delegate/AllayServerWorld.java | 15 +++++++++-- .../allay/src/main/resources/plugin.json | 2 +- 7 files changed, 79 insertions(+), 12 deletions(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java index 3db3e051b..f417e3d9c 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java @@ -37,6 +37,10 @@ public class JeBlockState { completeMissingProperties(); } + public String getPropertyValue(String key) { + return properties.get(key); + } + private void completeMissingProperties() { var defaultProperties = Mapping.getJeBlockDefaultProperties(identifier); if(properties.size() == defaultProperties.size()) { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java index 79791d554..cf85f3445 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java @@ -7,19 +7,32 @@ import org.allaymc.terra.allay.JeBlockState; import com.dfsek.terra.api.block.BlockType; import com.dfsek.terra.api.block.state.properties.Property; +import java.util.Objects; + /** * Terra Project 2024/6/16 * * @author daoge_cmd */ -public record AllayBlockState(BlockState allayBlockState, JeBlockState jeBlockState) implements com.dfsek.terra.api.block.state.BlockState { +public final class AllayBlockState implements com.dfsek.terra.api.block.state.BlockState { - public static final AllayBlockState AIR = new AllayBlockState(BlockTypes.AIR_TYPE.getDefaultState(), JeBlockState.fromString("minecraft:air")); + public static final AllayBlockState AIR = new AllayBlockState(BlockTypes.AIR_TYPE.getDefaultState(), + JeBlockState.fromString("minecraft:air")); + private final BlockState allayBlockState; + private final JeBlockState jeBlockState; + private final boolean containsWater; + + public AllayBlockState(BlockState allayBlockState, JeBlockState jeBlockState) { + this.allayBlockState = allayBlockState; + this.jeBlockState = jeBlockState; + this.containsWater = "true".equals(jeBlockState.getPropertyValue("waterlogged")); + } @Override - public boolean matches(com.dfsek.terra.api.block.state.BlockState other) { - return ((AllayBlockState) other).allayBlockState == this.allayBlockState; + public boolean matches(com.dfsek.terra.api.block.state.BlockState o) { + var other = ((AllayBlockState) o); + return other.allayBlockState == this.allayBlockState && other.containsWater == this.containsWater; } @Override @@ -59,4 +72,10 @@ public record AllayBlockState(BlockState allayBlockState, JeBlockState jeBlockSt public BlockState getHandle() { return allayBlockState; } + + public BlockState allayBlockState() { return allayBlockState; } + + public boolean containsWater() { return containsWater; } + + public JeBlockState jeBlockState() { return jeBlockState; } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java index 113b3a5ae..19531b3f9 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java @@ -1,5 +1,7 @@ package org.allaymc.terra.allay.delegate; +import org.allaymc.api.block.type.BlockTypes; +import org.allaymc.api.data.VanillaBlockPropertyTypes; import org.allaymc.api.world.chunk.Chunk; import org.allaymc.terra.allay.Mapping; import org.jetbrains.annotations.NotNull; @@ -14,9 +16,19 @@ import com.dfsek.terra.api.world.ServerWorld; * @author daoge_cmd */ public record AllayChunk(ServerWorld world, Chunk allayChunk) implements com.dfsek.terra.api.world.chunk.Chunk { + + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER_TYPE.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + @Override public void setBlock(int x, int y, int z, BlockState data, boolean physics) { - allayChunk.setBlockState(x, y, z, ((AllayBlockState)data).allayBlockState()); + var allayBlockState = (AllayBlockState)data; + var containsWater = allayBlockState.containsWater(); + if (!containsWater) { + var oldBlock = allayChunk.getBlockState(x, y, z); + containsWater = oldBlock == BlockTypes.WATER_TYPE; + } + allayChunk.setBlockState(x, y, z, allayBlockState.allayBlockState()); + if (containsWater) allayChunk.setBlockState(x, y, z, WATER, 1); } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java index 7cc24b963..e1dea4936 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java @@ -1,5 +1,7 @@ package org.allaymc.terra.allay.delegate; +import org.allaymc.api.block.type.BlockTypes; +import org.allaymc.api.data.VanillaBlockPropertyTypes; import org.allaymc.api.world.chunk.UnsafeChunk; import org.allaymc.terra.allay.Mapping; import org.jetbrains.annotations.NotNull; @@ -14,6 +16,9 @@ import com.dfsek.terra.api.world.chunk.generation.ProtoChunk; * @author daoge_cmd */ public record AllayProtoChunk(UnsafeChunk allayChunk) implements ProtoChunk { + + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER_TYPE.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + @Override public int getMaxHeight() { return allayChunk.getDimensionInfo().maxHeight(); @@ -21,7 +26,14 @@ public record AllayProtoChunk(UnsafeChunk allayChunk) implements ProtoChunk { @Override public void setBlock(int x, int y, int z, @NotNull BlockState blockState) { - allayChunk.setBlockState(x, y, z, ((AllayBlockState)blockState).allayBlockState()); + var allayBlockState = (AllayBlockState)blockState; + var containsWater = allayBlockState.containsWater(); + if (!containsWater) { + var oldBlock = allayChunk.getBlockState(x, y, z); + containsWater = oldBlock == BlockTypes.WATER_TYPE; + } + allayChunk.setBlockState(x, y, z, allayBlockState.allayBlockState()); + if (containsWater) allayChunk.setBlockState(x, y, z, WATER, 1); } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java index ab503db3b..cab6a59cc 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java @@ -2,8 +2,8 @@ package org.allaymc.terra.allay.delegate; import com.dfsek.terra.api.util.vector.Vector3; -import org.allaymc.api.world.chunk.ChunkAccessible; -import org.allaymc.api.world.chunk.UnsafeChunk; +import org.allaymc.api.block.type.BlockTypes; +import org.allaymc.api.data.VanillaBlockPropertyTypes; import org.allaymc.api.world.generator.context.OtherChunkAccessibleContext; import org.allaymc.terra.allay.Mapping; @@ -24,6 +24,8 @@ import com.dfsek.terra.api.world.chunk.generation.ProtoWorld; */ public record AllayProtoWorld(AllayServerWorld allayServerWorld, OtherChunkAccessibleContext context) implements ProtoWorld { + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER_TYPE.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + @Override public int centerChunkX() { return context.getCurrentChunk().getX(); @@ -41,7 +43,14 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, OtherChunkAcces @Override public void setBlockState(int x, int y, int z, BlockState data, boolean physics) { - context.setBlockState(x, y, z, ((AllayBlockState)data).allayBlockState()); + var allayBlockState = (AllayBlockState)data; + var containsWater = allayBlockState.containsWater(); + if (!containsWater) { + var oldBlock = context.getBlockState(x, y, z).getBlockType(); + containsWater = oldBlock == BlockTypes.WATER_TYPE; + } + context.setBlockState(x, y, z, allayBlockState.allayBlockState()); + if (containsWater) context.setBlockState(x, y, z, WATER, 1); } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java index ca9425454..e2af55292 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java @@ -2,6 +2,8 @@ package org.allaymc.terra.allay.delegate; import com.dfsek.terra.api.util.vector.Vector3; +import org.allaymc.api.block.type.BlockTypes; +import org.allaymc.api.data.VanillaBlockPropertyTypes; import org.allaymc.api.world.Dimension; import org.allaymc.terra.allay.Mapping; import org.allaymc.terra.allay.generator.AllayGeneratorWrapper; @@ -23,6 +25,9 @@ import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; * @author daoge_cmd */ public record AllayServerWorld(AllayGeneratorWrapper allayGeneratorWrapper, Dimension allayDimension) implements ServerWorld { + + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER_TYPE.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + @Override public Chunk getChunkAt(int x, int z) { return new AllayChunk(this, allayDimension.getChunkService().getChunk(x ,z)); @@ -30,8 +35,14 @@ public record AllayServerWorld(AllayGeneratorWrapper allayGeneratorWrapper, Dime @Override public void setBlockState(int x, int y, int z, BlockState data, boolean physics) { - var allayBlockState = ((AllayBlockState)data).allayBlockState(); - allayDimension.setBlockState(x, y, z, allayBlockState); + var allayBlockState = (AllayBlockState)data; + var containsWater = allayBlockState.containsWater(); + if (!containsWater) { + var oldBlock = allayDimension.getBlockState(x, y, z).getBlockType(); + containsWater = oldBlock == BlockTypes.WATER_TYPE; + } + allayDimension.setBlockState(x, y, z, allayBlockState.allayBlockState()); + if (containsWater) allayDimension.setBlockState(x, y, z, WATER, 1); } @Override diff --git a/platforms/allay/src/main/resources/plugin.json b/platforms/allay/src/main/resources/plugin.json index 56cbf7dd8..b82f10b9e 100644 --- a/platforms/allay/src/main/resources/plugin.json +++ b/platforms/allay/src/main/resources/plugin.json @@ -4,6 +4,6 @@ "authors": [ "daoge_cmd" ], - "version": "1.0.0", + "version": "1.0.1", "order": "START_UP" } \ No newline at end of file From cd767a648c354fa1e19de4e3edba21d045941551 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Wed, 17 Jul 2024 01:27:56 +0800 Subject: [PATCH 024/136] feat: fetch allay's changes --- .../src/main/java/org/allaymc/terra/allay/Mapping.java | 6 +++--- .../org/allaymc/terra/allay/delegate/AllayBlockState.java | 4 ++-- .../org/allaymc/terra/allay/delegate/AllayBlockType.java | 2 +- .../java/org/allaymc/terra/allay/delegate/AllayChunk.java | 4 ++-- .../org/allaymc/terra/allay/delegate/AllayItemType.java | 2 +- .../org/allaymc/terra/allay/delegate/AllayProtoChunk.java | 4 ++-- .../org/allaymc/terra/allay/delegate/AllayProtoWorld.java | 4 ++-- .../org/allaymc/terra/allay/delegate/AllayServerWorld.java | 4 ++-- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java index 8f8504d16..91c866a08 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -31,7 +31,7 @@ public final class Mapping { private static final Map BLOCK_STATE_JE_HASH_TO_BE = new Int2ObjectOpenHashMap<>(); private static final Map ITEM_ID_JE_TO_BE = new Object2ObjectOpenHashMap<>(); private static final Map BIOME_ID_JE_TO_BE = new Object2IntOpenHashMap<>(); - private static final BlockState BE_AIR_STATE = BlockTypes.AIR_TYPE.getDefaultState(); + private static final BlockState BE_AIR_STATE = BlockTypes.AIR.getDefaultState(); public static void init() { if(!initBlockStateMapping()) error(); @@ -129,7 +129,7 @@ public final class Mapping { var propertyType = blockType.getProperties().get(propertyName); if (propertyType == null) { log.warn("Unknown property type: {}", propertyName); - return BlockTypes.AIR_TYPE.getDefaultState(); + return BlockTypes.AIR.getDefaultState(); } try { propertyValues[index] = propertyType.tryCreateValue(entry.getValue()); @@ -155,7 +155,7 @@ public final class Mapping { var result = BLOCK_STATE_JE_HASH_TO_BE.get(jeBlockState.getHash()); if(result == null) { log.warn("Failed to find be block state for {}", jeBlockState); - return BlockTypes.AIR_TYPE.getDefaultState(); + return BlockTypes.AIR.getDefaultState(); } return result; } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java index cf85f3445..7c887523e 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java @@ -17,7 +17,7 @@ import java.util.Objects; */ public final class AllayBlockState implements com.dfsek.terra.api.block.state.BlockState { - public static final AllayBlockState AIR = new AllayBlockState(BlockTypes.AIR_TYPE.getDefaultState(), + public static final AllayBlockState AIR = new AllayBlockState(BlockTypes.AIR.getDefaultState(), JeBlockState.fromString("minecraft:air")); private final BlockState allayBlockState; private final JeBlockState jeBlockState; @@ -65,7 +65,7 @@ public final class AllayBlockState implements com.dfsek.terra.api.block.state.Bl @Override public boolean isAir() { - return allayBlockState.getBlockType() == BlockTypes.AIR_TYPE; + return allayBlockState.getBlockType() == BlockTypes.AIR; } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java index 1cbf4d284..802a0fcbd 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java @@ -25,7 +25,7 @@ public record AllayBlockType(BlockType allayBlockType) implements com.dfsek.t @Override public boolean isWater() { - return allayBlockType == BlockTypes.WATER_TYPE || allayBlockType == BlockTypes.FLOWING_WATER_TYPE; + return allayBlockType == BlockTypes.WATER || allayBlockType == BlockTypes.FLOWING_WATER; } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java index 19531b3f9..0d02e593e 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java @@ -17,7 +17,7 @@ import com.dfsek.terra.api.world.ServerWorld; */ public record AllayChunk(ServerWorld world, Chunk allayChunk) implements com.dfsek.terra.api.world.chunk.Chunk { - private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER_TYPE.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); @Override public void setBlock(int x, int y, int z, BlockState data, boolean physics) { @@ -25,7 +25,7 @@ public record AllayChunk(ServerWorld world, Chunk allayChunk) implements com.dfs var containsWater = allayBlockState.containsWater(); if (!containsWater) { var oldBlock = allayChunk.getBlockState(x, y, z); - containsWater = oldBlock == BlockTypes.WATER_TYPE; + containsWater = oldBlock == BlockTypes.WATER; } allayChunk.setBlockState(x, y, z, allayBlockState.allayBlockState()); if (containsWater) allayChunk.setBlockState(x, y, z, WATER, 1); diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java index d5735e430..d8685f8c2 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java @@ -17,7 +17,7 @@ public final class AllayItemType implements Item { public AllayItemType(ItemType allayItemType) { this.allayItemType = allayItemType; // TODO: 感觉不太优雅,应该有更好的办法 - this.maxDurability = allayItemType.createItemStack().getItemAttributes().maxDamage(); + this.maxDurability = allayItemType.createItemStack().getItemData().maxDamage(); } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java index e1dea4936..169937f8d 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java @@ -17,7 +17,7 @@ import com.dfsek.terra.api.world.chunk.generation.ProtoChunk; */ public record AllayProtoChunk(UnsafeChunk allayChunk) implements ProtoChunk { - private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER_TYPE.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); @Override public int getMaxHeight() { @@ -30,7 +30,7 @@ public record AllayProtoChunk(UnsafeChunk allayChunk) implements ProtoChunk { var containsWater = allayBlockState.containsWater(); if (!containsWater) { var oldBlock = allayChunk.getBlockState(x, y, z); - containsWater = oldBlock == BlockTypes.WATER_TYPE; + containsWater = oldBlock == BlockTypes.WATER; } allayChunk.setBlockState(x, y, z, allayBlockState.allayBlockState()); if (containsWater) allayChunk.setBlockState(x, y, z, WATER, 1); diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java index cab6a59cc..a69742b69 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java @@ -24,7 +24,7 @@ import com.dfsek.terra.api.world.chunk.generation.ProtoWorld; */ public record AllayProtoWorld(AllayServerWorld allayServerWorld, OtherChunkAccessibleContext context) implements ProtoWorld { - private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER_TYPE.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); @Override public int centerChunkX() { @@ -47,7 +47,7 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, OtherChunkAcces var containsWater = allayBlockState.containsWater(); if (!containsWater) { var oldBlock = context.getBlockState(x, y, z).getBlockType(); - containsWater = oldBlock == BlockTypes.WATER_TYPE; + containsWater = oldBlock == BlockTypes.WATER; } context.setBlockState(x, y, z, allayBlockState.allayBlockState()); if (containsWater) context.setBlockState(x, y, z, WATER, 1); diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java index e2af55292..2608debf7 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java @@ -26,7 +26,7 @@ import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; */ public record AllayServerWorld(AllayGeneratorWrapper allayGeneratorWrapper, Dimension allayDimension) implements ServerWorld { - private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER_TYPE.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); @Override public Chunk getChunkAt(int x, int z) { @@ -39,7 +39,7 @@ public record AllayServerWorld(AllayGeneratorWrapper allayGeneratorWrapper, Dime var containsWater = allayBlockState.containsWater(); if (!containsWater) { var oldBlock = allayDimension.getBlockState(x, y, z).getBlockType(); - containsWater = oldBlock == BlockTypes.WATER_TYPE; + containsWater = oldBlock == BlockTypes.WATER; } allayDimension.setBlockState(x, y, z, allayBlockState.allayBlockState()); if (containsWater) allayDimension.setBlockState(x, y, z, WATER, 1); From 2443fff0a4697eb14e0b3e2db54e27a6f8f57b09 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Wed, 17 Jul 2024 01:32:01 +0800 Subject: [PATCH 025/136] feat: fetch allay's changes --- .../java/org/allaymc/terra/allay/delegate/AllayEnchantment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java index ef8e0b400..4dea9cf31 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java @@ -20,7 +20,7 @@ public record AllayEnchantment(EnchantmentType allayEnchantment) implements Ench @Override public boolean conflictsWith(Enchantment other) { - return ((AllayEnchantment)other).allayEnchantment.checkCompatibility(allayEnchantment); + return ((AllayEnchantment)other).allayEnchantment.checkIncompatible(allayEnchantment); } @Override From 4acd0de6fac85b1477723d31d5b0aeb1ce7fa350 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Wed, 24 Jul 2024 20:30:24 +0800 Subject: [PATCH 026/136] feat: fetch allay's changes --- platforms/allay/build.gradle.kts | 1 + .../src/main/java/org/allaymc/terra/allay/Mapping.java | 4 ++-- .../java/org/allaymc/terra/allay/TerraAllayPlugin.java | 4 ++-- .../allaymc/terra/allay/delegate/AllayFakeEntity.java | 2 +- .../org/allaymc/terra/allay/handle/AllayItemHandle.java | 9 ++++----- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/platforms/allay/build.gradle.kts b/platforms/allay/build.gradle.kts index ba31e8617..bb7b8c29e 100644 --- a/platforms/allay/build.gradle.kts +++ b/platforms/allay/build.gradle.kts @@ -1,5 +1,6 @@ repositories { mavenLocal() + maven("https://www.jitpack.io/") } dependencies { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java index 91c866a08..6bcfdd47b 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -6,9 +6,9 @@ import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap; import it.unimi.dsi.fastutil.objects.Object2ObjectOpenHashMap; import lombok.extern.slf4j.Slf4j; import org.allaymc.api.block.property.type.BlockPropertyType.BlockPropertyValue; -import org.allaymc.api.block.registry.BlockTypeRegistry; import org.allaymc.api.block.type.BlockState; import org.allaymc.api.block.type.BlockTypes; +import org.allaymc.api.registry.Registries; import org.allaymc.api.utils.Identifier; import org.allaymc.api.utils.JSONUtils; @@ -117,7 +117,7 @@ public final class Mapping { private static BlockState createBeBlockState(Map data) { var identifier = new Identifier((String) data.get("bedrock_identifier")); // 方块类型 - var blockType = BlockTypeRegistry.getRegistry().get(identifier); + var blockType = Registries.BLOCKS.get(identifier); // 方块属性 Map state = (Map) data.get("state"); if (state == null) return blockType.getDefaultState(); diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java index bc65c3d6e..23672d6e9 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java @@ -2,7 +2,7 @@ package org.allaymc.terra.allay; import lombok.extern.slf4j.Slf4j; import org.allaymc.api.plugin.Plugin; -import org.allaymc.api.world.generator.WorldGeneratorFactory; +import org.allaymc.api.registry.Registries; import org.allaymc.terra.allay.generator.AllayGeneratorWrapper; import com.dfsek.terra.api.event.events.platform.PlatformInitializationEvent; @@ -36,7 +36,7 @@ public class TerraAllayPlugin extends Plugin { PLATFORM.getEventManager().callEvent(new PlatformInitializationEvent()); log.info("Registering generator..."); - WorldGeneratorFactory.getFactory().register("TERRA", preset -> new AllayGeneratorWrapper(preset).getAllayWorldGenerator()); + Registries.WORLD_GENERATOR_FACTORIES.register("TERRA", preset -> new AllayGeneratorWrapper(preset).getAllayWorldGenerator()); log.info("Terra started"); } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java index 6a4c24643..05140b34e 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java @@ -43,6 +43,6 @@ public final class AllayFakeEntity implements Entity { @Override public Object getHandle() { - return null; + return fakeHandle; } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java index f0ceb0c3b..beb7d4e40 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java @@ -1,7 +1,6 @@ package org.allaymc.terra.allay.handle; -import org.allaymc.api.item.enchantment.EnchantmentRegistry; -import org.allaymc.api.item.registry.ItemTypeRegistry; +import org.allaymc.api.registry.Registries; import org.allaymc.api.utils.Identifier; import org.allaymc.terra.allay.Mapping; import org.allaymc.terra.allay.delegate.AllayEnchantment; @@ -23,17 +22,17 @@ import com.dfsek.terra.api.inventory.item.Enchantment; public class AllayItemHandle implements ItemHandle { @Override public Item createItem(String data) { - return new AllayItemType(ItemTypeRegistry.getRegistry().get(new Identifier(Mapping.itemIdJeToBe(data)))); + return new AllayItemType(Registries.ITEMS.get(new Identifier(Mapping.itemIdJeToBe(data)))); } @Override public Enchantment getEnchantment(String id) { - return new AllayEnchantment(EnchantmentRegistry.getRegistry().getByK2(new Identifier(Mapping.enchantmentIdJeToBe(id)))); + return new AllayEnchantment(Registries.ENCHANTMENTS.getByK2(new Identifier(Mapping.enchantmentIdJeToBe(id)))); } @Override public Set getEnchantments() { - return EnchantmentRegistry.getRegistry().getContent().m1().values().stream() + return Registries.ENCHANTMENTS.getContent().m1().values().stream() .map(AllayEnchantment::new) .collect(Collectors.toSet()); } From a34946cecefe29ec8c1130d4241882d2457a5527 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 18 Aug 2024 19:39:23 +0800 Subject: [PATCH 027/136] feat: return air if block type not found --- .../allay/src/main/java/org/allaymc/terra/allay/Mapping.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java index 6bcfdd47b..f50545787 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -118,6 +118,10 @@ public final class Mapping { var identifier = new Identifier((String) data.get("bedrock_identifier")); // 方块类型 var blockType = Registries.BLOCKS.get(identifier); + if (blockType == null) { + log.error("Cannot find bedrock block type: {}", identifier); + return BE_AIR_STATE; + } // 方块属性 Map state = (Map) data.get("state"); if (state == null) return blockType.getDefaultState(); From 28c689d16fbb74838bd25fb2f2d45cd5ee31eacc Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 19 Aug 2024 01:36:32 +0800 Subject: [PATCH 028/136] feat: fetch allay's changes --- .../allaymc/terra/allay/generator/AllayGeneratorWrapper.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java index aeb01ae51..c7d4ae57d 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java @@ -91,7 +91,7 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { public class AllayNoiser implements Noiser { @Override - public Boolean apply(NoiseContext context) { + public boolean apply(NoiseContext context) { var chunk = context.getCurrentChunk(); var chunkX = chunk.getX(); var chunkZ = chunk.getZ(); @@ -124,7 +124,7 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { public class AllayPopulator implements Populator { @Override - public Boolean apply(PopulateContext context) { + public boolean apply(PopulateContext context) { var tmp = new AllayProtoWorld(allayServerWorld, context); try { for (var generationStage : configPack.getStages()) { From c97f25cb958e59c28376bb62aa816bdcca785b59 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Fri, 23 Aug 2024 20:18:45 +0800 Subject: [PATCH 029/136] feat: support 1.21.20 and newer versions --- .../java/org/allaymc/terra/allay/Mapping.java | 133 +++++++++++++----- .../terra/allay/delegate/AllayItemStack.java | 2 +- .../terra/allay/delegate/AllayItemType.java | 8 +- .../terra/allay/handle/AllayItemHandle.java | 2 +- ...on => je_block_default_states_1_20_4.json} | 0 ...son => biomes_JE_1_20_4_TO_BE_1_20_0.json} | 0 ...son => blocks_JE_1_20_4_TO_BE_1_20_0.json} | 0 ...json => items_JE_1_20_4_TO_BE_1_20_0.json} | 0 8 files changed, 104 insertions(+), 41 deletions(-) rename platforms/allay/src/main/resources/{je_block_default_states.json => je_block_default_states_1_20_4.json} (100%) rename platforms/allay/src/main/resources/mapping/{biomes.json => biomes_JE_1_20_4_TO_BE_1_20_0.json} (100%) rename platforms/allay/src/main/resources/mapping/{blocks.json => blocks_JE_1_20_4_TO_BE_1_20_0.json} (100%) rename platforms/allay/src/main/resources/mapping/{items.json => items_JE_1_20_4_TO_BE_1_20_0.json} (100%) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java index f50545787..fc22750ea 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -5,12 +5,14 @@ import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap; import it.unimi.dsi.fastutil.objects.Object2ObjectOpenHashMap; import lombok.extern.slf4j.Slf4j; -import org.allaymc.api.block.property.type.BlockPropertyType.BlockPropertyValue; import org.allaymc.api.block.type.BlockState; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.registry.Registries; -import org.allaymc.api.utils.Identifier; +import org.allaymc.api.utils.HashUtils; import org.allaymc.api.utils.JSONUtils; +import org.allaymc.updater.block.BlockStateUpdaters; +import org.allaymc.updater.item.ItemStateUpdaters; +import org.cloudburstmc.nbt.NbtMap; import java.io.IOException; import java.util.List; @@ -25,17 +27,17 @@ import java.util.TreeMap; */ @Slf4j public final class Mapping { - private static final Map> JE_BLOCK_DEFAULT_PROPERTIES = new Object2ObjectOpenHashMap<>(); private static final Map BLOCK_STATE_BE_TO_JE = new Object2ObjectOpenHashMap<>(); private static final Map BLOCK_STATE_JE_HASH_TO_BE = new Int2ObjectOpenHashMap<>(); private static final Map ITEM_ID_JE_TO_BE = new Object2ObjectOpenHashMap<>(); + private static final Map JE_ITEM_ID_TO_BE_ITEM_META = new Object2IntOpenHashMap<>(); private static final Map BIOME_ID_JE_TO_BE = new Object2IntOpenHashMap<>(); private static final BlockState BE_AIR_STATE = BlockTypes.AIR.getDefaultState(); public static void init() { if(!initBlockStateMapping()) error(); - if (!initJeBlockDefaultProperties()) error(); + if(!initJeBlockDefaultProperties()) error(); if(!initItemMapping()) error(); if(!initBiomeMapping()) error(); } @@ -45,9 +47,9 @@ public final class Mapping { } private static boolean initBiomeMapping() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/biomes.json")) { + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/biomes_JE_1_20_4_TO_BE_1_20_0.json")) { if (stream == null) { - log.error("biomes.json not found"); + log.error("biomes mapping not found"); return false; } var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); @@ -62,14 +64,22 @@ public final class Mapping { } private static boolean initItemMapping() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/items.json")) { + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/items_JE_1_20_4_TO_BE_1_20_0.json")) { if (stream == null) { - log.error("items.json not found"); + log.error("items mapping not found"); return false; } var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); for(var mapping : mappings) { - ITEM_ID_JE_TO_BE.put(mapping.getKey(), (String) mapping.getValue().get("bedrock_identifier")); + var updatedNBT = ItemStateUpdaters.updateItemState( + NbtMap.builder() + .putString("Name", (String) mapping.getValue().get("bedrock_identifier")) + .putInt("Damage", ((Double) mapping.getValue().get("bedrock_data")).intValue()) + .build(), + ItemStateUpdaters.LATEST_VERSION + ); + ITEM_ID_JE_TO_BE.put(mapping.getKey(), updatedNBT.getString("Name")); + JE_ITEM_ID_TO_BE_ITEM_META.put(mapping.getKey(), updatedNBT.getInt("Damage")); } } catch(IOException e) { log.error("Failed to load mapping", e); @@ -78,9 +88,9 @@ public final class Mapping { } private static boolean initBlockStateMapping() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/blocks.json")) { + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/blocks_JE_1_20_4_TO_BE_1_20_0.json")) { if (stream == null) { - log.error("blocks.json not found"); + log.error("blocks mapping not found"); return false; } var mappings = (List>>) JSONUtils.from(stream, new TypeToken>(){}).get("mappings"); @@ -97,7 +107,7 @@ public final class Mapping { } private static boolean initJeBlockDefaultProperties() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("je_block_default_states.json")) { + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("je_block_default_states_1_20_4.json")) { if (stream == null) { log.error("je_block_default_states.json not found"); return false; @@ -114,35 +124,82 @@ public final class Mapping { return true; } +// private static BlockState createBeBlockState(Map data) { +// var identifier = new Identifier((String) data.get("bedrock_identifier")); +// // 方块类型 +// var blockType = Registries.BLOCKS.get(identifier); +// if (blockType == null) { +// log.error("Cannot find bedrock block type: {}", identifier); +// return BE_AIR_STATE; +// } +// // 方块属性 +// Map state = (Map) data.get("state"); +// if (state == null) return blockType.getDefaultState(); +// var propertyValues = new BlockPropertyValue[state.size()]; +// int index = -1; +// for(var entry : state.entrySet()) { +// index++; +// var propertyName = entry.getKey(); +// var propertyType = blockType.getProperties().get(propertyName); +// if (propertyType == null) { +// log.warn("Unknown property type: {}", propertyName); +// return BlockTypes.AIR.getDefaultState(); +// } +// try { +// propertyValues[index] = propertyType.tryCreateValue(entry.getValue()); +// } catch (IllegalArgumentException e) { +// log.warn("Failed to create property value for {}: {}", propertyName, entry.getValue()); +// return BE_AIR_STATE; +// } +// } +// return blockType.ofState(propertyValues); +// } + private static BlockState createBeBlockState(Map data) { - var identifier = new Identifier((String) data.get("bedrock_identifier")); - // 方块类型 - var blockType = Registries.BLOCKS.get(identifier); - if (blockType == null) { - log.error("Cannot find bedrock block type: {}", identifier); + var builder = NbtMap.builder(); + builder.putString("name", "minecraft:" + data.get("bedrock_identifier")); + + Map state = (Map) data.get("state"); + builder.put("states", state != null ? NbtMap.fromMap(convertValueType(state)) : NbtMap.EMPTY); + + // The mapping file may not be the latest, so we use block state updater + // to update the old block state to the latest version + var updatedNBT = BlockStateUpdaters.updateBlockState(builder.build(), BlockStateUpdaters.LATEST_VERSION); + var blockStateTag = NbtMap.builder() + // To calculate the hash of the block state + // 'name' field must be in the first place + .putString("name", updatedNBT.getString("name")) + // map implementation inside updatedNBT.getCompound("states") should be TreeMap + // see convertValueType() method + .putCompound("states", updatedNBT.getCompound("states")) + .build(); + var blockStateHash = HashUtils.fnv1a_32_nbt(blockStateTag); + var blockState = Registries.BLOCK_STATE_PALETTE.get(blockStateHash); + if (blockState == null) { + log.error("Cannot find bedrock block state: {}", blockStateTag); return BE_AIR_STATE; } - // 方块属性 - Map state = (Map) data.get("state"); - if (state == null) return blockType.getDefaultState(); - var propertyValues = new BlockPropertyValue[state.size()]; - int index = -1; - for(var entry : state.entrySet()) { - index++; - var propertyName = entry.getKey(); - var propertyType = blockType.getProperties().get(propertyName); - if (propertyType == null) { - log.warn("Unknown property type: {}", propertyName); - return BlockTypes.AIR.getDefaultState(); - } - try { - propertyValues[index] = propertyType.tryCreateValue(entry.getValue()); - } catch (IllegalArgumentException e) { - log.warn("Failed to create property value for {}: {}", propertyName, entry.getValue()); - return BE_AIR_STATE; + return blockState; + } + + private static TreeMap convertValueType(Map data) { + // Use tree map to make sure that the order of property is correct + // Otherwise the block state hash calculated may not be correct! + var result = new TreeMap(); + for (var entry : data.entrySet()) { + var value = entry.getValue(); + if (value instanceof Boolean) { + // BooleanProperty + result.put(entry.getKey(), (Boolean) value ? (byte) 1 : (byte) 0); + } else if (value instanceof Number number) { + // IntProperty + result.put(entry.getKey(), number.intValue()); + } else { + // EnumProperty + result.put(entry.getKey(), value); } } - return blockType.ofState(propertyValues); + return result; } private static JeBlockState createJeBlockState(Map data) { @@ -168,6 +225,10 @@ public final class Mapping { return ITEM_ID_JE_TO_BE.get(jeItemId); } + public static int jeItemIdToBeItemMeta(String jeItemId) { + return JE_ITEM_ID_TO_BE_ITEM_META.get(jeItemId); + } + // Enchantment identifiers are same in both versions public static String enchantmentIdBeToJe(String beEnchantmentId) { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java index 9eb4484be..cbddcd96b 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java @@ -24,7 +24,7 @@ public record AllayItemStack(ItemStack allayItemStack) implements com.dfsek.terr @Override public Item getType() { - return new AllayItemType(allayItemStack.getItemType()); + return new AllayItemType(allayItemStack.getItemType(), allayItemStack.getMeta()); } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java index d8685f8c2..0f379f8ea 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java @@ -12,17 +12,19 @@ import com.dfsek.terra.api.inventory.Item; */ public final class AllayItemType implements Item { private final ItemType allayItemType; + private final int beData; private final double maxDurability; - public AllayItemType(ItemType allayItemType) { + public AllayItemType(ItemType allayItemType, int beData) { this.allayItemType = allayItemType; - // TODO: 感觉不太优雅,应该有更好的办法 + this.beData = beData; + // TODO: Better way to get max damage this.maxDurability = allayItemType.createItemStack().getItemData().maxDamage(); } @Override public com.dfsek.terra.api.inventory.ItemStack newItemStack(int amount) { - return new AllayItemStack(allayItemType.createItemStack(amount)); + return new AllayItemStack(allayItemType.createItemStack(amount, beData)); } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java index beb7d4e40..9101b1bc4 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java @@ -22,7 +22,7 @@ import com.dfsek.terra.api.inventory.item.Enchantment; public class AllayItemHandle implements ItemHandle { @Override public Item createItem(String data) { - return new AllayItemType(Registries.ITEMS.get(new Identifier(Mapping.itemIdJeToBe(data)))); + return new AllayItemType(Registries.ITEMS.get(new Identifier(Mapping.itemIdJeToBe(data))), Mapping.jeItemIdToBeItemMeta(data)); } @Override diff --git a/platforms/allay/src/main/resources/je_block_default_states.json b/platforms/allay/src/main/resources/je_block_default_states_1_20_4.json similarity index 100% rename from platforms/allay/src/main/resources/je_block_default_states.json rename to platforms/allay/src/main/resources/je_block_default_states_1_20_4.json diff --git a/platforms/allay/src/main/resources/mapping/biomes.json b/platforms/allay/src/main/resources/mapping/biomes_JE_1_20_4_TO_BE_1_20_0.json similarity index 100% rename from platforms/allay/src/main/resources/mapping/biomes.json rename to platforms/allay/src/main/resources/mapping/biomes_JE_1_20_4_TO_BE_1_20_0.json diff --git a/platforms/allay/src/main/resources/mapping/blocks.json b/platforms/allay/src/main/resources/mapping/blocks_JE_1_20_4_TO_BE_1_20_0.json similarity index 100% rename from platforms/allay/src/main/resources/mapping/blocks.json rename to platforms/allay/src/main/resources/mapping/blocks_JE_1_20_4_TO_BE_1_20_0.json diff --git a/platforms/allay/src/main/resources/mapping/items.json b/platforms/allay/src/main/resources/mapping/items_JE_1_20_4_TO_BE_1_20_0.json similarity index 100% rename from platforms/allay/src/main/resources/mapping/items.json rename to platforms/allay/src/main/resources/mapping/items_JE_1_20_4_TO_BE_1_20_0.json From 2e709dace608eadafc5e968bab797692069056a7 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Tue, 27 Aug 2024 19:15:42 +0800 Subject: [PATCH 030/136] feat: sync allay --- .../src/main/java/org/allaymc/terra/allay/AllayPlatform.java | 4 ++-- .../java/org/allaymc/terra/allay/delegate/AllayChunk.java | 4 ++-- .../org/allaymc/terra/allay/delegate/AllayProtoChunk.java | 4 ++-- .../org/allaymc/terra/allay/delegate/AllayProtoWorld.java | 4 ++-- .../org/allaymc/terra/allay/delegate/AllayServerWorld.java | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java index 4cad7a112..52cf7e97b 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java @@ -3,8 +3,8 @@ package org.allaymc.terra.allay; import com.dfsek.tectonic.api.TypeRegistry; import com.dfsek.tectonic.api.depth.DepthTracker; import com.dfsek.tectonic.api.exception.LoadException; -import org.allaymc.api.data.VanillaBiomeId; import org.allaymc.api.server.Server; +import org.allaymc.api.world.biome.BiomeId; import org.allaymc.terra.allay.delegate.AllayBiome; import org.allaymc.terra.allay.handle.AllayItemHandle; import org.allaymc.terra.allay.handle.AllayWorldHandle; @@ -73,6 +73,6 @@ public class AllayPlatform extends AbstractPlatform { protected AllayBiome parseBiome(String id, DepthTracker depthTracker) throws LoadException { if(!id.startsWith("minecraft:")) throw new LoadException("Invalid biome identifier " + id, depthTracker); - return new AllayBiome(VanillaBiomeId.fromId(Mapping.biomeIdJeToBe(id))); + return new AllayBiome(BiomeId.fromId(Mapping.biomeIdJeToBe(id))); } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java index 0d02e593e..d11b19919 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java @@ -1,7 +1,7 @@ package org.allaymc.terra.allay.delegate; +import org.allaymc.api.block.property.type.BlockPropertyTypes; import org.allaymc.api.block.type.BlockTypes; -import org.allaymc.api.data.VanillaBlockPropertyTypes; import org.allaymc.api.world.chunk.Chunk; import org.allaymc.terra.allay.Mapping; import org.jetbrains.annotations.NotNull; @@ -17,7 +17,7 @@ import com.dfsek.terra.api.world.ServerWorld; */ public record AllayChunk(ServerWorld world, Chunk allayChunk) implements com.dfsek.terra.api.world.chunk.Chunk { - private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(BlockPropertyTypes.LIQUID_DEPTH.createValue(15)); @Override public void setBlock(int x, int y, int z, BlockState data, boolean physics) { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java index 169937f8d..88bb91689 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java @@ -1,7 +1,7 @@ package org.allaymc.terra.allay.delegate; +import org.allaymc.api.block.property.type.BlockPropertyTypes; import org.allaymc.api.block.type.BlockTypes; -import org.allaymc.api.data.VanillaBlockPropertyTypes; import org.allaymc.api.world.chunk.UnsafeChunk; import org.allaymc.terra.allay.Mapping; import org.jetbrains.annotations.NotNull; @@ -17,7 +17,7 @@ import com.dfsek.terra.api.world.chunk.generation.ProtoChunk; */ public record AllayProtoChunk(UnsafeChunk allayChunk) implements ProtoChunk { - private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(BlockPropertyTypes.LIQUID_DEPTH.createValue(15)); @Override public int getMaxHeight() { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java index a69742b69..f41ae5592 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java @@ -2,8 +2,8 @@ package org.allaymc.terra.allay.delegate; import com.dfsek.terra.api.util.vector.Vector3; +import org.allaymc.api.block.property.type.BlockPropertyTypes; import org.allaymc.api.block.type.BlockTypes; -import org.allaymc.api.data.VanillaBlockPropertyTypes; import org.allaymc.api.world.generator.context.OtherChunkAccessibleContext; import org.allaymc.terra.allay.Mapping; @@ -24,7 +24,7 @@ import com.dfsek.terra.api.world.chunk.generation.ProtoWorld; */ public record AllayProtoWorld(AllayServerWorld allayServerWorld, OtherChunkAccessibleContext context) implements ProtoWorld { - private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(BlockPropertyTypes.LIQUID_DEPTH.createValue(15)); @Override public int centerChunkX() { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java index 2608debf7..c5e5bc5a6 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java @@ -2,8 +2,8 @@ package org.allaymc.terra.allay.delegate; import com.dfsek.terra.api.util.vector.Vector3; +import org.allaymc.api.block.property.type.BlockPropertyTypes; import org.allaymc.api.block.type.BlockTypes; -import org.allaymc.api.data.VanillaBlockPropertyTypes; import org.allaymc.api.world.Dimension; import org.allaymc.terra.allay.Mapping; import org.allaymc.terra.allay.generator.AllayGeneratorWrapper; @@ -26,7 +26,7 @@ import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; */ public record AllayServerWorld(AllayGeneratorWrapper allayGeneratorWrapper, Dimension allayDimension) implements ServerWorld { - private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(VanillaBlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(BlockPropertyTypes.LIQUID_DEPTH.createValue(15)); @Override public Chunk getChunkAt(int x, int z) { From 5f70ecb9431538a40592c811995812c0343c394c Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Wed, 4 Sep 2024 23:55:24 +0800 Subject: [PATCH 031/136] feat: use jitpack --- platforms/allay/build.gradle.kts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/platforms/allay/build.gradle.kts b/platforms/allay/build.gradle.kts index bb7b8c29e..9dcecda5b 100644 --- a/platforms/allay/build.gradle.kts +++ b/platforms/allay/build.gradle.kts @@ -1,5 +1,4 @@ repositories { - mavenLocal() maven("https://www.jitpack.io/") } @@ -8,7 +7,7 @@ dependencies { implementation("com.google.code.gson", "gson", "2.11.0") compileOnly("org.projectlombok:lombok:1.18.32") - compileOnly("org.allaymc", "Allay-API", "1.0.0") + compileOnly(group = "com.github.AllayMC.Allay", name = "Allay-API", version = "master-SNAPSHOT") annotationProcessor("org.projectlombok:lombok:1.18.32") } \ No newline at end of file From bbf0915bc91fb16c6a8aea92ea6389dc655dfbaf Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sat, 7 Sep 2024 19:47:19 +0800 Subject: [PATCH 032/136] build: use org.allaymc.allay as the group id --- platforms/allay/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/allay/build.gradle.kts b/platforms/allay/build.gradle.kts index 9dcecda5b..d6e68cfc4 100644 --- a/platforms/allay/build.gradle.kts +++ b/platforms/allay/build.gradle.kts @@ -7,7 +7,7 @@ dependencies { implementation("com.google.code.gson", "gson", "2.11.0") compileOnly("org.projectlombok:lombok:1.18.32") - compileOnly(group = "com.github.AllayMC.Allay", name = "Allay-API", version = "master-SNAPSHOT") + compileOnly(group = "org.allaymc.allay", name = "Allay-API", version = "master-SNAPSHOT") annotationProcessor("org.projectlombok:lombok:1.18.32") } \ No newline at end of file From 732a894945411da53b21a3cfea855d60d4bf502c Mon Sep 17 00:00:00 2001 From: daoge <3523206925@qq.com> Date: Tue, 17 Sep 2024 18:59:53 +0800 Subject: [PATCH 033/136] ci: trigger github action --- .../src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java | 1 - 1 file changed, 1 deletion(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java index 23672d6e9..aac1428a8 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java @@ -7,7 +7,6 @@ import org.allaymc.terra.allay.generator.AllayGeneratorWrapper; import com.dfsek.terra.api.event.events.platform.PlatformInitializationEvent; - /** * Terra Project 2024/6/15 * From 1acdad5c6b124f0398fedab7d27f7d9c80327812 Mon Sep 17 00:00:00 2001 From: daoge <3523206925@qq.com> Date: Tue, 17 Sep 2024 19:01:41 +0800 Subject: [PATCH 034/136] ci: run github action when pushing --- .github/workflows/gradle-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index 3e40fe7be..825cc2c7e 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -7,7 +7,7 @@ name: Gradle Build -on: [ pull_request ] +on: [ push, pull_request ] jobs: build: @@ -44,4 +44,4 @@ jobs: # Properties are passed as -Pname=value properties: | kotlin.js.compiler=ir - kotlin.parallel.tasks.in.project=true \ No newline at end of file + kotlin.parallel.tasks.in.project=true From f73eadda7643b49e47f23cf6641bda30518b6b0f Mon Sep 17 00:00:00 2001 From: daoge <3523206925@qq.com> Date: Tue, 17 Sep 2024 19:18:08 +0800 Subject: [PATCH 035/136] ci: use jdk 21 --- .github/workflows/gradle-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index 825cc2c7e..d27ca12b3 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -18,10 +18,10 @@ jobs: steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - - name: Set up JDK 17 + - name: Set up JDK 21 uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 with: - java-version: '17' + java-version: '21' distribution: 'temurin' server-id: github # Value of the distributionManagement/repository/id field of the pom.xml settings-path: ${{ github.workspace }} # location for the settings.xml file From b432a4e01d78b1c87afbf18b38ec0e674979bac6 Mon Sep 17 00:00:00 2001 From: daoge <3523206925@qq.com> Date: Tue, 17 Sep 2024 19:39:01 +0800 Subject: [PATCH 036/136] build: use jdk21 for allay platform --- platforms/allay/build.gradle.kts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/platforms/allay/build.gradle.kts b/platforms/allay/build.gradle.kts index d6e68cfc4..b84d38c80 100644 --- a/platforms/allay/build.gradle.kts +++ b/platforms/allay/build.gradle.kts @@ -10,4 +10,10 @@ dependencies { compileOnly(group = "org.allaymc.allay", name = "Allay-API", version = "master-SNAPSHOT") annotationProcessor("org.projectlombok:lombok:1.18.32") -} \ No newline at end of file +} + +tasks { + compileJava { + options.release.set(21) + } +} From 2c476a25d9efba9eb1ef02ab9ff223b36449f009 Mon Sep 17 00:00:00 2001 From: daoge <3523206925@qq.com> Date: Tue, 17 Sep 2024 19:45:26 +0800 Subject: [PATCH 037/136] build: fix build for allay platform --- platforms/allay/build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/platforms/allay/build.gradle.kts b/platforms/allay/build.gradle.kts index b84d38c80..a7cfe9491 100644 --- a/platforms/allay/build.gradle.kts +++ b/platforms/allay/build.gradle.kts @@ -1,4 +1,7 @@ repositories { + maven("https://repo.opencollab.dev/maven-releases/") + maven("https://repo.opencollab.dev/maven-snapshots/") + maven("https://storehouse.okaeri.eu/repository/maven-public/") maven("https://www.jitpack.io/") } From 328ebf5aa96b47614024807e973d648885128ca0 Mon Sep 17 00:00:00 2001 From: daoge <3523206925@qq.com> Date: Tue, 17 Sep 2024 19:55:20 +0800 Subject: [PATCH 038/136] build: disable cli platform --- platforms/cli/{build.gradle.kts => build.gradle.kts.disabled} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename platforms/cli/{build.gradle.kts => build.gradle.kts.disabled} (100%) diff --git a/platforms/cli/build.gradle.kts b/platforms/cli/build.gradle.kts.disabled similarity index 100% rename from platforms/cli/build.gradle.kts rename to platforms/cli/build.gradle.kts.disabled From c6df3c302b0be78d56f6eaf931a87b82fe2d57f8 Mon Sep 17 00:00:00 2001 From: daoge <3523206925@qq.com> Date: Tue, 17 Sep 2024 19:56:03 +0800 Subject: [PATCH 039/136] build: disable fabric platform --- platforms/fabric/{build.gradle.kts => build.gradle.kts.disabled} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename platforms/fabric/{build.gradle.kts => build.gradle.kts.disabled} (100%) diff --git a/platforms/fabric/build.gradle.kts b/platforms/fabric/build.gradle.kts.disabled similarity index 100% rename from platforms/fabric/build.gradle.kts rename to platforms/fabric/build.gradle.kts.disabled From ca4461ba2a27aeb135dec34ebf9582c468fb7d64 Mon Sep 17 00:00:00 2001 From: daoge <3523206925@qq.com> Date: Tue, 17 Sep 2024 19:56:45 +0800 Subject: [PATCH 040/136] build: disable bukkit platform --- platforms/bukkit/{build.gradle.kts => build.gradle.kts.disabled} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename platforms/bukkit/{build.gradle.kts => build.gradle.kts.disabled} (100%) diff --git a/platforms/bukkit/build.gradle.kts b/platforms/bukkit/build.gradle.kts.disabled similarity index 100% rename from platforms/bukkit/build.gradle.kts rename to platforms/bukkit/build.gradle.kts.disabled From 6c8a7da2543af3c95afd8aba60237def527d68c5 Mon Sep 17 00:00:00 2001 From: daoge <3523206925@qq.com> Date: Tue, 17 Sep 2024 19:59:43 +0800 Subject: [PATCH 041/136] build: disable mixin platform --- .../{build.gradle.kts => build.gradle.kts.disabled} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename platforms/mixin-lifecycle/{build.gradle.kts => build.gradle.kts.disabled} (99%) diff --git a/platforms/mixin-lifecycle/build.gradle.kts b/platforms/mixin-lifecycle/build.gradle.kts.disabled similarity index 99% rename from platforms/mixin-lifecycle/build.gradle.kts rename to platforms/mixin-lifecycle/build.gradle.kts.disabled index a4e700412..af8a06256 100644 --- a/platforms/mixin-lifecycle/build.gradle.kts +++ b/platforms/mixin-lifecycle/build.gradle.kts.disabled @@ -42,4 +42,4 @@ tasks { architectury { common("fabric") minecraft = Versions.Mod.minecraft -} \ No newline at end of file +} From 2f2d43e1b8916f9b2f92b50f6d5ed93e4cfcfc3f Mon Sep 17 00:00:00 2001 From: daoge <3523206925@qq.com> Date: Tue, 17 Sep 2024 20:00:42 +0800 Subject: [PATCH 042/136] build: disable mixin platform --- .../mixin-common/{build.gradle.kts => build.gradle.kts.disabled} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename platforms/mixin-common/{build.gradle.kts => build.gradle.kts.disabled} (100%) diff --git a/platforms/mixin-common/build.gradle.kts b/platforms/mixin-common/build.gradle.kts.disabled similarity index 100% rename from platforms/mixin-common/build.gradle.kts rename to platforms/mixin-common/build.gradle.kts.disabled From 18a24562ec9e7b2d26b85315687ebb608e68e0fb Mon Sep 17 00:00:00 2001 From: daoge <3523206925@qq.com> Date: Tue, 17 Sep 2024 20:39:49 +0800 Subject: [PATCH 043/136] ci: upload jar --- .github/workflows/gradle-build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index d27ca12b3..38957700b 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -45,3 +45,10 @@ jobs: properties: | kotlin.js.compiler=ir kotlin.parallel.tasks.in.project=true + # Upload Allay-Server + - name: Upload Terra-Allay + uses: actions/upload-artifact@v4 + if: success() && contains(github.ref_name, 'master') + with: + name: Terra-Allay + path: platforms/allay/build/libs/*.jar From 1f01b99d2953dffb554986681aec10c7882e229d Mon Sep 17 00:00:00 2001 From: daoge <3523206925@qq.com> Date: Tue, 17 Sep 2024 20:40:24 +0800 Subject: [PATCH 044/136] ci: should check allay branch --- .github/workflows/gradle-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index 38957700b..18fa0d7e4 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -48,7 +48,7 @@ jobs: # Upload Allay-Server - name: Upload Terra-Allay uses: actions/upload-artifact@v4 - if: success() && contains(github.ref_name, 'master') + if: success() && contains(github.ref_name, 'allay') with: name: Terra-Allay path: platforms/allay/build/libs/*.jar From ce9fb53df4bcd5ae861f77c18964a7ed4fedddcb Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Tue, 17 Sep 2024 22:28:04 +0800 Subject: [PATCH 045/136] build: disable useless modules --- .../bukkit/common/{build.gradle.kts => build.gradle.kts.disabled} | 0 .../nms/v1_20_R3/{build.gradle.kts => build.gradle.kts.disabled} | 0 platforms/merged/{build.gradle.kts => build.gradle.kts.disabled} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename platforms/bukkit/common/{build.gradle.kts => build.gradle.kts.disabled} (100%) rename platforms/bukkit/nms/v1_20_R3/{build.gradle.kts => build.gradle.kts.disabled} (100%) rename platforms/merged/{build.gradle.kts => build.gradle.kts.disabled} (100%) diff --git a/platforms/bukkit/common/build.gradle.kts b/platforms/bukkit/common/build.gradle.kts.disabled similarity index 100% rename from platforms/bukkit/common/build.gradle.kts rename to platforms/bukkit/common/build.gradle.kts.disabled diff --git a/platforms/bukkit/nms/v1_20_R3/build.gradle.kts b/platforms/bukkit/nms/v1_20_R3/build.gradle.kts.disabled similarity index 100% rename from platforms/bukkit/nms/v1_20_R3/build.gradle.kts rename to platforms/bukkit/nms/v1_20_R3/build.gradle.kts.disabled diff --git a/platforms/merged/build.gradle.kts b/platforms/merged/build.gradle.kts.disabled similarity index 100% rename from platforms/merged/build.gradle.kts rename to platforms/merged/build.gradle.kts.disabled From 76f12e0cb86e6645520db0928e46db677f5688ea Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Wed, 18 Sep 2024 12:59:30 +0800 Subject: [PATCH 046/136] build: prepare for merging --- .github/workflows/gradle-build.yml | 2 +- .../bukkit/{build.gradle.kts.disabled => build.gradle.kts} | 0 .../common/{build.gradle.kts.disabled => build.gradle.kts} | 0 .../v1_20_R3/{build.gradle.kts.disabled => build.gradle.kts} | 0 platforms/cli/{build.gradle.kts.disabled => build.gradle.kts} | 0 .../fabric/{build.gradle.kts.disabled => build.gradle.kts} | 0 .../merged/{build.gradle.kts.disabled => build.gradle.kts} | 0 .../{build.gradle.kts.disabled => build.gradle.kts} | 0 .../{build.gradle.kts.disabled => build.gradle.kts} | 0 9 files changed, 1 insertion(+), 1 deletion(-) rename platforms/bukkit/{build.gradle.kts.disabled => build.gradle.kts} (100%) rename platforms/bukkit/common/{build.gradle.kts.disabled => build.gradle.kts} (100%) rename platforms/bukkit/nms/v1_20_R3/{build.gradle.kts.disabled => build.gradle.kts} (100%) rename platforms/cli/{build.gradle.kts.disabled => build.gradle.kts} (100%) rename platforms/fabric/{build.gradle.kts.disabled => build.gradle.kts} (100%) rename platforms/merged/{build.gradle.kts.disabled => build.gradle.kts} (100%) rename platforms/mixin-common/{build.gradle.kts.disabled => build.gradle.kts} (100%) rename platforms/mixin-lifecycle/{build.gradle.kts.disabled => build.gradle.kts} (100%) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index 18fa0d7e4..746083e5c 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -51,4 +51,4 @@ jobs: if: success() && contains(github.ref_name, 'allay') with: name: Terra-Allay - path: platforms/allay/build/libs/*.jar + path: platforms/allay/build/libs/*-shaded.jar diff --git a/platforms/bukkit/build.gradle.kts.disabled b/platforms/bukkit/build.gradle.kts similarity index 100% rename from platforms/bukkit/build.gradle.kts.disabled rename to platforms/bukkit/build.gradle.kts diff --git a/platforms/bukkit/common/build.gradle.kts.disabled b/platforms/bukkit/common/build.gradle.kts similarity index 100% rename from platforms/bukkit/common/build.gradle.kts.disabled rename to platforms/bukkit/common/build.gradle.kts diff --git a/platforms/bukkit/nms/v1_20_R3/build.gradle.kts.disabled b/platforms/bukkit/nms/v1_20_R3/build.gradle.kts similarity index 100% rename from platforms/bukkit/nms/v1_20_R3/build.gradle.kts.disabled rename to platforms/bukkit/nms/v1_20_R3/build.gradle.kts diff --git a/platforms/cli/build.gradle.kts.disabled b/platforms/cli/build.gradle.kts similarity index 100% rename from platforms/cli/build.gradle.kts.disabled rename to platforms/cli/build.gradle.kts diff --git a/platforms/fabric/build.gradle.kts.disabled b/platforms/fabric/build.gradle.kts similarity index 100% rename from platforms/fabric/build.gradle.kts.disabled rename to platforms/fabric/build.gradle.kts diff --git a/platforms/merged/build.gradle.kts.disabled b/platforms/merged/build.gradle.kts similarity index 100% rename from platforms/merged/build.gradle.kts.disabled rename to platforms/merged/build.gradle.kts diff --git a/platforms/mixin-common/build.gradle.kts.disabled b/platforms/mixin-common/build.gradle.kts similarity index 100% rename from platforms/mixin-common/build.gradle.kts.disabled rename to platforms/mixin-common/build.gradle.kts diff --git a/platforms/mixin-lifecycle/build.gradle.kts.disabled b/platforms/mixin-lifecycle/build.gradle.kts similarity index 100% rename from platforms/mixin-lifecycle/build.gradle.kts.disabled rename to platforms/mixin-lifecycle/build.gradle.kts From 4bad8f702c1b3b3d123d73dbd9023436634a70c9 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Wed, 18 Sep 2024 13:02:16 +0800 Subject: [PATCH 047/136] docs: format javadoc --- .../allaymc/terra/allay/AllayPlatform.java | 2 -- .../org/allaymc/terra/allay/JeBlockState.java | 5 +-- .../java/org/allaymc/terra/allay/Mapping.java | 33 ------------------- .../allaymc/terra/allay/TerraAllayPlugin.java | 2 -- .../terra/allay/delegate/AllayBiome.java | 3 -- .../terra/allay/delegate/AllayBlockState.java | 3 -- .../terra/allay/delegate/AllayBlockType.java | 3 -- .../terra/allay/delegate/AllayChunk.java | 3 -- .../allay/delegate/AllayEnchantment.java | 3 -- .../terra/allay/delegate/AllayFakeEntity.java | 3 -- .../terra/allay/delegate/AllayItemMeta.java | 5 --- .../terra/allay/delegate/AllayItemStack.java | 3 -- .../terra/allay/delegate/AllayItemType.java | 3 -- .../terra/allay/delegate/AllayProtoChunk.java | 3 -- .../terra/allay/delegate/AllayProtoWorld.java | 2 -- .../allay/delegate/AllayServerWorld.java | 3 -- .../generator/AllayGeneratorWrapper.java | 3 -- .../terra/allay/handle/AllayItemHandle.java | 3 -- .../terra/allay/handle/AllayWorldHandle.java | 3 -- 19 files changed, 1 insertion(+), 87 deletions(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java index 52cf7e97b..c69c9488d 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java @@ -20,8 +20,6 @@ import com.dfsek.terra.api.world.biome.PlatformBiome; /** - * Terra Project 2024/6/15 - * * @author daoge_cmd */ public class AllayPlatform extends AbstractPlatform { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java index f417e3d9c..fde2c0469 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java @@ -6,14 +6,12 @@ import java.util.TreeMap; /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ public class JeBlockState { protected final String identifier; protected final TreeMap properties; - protected int hash = Integer.MAX_VALUE; // 懒加载 + protected int hash = Integer.MAX_VALUE; public static JeBlockState fromString(String data) { return new JeBlockState(data); @@ -63,7 +61,6 @@ public class JeBlockState { properties.forEach((k, v) -> builder.append(k).append("=").append(v).append(";")); var str = builder.toString(); if (hash == Integer.MAX_VALUE) { - // 顺便算一下hash hash = HashUtils.fnv1a_32(str.getBytes()); } return str; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java index fc22750ea..56655096f 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -21,8 +21,6 @@ import java.util.TreeMap; /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ @Slf4j @@ -124,37 +122,6 @@ public final class Mapping { return true; } -// private static BlockState createBeBlockState(Map data) { -// var identifier = new Identifier((String) data.get("bedrock_identifier")); -// // 方块类型 -// var blockType = Registries.BLOCKS.get(identifier); -// if (blockType == null) { -// log.error("Cannot find bedrock block type: {}", identifier); -// return BE_AIR_STATE; -// } -// // 方块属性 -// Map state = (Map) data.get("state"); -// if (state == null) return blockType.getDefaultState(); -// var propertyValues = new BlockPropertyValue[state.size()]; -// int index = -1; -// for(var entry : state.entrySet()) { -// index++; -// var propertyName = entry.getKey(); -// var propertyType = blockType.getProperties().get(propertyName); -// if (propertyType == null) { -// log.warn("Unknown property type: {}", propertyName); -// return BlockTypes.AIR.getDefaultState(); -// } -// try { -// propertyValues[index] = propertyType.tryCreateValue(entry.getValue()); -// } catch (IllegalArgumentException e) { -// log.warn("Failed to create property value for {}: {}", propertyName, entry.getValue()); -// return BE_AIR_STATE; -// } -// } -// return blockType.ofState(propertyValues); -// } - private static BlockState createBeBlockState(Map data) { var builder = NbtMap.builder(); builder.putString("name", "minecraft:" + data.get("bedrock_identifier")); diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java index aac1428a8..960bccede 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java @@ -8,8 +8,6 @@ import org.allaymc.terra.allay.generator.AllayGeneratorWrapper; import com.dfsek.terra.api.event.events.platform.PlatformInitializationEvent; /** - * Terra Project 2024/6/15 - * * @author daoge_cmd */ @Slf4j diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java index 71673618a..46cf92695 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java @@ -4,10 +4,7 @@ import org.allaymc.api.world.biome.BiomeType; import com.dfsek.terra.api.world.biome.PlatformBiome; - /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ public record AllayBiome(BiomeType allayBiome) implements PlatformBiome { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java index 7c887523e..25a8c2b77 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java @@ -9,10 +9,7 @@ import com.dfsek.terra.api.block.state.properties.Property; import java.util.Objects; - /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ public final class AllayBlockState implements com.dfsek.terra.api.block.state.BlockState { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java index 802a0fcbd..2ed72858e 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java @@ -6,10 +6,7 @@ import org.allaymc.terra.allay.Mapping; import com.dfsek.terra.api.block.state.BlockState; - /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ public record AllayBlockType(BlockType allayBlockType) implements com.dfsek.terra.api.block.BlockType { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java index d11b19919..5e3a9a0f4 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java @@ -9,10 +9,7 @@ import org.jetbrains.annotations.NotNull; import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.world.ServerWorld; - /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ public record AllayChunk(ServerWorld world, Chunk allayChunk) implements com.dfsek.terra.api.world.chunk.Chunk { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java index 4dea9cf31..4ba4a0220 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java @@ -6,10 +6,7 @@ import org.allaymc.terra.allay.Mapping; import com.dfsek.terra.api.inventory.ItemStack; import com.dfsek.terra.api.inventory.item.Enchantment; - /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ public record AllayEnchantment(EnchantmentType allayEnchantment) implements Enchantment { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java index 05140b34e..c4f65907a 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java @@ -4,10 +4,7 @@ import com.dfsek.terra.api.entity.Entity; import com.dfsek.terra.api.util.vector.Vector3; import com.dfsek.terra.api.world.ServerWorld; - /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ public final class AllayFakeEntity implements Entity { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java index 07620bd60..9b1775e05 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java @@ -8,12 +8,7 @@ import java.util.Map; import com.dfsek.terra.api.inventory.item.Enchantment; import com.dfsek.terra.api.inventory.item.ItemMeta; - /** - * Terra Project 2024/6/16 - * - * 物品元数据。在allay中物品元数据没有单独的类,故直接使用ItemStack代替 - * * @author daoge_cmd */ public record AllayItemMeta(ItemStack allayItemStack) implements ItemMeta { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java index cbddcd96b..2968a9e14 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java @@ -5,10 +5,7 @@ import org.allaymc.api.item.ItemStack; import com.dfsek.terra.api.inventory.Item; import com.dfsek.terra.api.inventory.item.ItemMeta; - /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ public record AllayItemStack(ItemStack allayItemStack) implements com.dfsek.terra.api.inventory.ItemStack{ diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java index 0f379f8ea..c01c4bd55 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java @@ -4,10 +4,7 @@ import org.allaymc.api.item.type.ItemType; import com.dfsek.terra.api.inventory.Item; - /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ public final class AllayItemType implements Item { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java index 88bb91689..61b2818f7 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java @@ -9,10 +9,7 @@ import org.jetbrains.annotations.NotNull; import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.world.chunk.generation.ProtoChunk; - /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ public record AllayProtoChunk(UnsafeChunk allayChunk) implements ProtoChunk { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java index f41ae5592..5a71b590d 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java @@ -18,8 +18,6 @@ import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; import com.dfsek.terra.api.world.chunk.generation.ProtoWorld; /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ public record AllayProtoWorld(AllayServerWorld allayServerWorld, OtherChunkAccessibleContext context) implements ProtoWorld { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java index c5e5bc5a6..59382a4d2 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java @@ -18,10 +18,7 @@ import com.dfsek.terra.api.world.biome.generation.BiomeProvider; import com.dfsek.terra.api.world.chunk.Chunk; import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; - /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ public record AllayServerWorld(AllayGeneratorWrapper allayGeneratorWrapper, Dimension allayDimension) implements ServerWorld { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java index c7d4ae57d..0653ecb75 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java @@ -23,10 +23,7 @@ import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; import com.dfsek.terra.api.world.chunk.generation.util.GeneratorWrapper; import com.dfsek.terra.api.world.info.WorldProperties; - /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ @Slf4j diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java index 9101b1bc4..a08c75e1c 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java @@ -13,10 +13,7 @@ import com.dfsek.terra.api.handle.ItemHandle; import com.dfsek.terra.api.inventory.Item; import com.dfsek.terra.api.inventory.item.Enchantment; - /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ public class AllayItemHandle implements ItemHandle { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java index 6f070e0c1..eea890f5c 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java @@ -9,10 +9,7 @@ import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.entity.EntityType; import com.dfsek.terra.api.handle.WorldHandle; - /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ public class AllayWorldHandle implements WorldHandle { From af2ac64cd4e009916dd207d49dace7aa4843ece9 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Fri, 20 Sep 2024 19:47:49 +0800 Subject: [PATCH 048/136] feat: using the new safe getter api --- .../java/org/allaymc/terra/allay/Mapping.java | 76 ++++++------------- .../terra/allay/delegate/AllayItemStack.java | 2 +- .../terra/allay/delegate/AllayItemType.java | 13 ++-- .../terra/allay/handle/AllayItemHandle.java | 2 +- 4 files changed, 33 insertions(+), 60 deletions(-) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java index 56655096f..822a88aad 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -6,7 +6,10 @@ import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap; import it.unimi.dsi.fastutil.objects.Object2ObjectOpenHashMap; import lombok.extern.slf4j.Slf4j; import org.allaymc.api.block.type.BlockState; +import org.allaymc.api.block.type.BlockStateSafeGetter; import org.allaymc.api.block.type.BlockTypes; +import org.allaymc.api.item.type.ItemType; +import org.allaymc.api.item.type.ItemTypeSafeGetter; import org.allaymc.api.registry.Registries; import org.allaymc.api.utils.HashUtils; import org.allaymc.api.utils.JSONUtils; @@ -28,8 +31,7 @@ public final class Mapping { private static final Map> JE_BLOCK_DEFAULT_PROPERTIES = new Object2ObjectOpenHashMap<>(); private static final Map BLOCK_STATE_BE_TO_JE = new Object2ObjectOpenHashMap<>(); private static final Map BLOCK_STATE_JE_HASH_TO_BE = new Int2ObjectOpenHashMap<>(); - private static final Map ITEM_ID_JE_TO_BE = new Object2ObjectOpenHashMap<>(); - private static final Map JE_ITEM_ID_TO_BE_ITEM_META = new Object2IntOpenHashMap<>(); + private static final Map> ITEM_ID_JE_TO_BE = new Object2ObjectOpenHashMap<>(); private static final Map BIOME_ID_JE_TO_BE = new Object2IntOpenHashMap<>(); private static final BlockState BE_AIR_STATE = BlockTypes.AIR.getDefaultState(); @@ -69,15 +71,12 @@ public final class Mapping { } var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); for(var mapping : mappings) { - var updatedNBT = ItemStateUpdaters.updateItemState( - NbtMap.builder() - .putString("Name", (String) mapping.getValue().get("bedrock_identifier")) - .putInt("Damage", ((Double) mapping.getValue().get("bedrock_data")).intValue()) - .build(), - ItemStateUpdaters.LATEST_VERSION - ); - ITEM_ID_JE_TO_BE.put(mapping.getKey(), updatedNBT.getString("Name")); - JE_ITEM_ID_TO_BE_ITEM_META.put(mapping.getKey(), updatedNBT.getInt("Damage")); + var item = ItemTypeSafeGetter + .name((String) mapping.getValue().get("bedrock_identifier")) + // NOTICE: Should be cast to double + .meta(((Double) mapping.getValue().get("bedrock_data")).intValue()) + .itemType(); + ITEM_ID_JE_TO_BE.put(mapping.getKey(), item); } } catch(IOException e) { log.error("Failed to load mapping", e); @@ -91,6 +90,7 @@ public final class Mapping { log.error("blocks mapping not found"); return false; } + // noinspection unchecked var mappings = (List>>) JSONUtils.from(stream, new TypeToken>(){}).get("mappings"); for(var mapping : mappings) { var jeState = createJeBlockState(mapping.get("java_state")); @@ -123,47 +123,23 @@ public final class Mapping { } private static BlockState createBeBlockState(Map data) { - var builder = NbtMap.builder(); - builder.putString("name", "minecraft:" + data.get("bedrock_identifier")); - - Map state = (Map) data.get("state"); - builder.put("states", state != null ? NbtMap.fromMap(convertValueType(state)) : NbtMap.EMPTY); - - // The mapping file may not be the latest, so we use block state updater - // to update the old block state to the latest version - var updatedNBT = BlockStateUpdaters.updateBlockState(builder.build(), BlockStateUpdaters.LATEST_VERSION); - var blockStateTag = NbtMap.builder() - // To calculate the hash of the block state - // 'name' field must be in the first place - .putString("name", updatedNBT.getString("name")) - // map implementation inside updatedNBT.getCompound("states") should be TreeMap - // see convertValueType() method - .putCompound("states", updatedNBT.getCompound("states")) - .build(); - var blockStateHash = HashUtils.fnv1a_32_nbt(blockStateTag); - var blockState = Registries.BLOCK_STATE_PALETTE.get(blockStateHash); - if (blockState == null) { - log.error("Cannot find bedrock block state: {}", blockStateTag); - return BE_AIR_STATE; + var getter = BlockStateSafeGetter + .name("minecraft:" + data.get("bedrock_identifier")); + if (data.containsKey("state")) { + // noinspection unchecked + convertValueType((Map) data.get("state")).forEach(getter::property); } - return blockState; + return getter.blockState(); } - private static TreeMap convertValueType(Map data) { - // Use tree map to make sure that the order of property is correct - // Otherwise the block state hash calculated may not be correct! + private static Map convertValueType(Map data) { var result = new TreeMap(); for (var entry : data.entrySet()) { - var value = entry.getValue(); - if (value instanceof Boolean) { - // BooleanProperty - result.put(entry.getKey(), (Boolean) value ? (byte) 1 : (byte) 0); - } else if (value instanceof Number number) { - // IntProperty + if (entry.getValue() instanceof Number number) { + // Convert double to int because the number in json is double result.put(entry.getKey(), number.intValue()); } else { - // EnumProperty - result.put(entry.getKey(), value); + result.put(entry.getKey(), entry.getValue()); } } return result; @@ -171,8 +147,8 @@ public final class Mapping { private static JeBlockState createJeBlockState(Map data) { var identifier = (String) data.get("Name"); - var properties = (Map) data.getOrDefault("Properties", Map.of()); - return JeBlockState.create(identifier, new TreeMap<>(properties)); + // noinspection unchecked + return JeBlockState.create(identifier, new TreeMap<>((Map) data.getOrDefault("Properties", Map.of()))); } public static JeBlockState blockStateBeToJe(BlockState beBlockState) { @@ -188,14 +164,10 @@ public final class Mapping { return result; } - public static String itemIdJeToBe(String jeItemId) { + public static ItemType itemIdJeToBe(String jeItemId) { return ITEM_ID_JE_TO_BE.get(jeItemId); } - public static int jeItemIdToBeItemMeta(String jeItemId) { - return JE_ITEM_ID_TO_BE_ITEM_META.get(jeItemId); - } - // Enchantment identifiers are same in both versions public static String enchantmentIdBeToJe(String beEnchantmentId) { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java index 2968a9e14..3d6f6953c 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java @@ -21,7 +21,7 @@ public record AllayItemStack(ItemStack allayItemStack) implements com.dfsek.terr @Override public Item getType() { - return new AllayItemType(allayItemStack.getItemType(), allayItemStack.getMeta()); + return new AllayItemType(allayItemStack.getItemType()); } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java index c01c4bd55..614640631 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java @@ -1,27 +1,28 @@ package org.allaymc.terra.allay.delegate; +import org.allaymc.api.item.data.ItemId; import org.allaymc.api.item.type.ItemType; import com.dfsek.terra.api.inventory.Item; +import org.allaymc.api.registry.Registries; + + /** * @author daoge_cmd */ public final class AllayItemType implements Item { private final ItemType allayItemType; - private final int beData; private final double maxDurability; - public AllayItemType(ItemType allayItemType, int beData) { + public AllayItemType(ItemType allayItemType) { this.allayItemType = allayItemType; - this.beData = beData; - // TODO: Better way to get max damage - this.maxDurability = allayItemType.createItemStack().getItemData().maxDamage(); + this.maxDurability = Registries.ITEM_DATA.get(ItemId.fromIdentifier(allayItemType.getIdentifier())).maxDamage(); } @Override public com.dfsek.terra.api.inventory.ItemStack newItemStack(int amount) { - return new AllayItemStack(allayItemType.createItemStack(amount, beData)); + return new AllayItemStack(allayItemType.createItemStack(amount)); } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java index a08c75e1c..a8981dd20 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java @@ -19,7 +19,7 @@ import com.dfsek.terra.api.inventory.item.Enchantment; public class AllayItemHandle implements ItemHandle { @Override public Item createItem(String data) { - return new AllayItemType(Registries.ITEMS.get(new Identifier(Mapping.itemIdJeToBe(data))), Mapping.jeItemIdToBeItemMeta(data)); + return new AllayItemType(Mapping.itemIdJeToBe(data)); } @Override From 6042f1c03660ff109a94644f3674493bea050513 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sat, 21 Sep 2024 00:57:18 +0800 Subject: [PATCH 049/136] build: update build.gradle.kts --- platforms/allay/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/allay/build.gradle.kts b/platforms/allay/build.gradle.kts index a7cfe9491..26d84269f 100644 --- a/platforms/allay/build.gradle.kts +++ b/platforms/allay/build.gradle.kts @@ -10,7 +10,7 @@ dependencies { implementation("com.google.code.gson", "gson", "2.11.0") compileOnly("org.projectlombok:lombok:1.18.32") - compileOnly(group = "org.allaymc.allay", name = "Allay-API", version = "master-SNAPSHOT") + compileOnly(group = "org.allaymc.allay", name = "api", version = "master-SNAPSHOT") annotationProcessor("org.projectlombok:lombok:1.18.32") } From 158ffba2a58d34ed6e74f5b69655dd61414d6fcb Mon Sep 17 00:00:00 2001 From: Astrash Date: Wed, 9 Oct 2024 20:39:13 +1100 Subject: [PATCH 050/136] Make FractalNoiseFunction impls support derivatives --- .../noise/fractal/FractalNoiseFunction.java | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/FractalNoiseFunction.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/FractalNoiseFunction.java index 6ffdd0528..6428b0b93 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/FractalNoiseFunction.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/FractalNoiseFunction.java @@ -7,11 +7,11 @@ package com.dfsek.terra.addons.noise.samplers.noise.fractal; -import com.dfsek.terra.addons.noise.samplers.noise.NoiseFunction; +import com.dfsek.terra.addons.noise.samplers.noise.DerivativeNoiseFunction; import com.dfsek.terra.api.noise.NoiseSampler; -public abstract class FractalNoiseFunction extends NoiseFunction { +public abstract class FractalNoiseFunction extends DerivativeNoiseFunction { protected final NoiseSampler input; protected double fractalBounding = 1 / 1.75; protected int octaves = 3; @@ -52,4 +52,19 @@ public abstract class FractalNoiseFunction extends NoiseFunction { public void setWeightedStrength(double weightedStrength) { this.weightedStrength = weightedStrength; } + + @Override + public boolean isDifferentiable() { + return false; + } + + @Override + public double[] getNoiseDerivativeRaw(long seed, double x, double y) { + throw new UnsupportedOperationException("Implementation failed to check or set isDifferentiable correctly"); + } + + @Override + public double[] getNoiseDerivativeRaw(long seed, double x, double y, double z) { + throw new UnsupportedOperationException("Implementation failed to check or set isDifferentiable correctly"); + } } From 9f425c615998f378dd2a1128c1718e59e0864a5f Mon Sep 17 00:00:00 2001 From: Astrash Date: Wed, 9 Oct 2024 20:39:45 +1100 Subject: [PATCH 051/136] Add support for derivatives in FBM --- .../noise/fractal/BrownianMotionSampler.java | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java index bc766c731..6c78ce727 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java @@ -7,6 +7,7 @@ package com.dfsek.terra.addons.noise.samplers.noise.fractal; +import com.dfsek.terra.api.noise.DerivativeNoiseSampler; import com.dfsek.terra.api.noise.NoiseSampler; import com.dfsek.terra.api.util.MathUtil; @@ -52,4 +53,59 @@ public class BrownianMotionSampler extends FractalNoiseFunction { return sum; } + + @Override + public boolean isDifferentiable() { + return input instanceof DerivativeNoiseSampler dSampler && dSampler.isDifferentiable(); + } + + @Override + public double[] getNoiseDerivativeRaw(long seed, double x, double y) { + double[] sum = {0, 0, 0}; + double amp = fractalBounding; + + for(int i = 0; i < octaves; i++) { + // This should only be called after `input` is verified as a `DerivativeNoiseSampler` + // so this should be a safe cast + double[] noise = ((DerivativeNoiseSampler) input).noised(seed++, x, y); + sum[0] += noise[0] * amp; + + // Directional derivative of each octave can be subject to the same addition and product + // as per derivative sum and product rules in order to produce the correct final derivative + sum[1] += noise[1] * amp; + sum[2] += noise[2] * amp; + + amp *= MathUtil.lerp(weightedStrength, 1.0, Math.min(noise[0] + 1, 2) * 0.5); + + x *= lacunarity; + y *= lacunarity; + amp *= gain; + } + + return sum; + } + + @Override + public double[] getNoiseDerivativeRaw(long seed, double x, double y, double z) { + double[] sum = {0, 0, 0}; + double amp = fractalBounding; + + for(int i = 0; i < octaves; i++) { + double[] noise = ((DerivativeNoiseSampler) input).noised(seed++, x, y, z); + sum[0] += noise[0] * amp; + + // See comment in 2D version + sum[1] += noise[1] * amp; + sum[2] += noise[2] * amp; + + amp *= MathUtil.lerp(weightedStrength, 1.0, (noise[0] + 1) * 0.5); + + x *= lacunarity; + y *= lacunarity; + z *= lacunarity; + amp *= gain; + } + + return sum; + } } From b4fa63545521487f59cfc24190cadb0022ce8e82 Mon Sep 17 00:00:00 2001 From: Astrash Date: Wed, 9 Oct 2024 20:45:25 +1100 Subject: [PATCH 052/136] Ensure throw with incorrect use of SimplexStyle derivatives This should ensure that in the case an implementation fails to correctly check isDifferentiable then performs a subsequent derivative based sample, an error is thrown, rather than potentially missing a logic bug due to noise of 0 and derivative of 0 being returned which could otherwise be hard to narrow down. --- .../noise/samplers/noise/simplex/SimplexStyleSampler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/SimplexStyleSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/SimplexStyleSampler.java index f9c3f65a7..9b646830b 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/SimplexStyleSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/SimplexStyleSampler.java @@ -116,12 +116,12 @@ public abstract class SimplexStyleSampler extends DerivativeNoiseFunction { @Override public double[] getNoiseDerivativeRaw(long seed, double x, double y) { - return new double[]{ 0, 0, 0 }; + throw new UnsupportedOperationException("Implementation failed to check or set isDifferentiable correctly"); } @Override public double[] getNoiseDerivativeRaw(long seed, double x, double y, double z) { - return new double[]{ 0, 0, 0, 0 }; + throw new UnsupportedOperationException("Implementation failed to check or set isDifferentiable correctly"); } @Override From 4393a16b2fe14b667c93db00b9bf87d97a34cd8a Mon Sep 17 00:00:00 2001 From: Astrash Date: Wed, 9 Oct 2024 20:56:11 +1100 Subject: [PATCH 053/136] Use proper static isDifferentiable method --- .../noise/samplers/noise/fractal/BrownianMotionSampler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java index 6c78ce727..08272db24 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java @@ -56,7 +56,7 @@ public class BrownianMotionSampler extends FractalNoiseFunction { @Override public boolean isDifferentiable() { - return input instanceof DerivativeNoiseSampler dSampler && dSampler.isDifferentiable(); + return DerivativeNoiseSampler.isDifferentiable(input); } @Override From add7803e6522cc1a6c89019570d99383483018f9 Mon Sep 17 00:00:00 2001 From: Astrash Date: Wed, 9 Oct 2024 20:56:37 +1100 Subject: [PATCH 054/136] Simplify isDifferentiable static method impl --- .../com/dfsek/terra/api/noise/DerivativeNoiseSampler.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/common/api/src/main/java/com/dfsek/terra/api/noise/DerivativeNoiseSampler.java b/common/api/src/main/java/com/dfsek/terra/api/noise/DerivativeNoiseSampler.java index f9e40f0ea..07fa70da3 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/noise/DerivativeNoiseSampler.java +++ b/common/api/src/main/java/com/dfsek/terra/api/noise/DerivativeNoiseSampler.java @@ -6,10 +6,7 @@ package com.dfsek.terra.api.noise; public interface DerivativeNoiseSampler extends NoiseSampler { static boolean isDifferentiable(NoiseSampler sampler) { - if(sampler instanceof DerivativeNoiseSampler dSampler) { - return dSampler.isDifferentiable(); - } - return false; + return sampler instanceof DerivativeNoiseSampler dSampler && dSampler.isDifferentiable(); } /** From fbe1c76e26bc21f008689033bb11e609bcac3bd3 Mon Sep 17 00:00:00 2001 From: Astrash Date: Wed, 9 Oct 2024 21:50:08 +1100 Subject: [PATCH 055/136] Forgot to include 4th derivative array index for 3D FBM --- .../noise/samplers/noise/fractal/BrownianMotionSampler.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java index 08272db24..524545514 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java @@ -87,7 +87,7 @@ public class BrownianMotionSampler extends FractalNoiseFunction { @Override public double[] getNoiseDerivativeRaw(long seed, double x, double y, double z) { - double[] sum = {0, 0, 0}; + double[] sum = {0, 0, 0, 0}; double amp = fractalBounding; for(int i = 0; i < octaves; i++) { @@ -97,6 +97,7 @@ public class BrownianMotionSampler extends FractalNoiseFunction { // See comment in 2D version sum[1] += noise[1] * amp; sum[2] += noise[2] * amp; + sum[3] += noise[3] * amp; amp *= MathUtil.lerp(weightedStrength, 1.0, (noise[0] + 1) * 0.5); From 1204b7a8c129f3a989172f29e419a322f7b96a9e Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Wed, 9 Oct 2024 12:37:50 -0600 Subject: [PATCH 056/136] ArithmeticSampler Derivatives --- .../samplers/arithmetic/AdditionSampler.java | 10 ++++++++++ .../arithmetic/BinaryArithmeticSampler.java | 20 ++++++++++++++++++- .../samplers/arithmetic/DivisionSampler.java | 11 ++++++++++ .../noise/samplers/arithmetic/MaxSampler.java | 7 +++++++ .../noise/samplers/arithmetic/MinSampler.java | 7 +++++++ .../arithmetic/MultiplicationSampler.java | 11 ++++++++++ .../arithmetic/SubtractionSampler.java | 10 ++++++++++ 7 files changed, 75 insertions(+), 1 deletion(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/AdditionSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/AdditionSampler.java index c393d314d..f5574868a 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/AdditionSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/AdditionSampler.java @@ -12,4 +12,14 @@ public class AdditionSampler extends BinaryArithmeticSampler { public double operate(double left, double right) { return left + right; } + + @Override + public double[] operated(double[] left, double[] right) { + int dimensions = left.length; + double[] out = new double[dimensions]; + for(int i = 0; i < dimensions; i++) { + out[i] = left[i] + right[i]; + } + return out; + } } diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/BinaryArithmeticSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/BinaryArithmeticSampler.java index 03f3a3794..d9980404e 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/BinaryArithmeticSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/BinaryArithmeticSampler.java @@ -1,9 +1,10 @@ package com.dfsek.terra.addons.noise.samplers.arithmetic; +import com.dfsek.terra.api.noise.DerivativeNoiseSampler; import com.dfsek.terra.api.noise.NoiseSampler; -public abstract class BinaryArithmeticSampler implements NoiseSampler { +public abstract class BinaryArithmeticSampler implements DerivativeNoiseSampler { private final NoiseSampler left; private final NoiseSampler right; @@ -12,6 +13,11 @@ public abstract class BinaryArithmeticSampler implements NoiseSampler { this.right = right; } + @Override + public boolean isDifferentiable() { + return DerivativeNoiseSampler.isDifferentiable(left) && DerivativeNoiseSampler.isDifferentiable(right); + } + @Override public double noise(long seed, double x, double y) { return operate(left.noise(seed, x, y), right.noise(seed, x, y)); @@ -22,5 +28,17 @@ public abstract class BinaryArithmeticSampler implements NoiseSampler { return operate(left.noise(seed, x, y, z), right.noise(seed, x, y, z)); } + @Override + public double[] noised(long seed, double x, double y) { + return operated(((DerivativeNoiseSampler)left).noised(seed, x, y), ((DerivativeNoiseSampler)right).noised(seed, x, y)); + } + + @Override + public double[] noised(long seed, double x, double y, double z) { + return operated(((DerivativeNoiseSampler)left).noised(seed, x, y, z), ((DerivativeNoiseSampler)right).noised(seed, x, y, z)); + } + public abstract double operate(double left, double right); + + public abstract double[] operated(double[] left, double[] right); } diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/DivisionSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/DivisionSampler.java index 09169b613..aea17182a 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/DivisionSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/DivisionSampler.java @@ -12,4 +12,15 @@ public class DivisionSampler extends BinaryArithmeticSampler { public double operate(double left, double right) { return left / right; } + + @Override + public double[] operated(double[] left, double[] right) { + int dimensions = left.length; + double[] out = new double[dimensions]; + out[0] = left[0] / right[0]; + for(int i = 1; i < dimensions; i++) { + out[i] = (left[i] * right[0] - left[0] * right[i]) / (right[0] * right[0]); + } + return out; + } } diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MaxSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MaxSampler.java index e97722614..8c5bf03bd 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MaxSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MaxSampler.java @@ -12,4 +12,11 @@ public class MaxSampler extends BinaryArithmeticSampler { public double operate(double left, double right) { return Math.max(left, right); } + + @Override + public double[] operated(double[] left, double[] right) { + double leftValue = left[0]; + double rightValue = right[0]; + return leftValue > rightValue ? left : right; + } } diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MinSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MinSampler.java index 7fcd42bdc..cbb8217c7 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MinSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MinSampler.java @@ -12,4 +12,11 @@ public class MinSampler extends BinaryArithmeticSampler { public double operate(double left, double right) { return Math.min(left, right); } + + @Override + public double[] operated(double[] left, double[] right) { + double leftValue = left[0]; + double rightValue = right[0]; + return leftValue < rightValue ? left : right; + } } diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MultiplicationSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MultiplicationSampler.java index d9fc46b7e..87ba08bf5 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MultiplicationSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MultiplicationSampler.java @@ -12,4 +12,15 @@ public class MultiplicationSampler extends BinaryArithmeticSampler { public double operate(double left, double right) { return left * right; } + + @Override + public double[] operated(double[] left, double[] right) { + int dimensions = left.length; + double[] out = new double[dimensions]; + out[0] = left[0] * right[0]; + for(int i = 1; i < dimensions; i++) { + out[i] = left[i] * right[0] + left[0] * right[i]; + } + return out; + } } diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/SubtractionSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/SubtractionSampler.java index 0b7f0b816..7ee7efad1 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/SubtractionSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/SubtractionSampler.java @@ -12,4 +12,14 @@ public class SubtractionSampler extends BinaryArithmeticSampler { public double operate(double left, double right) { return left - right; } + + @Override + public double[] operated(double[] left, double[] right) { + int dimensions = left.length; + double[] out = new double[dimensions]; + for(int i = 0; i < dimensions; i++) { + out[i] = left[i] - right[i]; + } + return out; + } } From 6c7974c3027e6b3c82d4cdb3e1e04a671063c82a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zo=C3=AB=20Gidiere?= Date: Fri, 5 Jan 2024 14:57:36 -0700 Subject: [PATCH 057/136] Implement linear map normalizer Updated astrash commit --- .../dfsek/terra/addons/noise/NoiseAddon.java | 1 + .../LinearMapNormalizerTemplate.java | 27 ++++++++++++++++++ .../noise/normalizer/LinearMapNormalizer.java | 28 +++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearMapNormalizerTemplate.java create mode 100644 common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/LinearMapNormalizer.java diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java index 3fd52950c..1391b7606 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java @@ -101,6 +101,7 @@ public class NoiseAddon implements AddonInitializer { .applyLoader(DerivativeNoiseSampler.class, DerivativeNoiseSamplerTemplate::new); noiseRegistry.register(addon.key("LINEAR"), LinearNormalizerTemplate::new); + noiseRegistry.register(addon.key("LINEAR_MAP"), LinearMapNormalizerTemplate::new); noiseRegistry.register(addon.key("NORMAL"), NormalNormalizerTemplate::new); noiseRegistry.register(addon.key("CLAMP"), ClampNormalizerTemplate::new); noiseRegistry.register(addon.key("PROBABILITY"), ProbabilityNormalizerTemplate::new); diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearMapNormalizerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearMapNormalizerTemplate.java new file mode 100644 index 000000000..56a50ad54 --- /dev/null +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearMapNormalizerTemplate.java @@ -0,0 +1,27 @@ +package com.dfsek.terra.addons.noise.config.templates.normalizer; + +import com.dfsek.tectonic.api.config.template.annotations.Value; + +import com.dfsek.terra.addons.noise.normalizer.LinearMapNormalizer; +import com.dfsek.terra.api.noise.NoiseSampler; + + +public class LinearMapNormalizerTemplate extends NormalizerTemplate { + + @Value("from.a") + private double aFrom; + + @Value("from.b") + private double bFrom; + + @Value("to.a") + private double aTo; + + @Value("to.b") + private double bTo; + + @Override + public NoiseSampler get() { + return new LinearMapNormalizer(function, aFrom, aTo, bFrom, bTo); + } +} diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/LinearMapNormalizer.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/LinearMapNormalizer.java new file mode 100644 index 000000000..d124ef8de --- /dev/null +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/LinearMapNormalizer.java @@ -0,0 +1,28 @@ +package com.dfsek.terra.addons.noise.normalizer; + +import com.dfsek.terra.api.noise.NoiseSampler; + + +public class LinearMapNormalizer extends Normalizer { + + private final double aFrom; + + private final double aTo; + + private final double bFrom; + + private final double bTo; + + public LinearMapNormalizer(NoiseSampler sampler, double aFrom, double aTo, double bFrom, double bTo) { + super(sampler); + this.aFrom = aFrom; + this.aTo = aTo; + this.bFrom = bFrom; + this.bTo = bTo; + } + + @Override + public double normalize(double in) { + return (in - aFrom) * (aTo - bTo) / (aFrom - bFrom) + aTo; + } +} From 14732328cd81e49245d967bb8763613e5d6fe978 Mon Sep 17 00:00:00 2001 From: Astrash Date: Tue, 23 Aug 2022 10:35:00 +1000 Subject: [PATCH 058/136] Add default 'from' values for linear map template --- .../templates/normalizer/LinearMapNormalizerTemplate.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearMapNormalizerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearMapNormalizerTemplate.java index 56a50ad54..8a073641c 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearMapNormalizerTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearMapNormalizerTemplate.java @@ -1,5 +1,6 @@ package com.dfsek.terra.addons.noise.config.templates.normalizer; +import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; import com.dfsek.terra.addons.noise.normalizer.LinearMapNormalizer; @@ -9,10 +10,12 @@ import com.dfsek.terra.api.noise.NoiseSampler; public class LinearMapNormalizerTemplate extends NormalizerTemplate { @Value("from.a") - private double aFrom; + @Default + private double aFrom = -1; @Value("from.b") - private double bFrom; + @Default + private double bFrom = 1; @Value("to.a") private double aTo; From 1a5ab6b50507ef229e0c91c84282c3b8d9952a8a Mon Sep 17 00:00:00 2001 From: Astrash Date: Tue, 23 Aug 2022 11:06:32 +1000 Subject: [PATCH 059/136] Add meta annotations --- .../normalizer/LinearMapNormalizerTemplate.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearMapNormalizerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearMapNormalizerTemplate.java index 8a073641c..1a04fe190 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearMapNormalizerTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearMapNormalizerTemplate.java @@ -4,6 +4,7 @@ import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; import com.dfsek.terra.addons.noise.normalizer.LinearMapNormalizer; +import com.dfsek.terra.api.config.meta.Meta; import com.dfsek.terra.api.noise.NoiseSampler; @@ -11,17 +12,17 @@ public class LinearMapNormalizerTemplate extends NormalizerTemplate Date: Fri, 5 Jan 2024 15:00:16 -0700 Subject: [PATCH 060/136] Add parameter to turn off salting cellular lookup another updated astrash commit --- .../templates/noise/CellularNoiseTemplate.java | 7 ++++++- .../noise/samplers/noise/CellularSampler.java | 18 ++++++++++++------ 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/CellularNoiseTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/CellularNoiseTemplate.java index 01b370e55..c1fdd2122 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/CellularNoiseTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/CellularNoiseTemplate.java @@ -34,7 +34,11 @@ public class CellularNoiseTemplate extends NoiseTemplate { @Value("lookup") @Default private @Meta NoiseSampler lookup = new OpenSimplex2Sampler(); - + + @Value("salt-lookup") + @Default + private @Meta boolean saltLookup = true; + @Override public NoiseSampler get() { CellularSampler sampler = new CellularSampler(); @@ -44,6 +48,7 @@ public class CellularNoiseTemplate extends NoiseTemplate { sampler.setReturnType(cellularReturnType); sampler.setDistanceFunction(cellularDistanceFunction); sampler.setSalt(salt); + sampler.setSaltLookup(saltLookup); return sampler; } } diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java index 6facef332..8e163f9ad 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java @@ -197,7 +197,9 @@ public class CellularSampler extends NoiseFunction { private double jitterModifier = 1.0; private NoiseSampler noiseLookup; - + + private boolean saltLookup; + public CellularSampler() { noiseLookup = new OpenSimplex2Sampler(); } @@ -217,7 +219,11 @@ public class CellularSampler extends NoiseFunction { public void setReturnType(ReturnType returnType) { this.returnType = returnType; } - + + public void setSaltLookup(boolean saltLookup) { + this.saltLookup = saltLookup; + } + @Override public double getNoiseRaw(long sl, double x, double y) { int seed = (int) sl; @@ -286,8 +292,8 @@ public class CellularSampler extends NoiseFunction { case Distance2Sub -> distance1 - distance0 - 1; case Distance2Mul -> distance1 * distance0 * 0.5 - 1; case Distance2Div -> distance0 / distance1 - 1; - case NoiseLookup -> noiseLookup.noise(sl, centerX, centerY); - case LocalNoiseLookup -> noiseLookup.noise(sl, x / frequency - centerX, y / frequency - centerY); + case NoiseLookup -> noiseLookup.noise(sl - (saltLookup ? 0 : salt), centerX, centerY); + case LocalNoiseLookup -> noiseLookup.noise(sl - (saltLookup ? 0 : salt), x / frequency - centerX, y / frequency - centerY); case Distance3 -> distance2 - 1; case Distance3Add -> (distance2 + distance0) * 0.5 - 1; case Distance3Sub -> distance2 - distance0 - 1; @@ -377,8 +383,8 @@ public class CellularSampler extends NoiseFunction { case Distance2Sub -> distance1 - distance0 - 1; case Distance2Mul -> distance1 * distance0 * 0.5 - 1; case Distance2Div -> distance0 / distance1 - 1; - case NoiseLookup -> noiseLookup.noise(sl, centerX, centerY, centerZ); - case LocalNoiseLookup -> noiseLookup.noise(sl, x / frequency - centerX, y / frequency - centerY, z / frequency - centerZ); + case NoiseLookup -> noiseLookup.noise(sl - (saltLookup ? 0 : salt), centerX, centerY, centerZ); + case LocalNoiseLookup -> noiseLookup.noise(sl - (saltLookup ? 0 : salt), x / frequency - centerX, y / frequency - centerY, z / frequency - centerZ); case Distance3 -> distance2 - 1; case Distance3Add -> (distance2 + distance0) * 0.5 - 1; case Distance3Sub -> distance2 - distance0 - 1; From 331075e54d8e161d00e5939e2ec28a936d4f4e8a Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Wed, 9 Oct 2024 12:59:19 -0600 Subject: [PATCH 061/136] Refractor name --- .../addons/noise/samplers/arithmetic/AdditionSampler.java | 2 +- .../noise/samplers/arithmetic/BinaryArithmeticSampler.java | 6 +++--- .../addons/noise/samplers/arithmetic/DivisionSampler.java | 2 +- .../terra/addons/noise/samplers/arithmetic/MaxSampler.java | 2 +- .../terra/addons/noise/samplers/arithmetic/MinSampler.java | 2 +- .../noise/samplers/arithmetic/MultiplicationSampler.java | 2 +- .../noise/samplers/arithmetic/SubtractionSampler.java | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/AdditionSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/AdditionSampler.java index f5574868a..4006e126c 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/AdditionSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/AdditionSampler.java @@ -14,7 +14,7 @@ public class AdditionSampler extends BinaryArithmeticSampler { } @Override - public double[] operated(double[] left, double[] right) { + public double[] operateDerivative(double[] left, double[] right) { int dimensions = left.length; double[] out = new double[dimensions]; for(int i = 0; i < dimensions; i++) { diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/BinaryArithmeticSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/BinaryArithmeticSampler.java index d9980404e..66abb393c 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/BinaryArithmeticSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/BinaryArithmeticSampler.java @@ -30,15 +30,15 @@ public abstract class BinaryArithmeticSampler implements DerivativeNoiseSampler @Override public double[] noised(long seed, double x, double y) { - return operated(((DerivativeNoiseSampler)left).noised(seed, x, y), ((DerivativeNoiseSampler)right).noised(seed, x, y)); + return operateDerivative(((DerivativeNoiseSampler)left).noised(seed, x, y), ((DerivativeNoiseSampler)right).noised(seed, x, y)); } @Override public double[] noised(long seed, double x, double y, double z) { - return operated(((DerivativeNoiseSampler)left).noised(seed, x, y, z), ((DerivativeNoiseSampler)right).noised(seed, x, y, z)); + return operateDerivative(((DerivativeNoiseSampler)left).noised(seed, x, y, z), ((DerivativeNoiseSampler)right).noised(seed, x, y, z)); } public abstract double operate(double left, double right); - public abstract double[] operated(double[] left, double[] right); + public abstract double[] operateDerivative(double[] left, double[] right); } diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/DivisionSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/DivisionSampler.java index aea17182a..fe6c1a79d 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/DivisionSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/DivisionSampler.java @@ -14,7 +14,7 @@ public class DivisionSampler extends BinaryArithmeticSampler { } @Override - public double[] operated(double[] left, double[] right) { + public double[] operateDerivative(double[] left, double[] right) { int dimensions = left.length; double[] out = new double[dimensions]; out[0] = left[0] / right[0]; diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MaxSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MaxSampler.java index 8c5bf03bd..4012de57f 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MaxSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MaxSampler.java @@ -14,7 +14,7 @@ public class MaxSampler extends BinaryArithmeticSampler { } @Override - public double[] operated(double[] left, double[] right) { + public double[] operateDerivative(double[] left, double[] right) { double leftValue = left[0]; double rightValue = right[0]; return leftValue > rightValue ? left : right; diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MinSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MinSampler.java index cbb8217c7..a29064794 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MinSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MinSampler.java @@ -14,7 +14,7 @@ public class MinSampler extends BinaryArithmeticSampler { } @Override - public double[] operated(double[] left, double[] right) { + public double[] operateDerivative(double[] left, double[] right) { double leftValue = left[0]; double rightValue = right[0]; return leftValue < rightValue ? left : right; diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MultiplicationSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MultiplicationSampler.java index 87ba08bf5..1033b980e 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MultiplicationSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/MultiplicationSampler.java @@ -14,7 +14,7 @@ public class MultiplicationSampler extends BinaryArithmeticSampler { } @Override - public double[] operated(double[] left, double[] right) { + public double[] operateDerivative(double[] left, double[] right) { int dimensions = left.length; double[] out = new double[dimensions]; out[0] = left[0] * right[0]; diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/SubtractionSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/SubtractionSampler.java index 7ee7efad1..c7e69d49e 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/SubtractionSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/arithmetic/SubtractionSampler.java @@ -14,7 +14,7 @@ public class SubtractionSampler extends BinaryArithmeticSampler { } @Override - public double[] operated(double[] left, double[] right) { + public double[] operateDerivative(double[] left, double[] right) { int dimensions = left.length; double[] out = new double[dimensions]; for(int i = 0; i < dimensions; i++) { From 370b2e01222247f08931ddfa69fe85a20144ea65 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Wed, 9 Oct 2024 13:01:54 -0600 Subject: [PATCH 062/136] Fix import --- .../src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java | 1 + 1 file changed, 1 insertion(+) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java index 1391b7606..e2fa8956c 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java @@ -37,6 +37,7 @@ import com.dfsek.terra.addons.noise.config.templates.noise.fractal.RidgedFractal import com.dfsek.terra.addons.noise.config.templates.normalizer.ClampNormalizerTemplate; import com.dfsek.terra.addons.noise.config.templates.normalizer.CubicSplineNormalizerTemplate; import com.dfsek.terra.addons.noise.config.templates.normalizer.ExpressionNormalizerTemplate; +import com.dfsek.terra.addons.noise.config.templates.normalizer.LinearMapNormalizerTemplate; import com.dfsek.terra.addons.noise.config.templates.normalizer.LinearNormalizerTemplate; import com.dfsek.terra.addons.noise.config.templates.normalizer.NormalNormalizerTemplate; import com.dfsek.terra.addons.noise.config.templates.normalizer.PosterizationNormalizerTemplate; From 725fa88466d21665f779c70ff3a720e118b7ac86 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Wed, 9 Oct 2024 14:01:12 -0600 Subject: [PATCH 063/136] Remap fabric --- .../com/dfsek/terra/mod/config/EntityTypeTemplate.java | 2 +- .../com/dfsek/terra/mod/config/VillagerTypeTemplate.java | 2 +- .../mod/generation/MinecraftChunkGeneratorWrapper.java | 8 ++++---- .../com/dfsek/terra/mod/handle/MinecraftItemHandle.java | 6 +++--- .../com/dfsek/terra/mod/handle/MinecraftWorldHandle.java | 2 +- .../terra/block/entity/MobSpawnerBlockEntityMixin.java | 2 +- .../implementations/terra/chunk/data/ProtoChunkMixin.java | 2 +- .../terra/inventory/item/ItemStackMixin.java | 4 ++-- .../implementations/terra/world/ChunkRegionMixin.java | 2 +- .../terra/mod/mixin/lifecycle/DataPackContentsMixin.java | 4 ++-- .../java/com/dfsek/terra/mod/util/MinecraftAdapter.java | 2 +- .../main/java/com/dfsek/terra/mod/util/MinecraftUtil.java | 6 +++--- .../src/main/java/com/dfsek/terra/mod/util/TagUtil.java | 2 +- .../java/com/dfsek/terra/lifecycle/LifecyclePlatform.java | 2 +- .../terra/lifecycle/mixin/lifecycle/SaveLoadingMixin.java | 2 +- 15 files changed, 24 insertions(+), 24 deletions(-) diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/EntityTypeTemplate.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/EntityTypeTemplate.java index 9530c2b21..8e4e4b8f7 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/EntityTypeTemplate.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/EntityTypeTemplate.java @@ -15,6 +15,6 @@ public class EntityTypeTemplate implements ObjectTemplate> { @Override public EntityType get() { - return Registries.ENTITY_TYPE.get(id); + return Registries.ENTITY_TYPE.getEntry(id); } } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/VillagerTypeTemplate.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/VillagerTypeTemplate.java index 68e7a518f..79eb55193 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/VillagerTypeTemplate.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/VillagerTypeTemplate.java @@ -15,6 +15,6 @@ public class VillagerTypeTemplate implements ObjectTemplate { @Override public VillagerType get() { - return Registries.VILLAGER_TYPE.get(id); + return Registries.VILLAGER_TYPE.getEntry(id); } } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/generation/MinecraftChunkGeneratorWrapper.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/generation/MinecraftChunkGeneratorWrapper.java index 46f5601de..9ede6950a 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/generation/MinecraftChunkGeneratorWrapper.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/generation/MinecraftChunkGeneratorWrapper.java @@ -97,7 +97,7 @@ public class MinecraftChunkGeneratorWrapper extends net.minecraft.world.gen.chun public void populateEntities(ChunkRegion region) { if(!this.settings.value().mobGenerationDisabled()) { ChunkPos chunkPos = region.getCenterPos(); - RegistryEntry registryEntry = region.getBiome(chunkPos.getStartPos().withY(region.getTopY() - 1)); + RegistryEntry registryEntry = region.getBiome(chunkPos.getStartPos().withY(region.getTopYInclusive() - 1)); ChunkRandom chunkRandom = new ChunkRandom(new CheckedRandom(RandomSeed.getSeed())); chunkRandom.setPopulationSeed(region.getSeed(), chunkPos.getStartX(), chunkPos.getStartZ()); SpawnHelper.populateEntities(region, registryEntry, chunkPos, chunkRandom); @@ -179,7 +179,7 @@ public class MinecraftChunkGeneratorWrapper extends net.minecraft.world.gen.chun WorldProperties properties = MinecraftAdapter.adapt(height, SeedHack.getSeed(noiseConfig.getMultiNoiseSampler())); BiomeProvider biomeProvider = pack.getBiomeProvider(); int min = height.getBottomY(); - for(int y = height.getTopY() - 1; y >= min; y--) { + for(int y = height.getTopYInclusive() - 1; y >= min; y--) { if(heightmap .getBlockPredicate() .test((BlockState) delegate.getBlock(properties, x, y, z, biomeProvider))) return y + 1; @@ -192,14 +192,14 @@ public class MinecraftChunkGeneratorWrapper extends net.minecraft.world.gen.chun BlockState[] array = new BlockState[height.getHeight()]; WorldProperties properties = MinecraftAdapter.adapt(height, SeedHack.getSeed(noiseConfig.getMultiNoiseSampler())); BiomeProvider biomeProvider = pack.getBiomeProvider(); - for(int y = height.getTopY() - 1; y >= height.getBottomY(); y--) { + for(int y = height.getTopYInclusive() - 1; y >= height.getBottomY(); y--) { array[y - height.getBottomY()] = (BlockState) delegate.getBlock(properties, x, y, z, biomeProvider); } return new VerticalBlockSample(height.getBottomY(), array); } @Override - public void getDebugHudText(List text, NoiseConfig noiseConfig, BlockPos pos) { + public void appendDebugHudText(List text, NoiseConfig noiseConfig, BlockPos pos) { } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftItemHandle.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftItemHandle.java index c9ef02f37..4efce8105 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftItemHandle.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftItemHandle.java @@ -49,8 +49,8 @@ public class MinecraftItemHandle implements ItemHandle { } @Override - public Optional> getOptionalWrapper(RegistryKey> registryRef) { - return Optional.of(CommonPlatform.get().getServer().getRegistryManager().getWrapperOrThrow(registryRef)); + public Optional> getOptional(RegistryKey> registryRef) { + return Optional.of(CommonPlatform.get().getServer().getRegistryManager().getOrThrow(registryRef)); } }).parse(new StringReader(data)).getItem(); } catch(CommandSyntaxException e) { @@ -60,7 +60,7 @@ public class MinecraftItemHandle implements ItemHandle { @Override public Enchantment getEnchantment(String id) { - return (Enchantment) (Object) (CommonPlatform.get().enchantmentRegistry().get(Identifier.tryParse(id))); + return (Enchantment) (Object) (CommonPlatform.get().enchantmentRegistry().getEntry(Identifier.tryParse(id))); } @Override diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java index c36744d18..40084e9d4 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java @@ -76,6 +76,6 @@ public class MinecraftWorldHandle implements WorldHandle { if(!id.contains(":")) throw new IllegalArgumentException("Invalid entity identifier " + id); Identifier identifier = Identifier.tryParse(id); if(identifier == null) identifier = Identifier.tryParse(id); - return (EntityType) Registries.ENTITY_TYPE.get(identifier); + return (EntityType) Registries.ENTITY_TYPE.getEntry(identifier); } } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/block/entity/MobSpawnerBlockEntityMixin.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/block/entity/MobSpawnerBlockEntityMixin.java index 15e8fab34..f90a7ba46 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/block/entity/MobSpawnerBlockEntityMixin.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/block/entity/MobSpawnerBlockEntityMixin.java @@ -54,7 +54,7 @@ public abstract class MobSpawnerBlockEntityMixin extends BlockEntity { public abstract void setEntityType(net.minecraft.entity.EntityType entityType, Random random); public EntityType terra$getSpawnedType() { - return (EntityType) Registries.ENTITY_TYPE.get( + return (EntityType) Registries.ENTITY_TYPE.getEntry( Identifier.tryParse(((MobSpawnerLogicAccessor) getLogic()).getSpawnEntry().getNbt().getString("id"))); } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/chunk/data/ProtoChunkMixin.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/chunk/data/ProtoChunkMixin.java index b9a6dd14c..5e5403834 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/chunk/data/ProtoChunkMixin.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/chunk/data/ProtoChunkMixin.java @@ -48,6 +48,6 @@ public abstract class ProtoChunkMixin { } public int terra$getMaxHeight() { - return getHeightLimitView().getTopY(); + return getHeightLimitView().getTopYInclusive(); } } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/inventory/item/ItemStackMixin.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/inventory/item/ItemStackMixin.java index 76121f64b..7837c626a 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/inventory/item/ItemStackMixin.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/inventory/item/ItemStackMixin.java @@ -19,7 +19,7 @@ package com.dfsek.terra.mod.mixin.implementations.terra.inventory.item; import net.minecraft.component.ComponentChanges; import net.minecraft.component.ComponentMap; -import net.minecraft.component.ComponentMapImpl; +import net.minecraft.component.MergedComponentMap; import net.minecraft.item.ItemStack; import org.spongepowered.asm.mixin.Final; import org.spongepowered.asm.mixin.Implements; @@ -37,7 +37,7 @@ import com.dfsek.terra.api.inventory.item.ItemMeta; public abstract class ItemStackMixin { @Shadow @Final - private ComponentMapImpl components; + private MergedComponentMap components; @Shadow public abstract int getCount(); diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/world/ChunkRegionMixin.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/world/ChunkRegionMixin.java index 70a62ae79..90378269f 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/world/ChunkRegionMixin.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/world/ChunkRegionMixin.java @@ -99,7 +99,7 @@ public abstract class ChunkRegionMixin { } public int terraWorld$getMaxHeight() { - return world.getTopY(); + return world.getTopYInclusive(); } @Intrinsic(displace = true) diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/lifecycle/DataPackContentsMixin.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/lifecycle/DataPackContentsMixin.java index 680c1833c..c08b238e6 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/lifecycle/DataPackContentsMixin.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/lifecycle/DataPackContentsMixin.java @@ -29,9 +29,9 @@ public class DataPackContentsMixin { @Inject(method = "refresh()V", at = @At("RETURN")) private void injectReload(CallbackInfo ci) { DynamicRegistryManager.Immutable dynamicRegistryManager = this.reloadableRegistries.getRegistryManager(); - TagUtil.registerWorldPresetTags(dynamicRegistryManager.get(RegistryKeys.WORLD_PRESET)); + TagUtil.registerWorldPresetTags(dynamicRegistryManager.getOrThrow(RegistryKeys.WORLD_PRESET)); - Registry biomeRegistry = dynamicRegistryManager.get(RegistryKeys.BIOME); + Registry biomeRegistry = dynamicRegistryManager.getOrThrow(RegistryKeys.BIOME); TagUtil.registerBiomeTags(biomeRegistry); MinecraftUtil.registerFlora(biomeRegistry); } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftAdapter.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftAdapter.java index 25ca7e4c5..a5ad15a99 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftAdapter.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftAdapter.java @@ -39,7 +39,7 @@ public final class MinecraftAdapter { @Override public int getMaxHeight() { - return height.getTopY(); + return height.getTopYInclusive(); } @Override diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java index 692d0da5a..bbe2a638b 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java @@ -46,7 +46,7 @@ public final class MinecraftUtil { } public static Optional> getEntry(Registry registry, Identifier identifier) { - return registry.getOrEmpty(identifier) + return registry.getOptionalValue(identifier) .flatMap(registry::getKey) .flatMap(registry::getEntry); } @@ -67,9 +67,9 @@ public final class MinecraftUtil { logger.info("Injecting flora into Terra biomes..."); TERRA_BIOME_MAP .forEach((vb, terraBiomes) -> - biomes.getOrEmpty(vb) + biomes.getOptionalValue(vb) .ifPresentOrElse(vanilla -> terraBiomes - .forEach(tb -> biomes.getOrEmpty(tb) + .forEach(tb -> biomes.getOptionalValue(tb) .ifPresentOrElse( terra -> { List> flowerFeatures = List.copyOf( diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java index 36ed6afea..210be1b29 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java @@ -25,7 +25,7 @@ public final class TagUtil { private static Map, List>> tagsToMutableMap(Registry registry) { return registry - .streamTagsAndEntries() + .streamTags() .collect(HashMap::new, (map, pair) -> map.put(pair.getFirst(), new ArrayList<>(pair.getSecond().stream().toList())), diff --git a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java index 391842311..7c7c49306 100644 --- a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java +++ b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java @@ -72,7 +72,7 @@ public abstract class LifecyclePlatform extends ModPlatform { if(server != null) { - BiomeUtil.registerBiomes(server.getRegistryManager().get(RegistryKeys.BIOME)); + BiomeUtil.registerBiomes(server.getRegistryManager().getOrThrow(RegistryKeys.BIOME)); server.reloadResources(server.getDataPackManager().getEnabledIds()).exceptionally(throwable -> { LOGGER.warn("Failed to execute reload", throwable); return null; diff --git a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/SaveLoadingMixin.java b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/SaveLoadingMixin.java index 89490ef41..bf26a1ec3 100644 --- a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/SaveLoadingMixin.java +++ b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/SaveLoadingMixin.java @@ -24,7 +24,7 @@ public class SaveLoadingMixin { index = 1 ) private static DynamicRegistryManager grabManager(DynamicRegistryManager registryManager) { - MinecraftUtil.registerFlora(registryManager.get(RegistryKeys.BIOME)); + MinecraftUtil.registerFlora(registryManager.getOrThrow(RegistryKeys.BIOME)); return registryManager; } } From b03d128913a9ee60f3c533e70be11b0c0bec891a Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Wed, 25 Sep 2024 15:47:19 -0600 Subject: [PATCH 064/136] Addon dependency updates --- buildSrc/src/main/kotlin/Versions.kt | 2 +- common/addons/config-number-predicate/build.gradle.kts | 7 +------ common/addons/manifest-addon-loader/build.gradle.kts | 4 ++-- common/addons/structure-sponge-loader/build.gradle.kts | 8 ++------ .../addons/structure-terrascript-loader/build.gradle.kts | 8 ++------ platforms/cli/build.gradle.kts | 2 +- 6 files changed, 9 insertions(+), 22 deletions(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 1e48e716a..e95d6f6be 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -25,6 +25,7 @@ object Versions { const val snakeYml = "2.3" const val jetBrainsAnnotations = "24.1.0" const val junit = "5.11.0" + const val nbt = "6.1" } } @@ -72,7 +73,6 @@ object Versions { // } // object CLI { - const val nbt = "6.1" const val logback = "1.5.8" } } \ No newline at end of file diff --git a/common/addons/config-number-predicate/build.gradle.kts b/common/addons/config-number-predicate/build.gradle.kts index 2ea535016..b76b64160 100644 --- a/common/addons/config-number-predicate/build.gradle.kts +++ b/common/addons/config-number-predicate/build.gradle.kts @@ -5,9 +5,4 @@ version = version("1.0.0") dependencies { compileOnlyApi(project(":common:addons:manifest-addon-loader")) api("com.dfsek", "paralithic", Versions.Libraries.paralithic) -} - - -tasks.named("shadowJar") { - relocate("com.dfsek.paralithic", "com.dfsek.terra.addons.numberpredicate.lib.paralithic") -} +} \ No newline at end of file diff --git a/common/addons/manifest-addon-loader/build.gradle.kts b/common/addons/manifest-addon-loader/build.gradle.kts index 6a5b6f54e..8a2c03003 100644 --- a/common/addons/manifest-addon-loader/build.gradle.kts +++ b/common/addons/manifest-addon-loader/build.gradle.kts @@ -1,8 +1,8 @@ version = version("1.0.0") dependencies { - api("commons-io:commons-io:2.7") - implementation("com.dfsek.tectonic:yaml:${Versions.Libraries.tectonic}") + api("commons-io", "commons-io", Versions.Libraries.Internal.apacheIO) + implementation("com.dfsek.tectonic", "yaml", Versions.Libraries.tectonic) } tasks.withType { diff --git a/common/addons/structure-sponge-loader/build.gradle.kts b/common/addons/structure-sponge-loader/build.gradle.kts index dba93405f..20c002866 100644 --- a/common/addons/structure-sponge-loader/build.gradle.kts +++ b/common/addons/structure-sponge-loader/build.gradle.kts @@ -3,11 +3,7 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar version = version("1.0.0") dependencies { - api("commons-io:commons-io:2.7") - api("com.github.Querz:NBT:6.1") + api("commons-io", "commons-io", Versions.Libraries.Internal.apacheIO) + api("com.github.Querz", "NBT", Versions.Libraries.Internal.nbt) compileOnlyApi(project(":common:addons:manifest-addon-loader")) -} - -tasks.named("shadowJar") { - relocate("org.apache.commons", "com.dfsek.terra.addons.sponge.lib.commons") } \ No newline at end of file diff --git a/common/addons/structure-terrascript-loader/build.gradle.kts b/common/addons/structure-terrascript-loader/build.gradle.kts index a042ee13c..24e3a20e9 100644 --- a/common/addons/structure-terrascript-loader/build.gradle.kts +++ b/common/addons/structure-terrascript-loader/build.gradle.kts @@ -3,10 +3,6 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar version = version("1.2.0") dependencies { - api("commons-io:commons-io:2.7") + api("commons-io", "commons-io", Versions.Libraries.Internal.apacheIO) compileOnlyApi(project(":common:addons:manifest-addon-loader")) -} - -tasks.named("shadowJar") { - relocate("org.apache.commons", "com.dfsek.terra.addons.terrascript.lib.commons") -} +} \ No newline at end of file diff --git a/platforms/cli/build.gradle.kts b/platforms/cli/build.gradle.kts index 5070c047f..893649caf 100644 --- a/platforms/cli/build.gradle.kts +++ b/platforms/cli/build.gradle.kts @@ -8,7 +8,7 @@ dependencies { shadedApi(project(":common:implementation:base")) shadedApi("commons-io", "commons-io", Versions.Libraries.Internal.apacheIO) - shadedApi("com.github.Querz", "NBT", Versions.CLI.nbt) + shadedApi("com.github.Querz", "NBT", Versions.Libraries.Internal.nbt) shadedImplementation("com.google.guava", "guava", Versions.Libraries.Internal.guava) From adb43dcaa84e22a133bf69415a4d716aff1f83be Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Wed, 9 Oct 2024 15:17:09 -0600 Subject: [PATCH 065/136] Gradle update --- gradle/wrapper/gradle-wrapper.jar | Bin 43453 -> 43583 bytes gradle/wrapper/gradle-wrapper.properties | 4 ++-- gradlew | 5 ++++- gradlew.bat | 2 ++ 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index e6441136f3d4ba8a0da8d277868979cfbc8ad796..a4b76b9530d66f5e68d973ea569d8e19de379189 100644 GIT binary patch delta 12612 zcmY+pRa6|n(lttO3GVLh?(Xh3xVuAe26uONcL=V5;I6?T_zdn2`Oi5I_gl9gx~lft zRjVKRp?B~8Wyrx5$mS3|py!Njy{0Wt4i%@s8v88pK z6fPNA45)|*9+*w5kcg$o)}2g}%JfXe6l9ig4T8ia3Hlw#3f^fAKW63%<~GZJd-0YA z9YjleCs~#Y?V+`#nr+49hhsr$K$k!lg}AZDw@>2j=f7t~5IW6#K|lAX7|^N}lJ)I!km`nrwx> z))1Es16__aXGVzQM0EC8xH+O!nqTFBg9Ci{NwRK*CP<6s`Gq(~#lqb(zOlh6ZDBK* zr$|NDj^s6VanrKa+QC;5>twePaexqRI%RO~OY075y?NN90I|f^(P# zF=b>fZ73b5JzD`#GC3lTQ_B3lMeBWgQUGYnFw*HQC}^z{$6G4j(n4y-pRxPT(d2Wgb%vCH(?+t&Pj z)QM`zc`U`+<~D+9E{4Uj2kc#*6eZMU$4Oj6QMfA^K!rbl`iBix=2sPrs7j@aqIrE zTaZJ2M09>rp$mgyUZ!r2$UK{+DGqgl`n;*qFF~M(r#eh`T{MO?2&j?xgr8FU$u3-` zhRDc_I23LL4)K&xg$^&l-W=!Jp-P(_Ie07q>Je;QLxi8LaEc%;WIacJD_T69egF?7 z;I_Sg_!+qrur8$Hq4grigaiVF>U7uWJ@Hkd&%kmFnQN-P^fq0gB1|uRt!U#X;DnlV zo?yHWTw7g5B;#xxY`adhi4yZn@f(7-Xa(J6S=#d@&rlFw!qfvholE>MEb|VWn^g}G zMSrK&zQ^vDId&ojL!{%{o7?s{7;{+u%L{|tar(gp?Uxq3p?xAysB>0E$eG#$tvkk9 z2Q2gEP17{U6@UD*v({5MP-CTZfvWMItVjb4c;i~WLq&{?Q1(koX&vt7+$z}10{^Id z{KDjGi0JpD7@;~odF__0m|p;5rIrHidOP9^mwKe#-&JX-X@acc)06G{LO1Wu)#gvZ za~y9(fhA%UwkDOVU1LBJ`0ROE z4&)dJKK%mG@+CIm?+wt9f~@xIMr8}UH*K1j| z0pppo{7gv3v{URwxVMeg>Ps!L5IKxm zjac2egjgb0vH5i75$s|sY_RYec#>faqJk|AGgV;v=^%BM(^p{p;(^SVt-88G9f!q; z>p}9E4^f0=01S2pQBE4}9YqE%TV)*hlU^8k9{&=K76+*Ax^r=AkBb%OCP^P2nm0Ri z;D-|Zk?gGeU<12ti2CnPVNA(Pb)02+r|&yTWW-OJO7 zNLb0pps6aN?A~NJp5kj{{IOlf!5KWMleV@-hYLift)D>-7K+tgs=7Ake}oBnIy-y1 z(Hn@Hjw=_(x>dO5ysQsrnE%A*bk0K<-j{1Yqz@#n#jOL^AzCr#wR|WYzqk6i7v)Lf zkXdKxzuu20aP{Tbg$(+9&oh7cd(Uoqqf<#ujb$q4sZ~gxFbQfS zS)kNklyL*{2AELgjZ(LBu*>S(oH5AaJ;YiB@;l@=O%F6B?oanzoYRM^fQ9-<~^=3$H0g^JPMLQo@SZ@QuNvy)tyJ)LSj`+()#fy?{aV4Yg^7dlQ7AQM^3GLCR2dAFR zJjtfKiVqF`l-H_fz0HD|9g>)pOxn}k!vdZ=DO!7Sikm{Z%P6BrRkBS6W?ZB5W&7rT z@uYpf@M@a!z7H&o@-yrcCL^Ff3e7p3T`R9p?@o-acXmbTSa0>ZANzCSgovsd%;i$| zVus`not!oL#(W`L-!9w0jdaECaG4hk{V7IOs676ZquZH~0TX5hDq|)x z6T497l|E?f4)LA>j=S8}b$0LS=I4h|hUFJYJODT8Li@#6kF$k0)@*l{RnM1HQ%?VT ze-Pqlc!~t(oumVC*?5fwR;P6u{tHaZ~*LlD;B)4f? z?lpWfa2P@)g57flVl83Ej%P`2)gGyaPjhvD(%i~{`2b>#3!+y&` z!2nuwHMFA-zUY}f1^0B8<`N)Gr=A4TS@b1qykmd0Pq{?r)+1^^+D(=xasb^Tf!oK9 zBLL+*p6M_#ufgLzgq1zcSwZsZnQWFLC3`Yxdg-2=*tT`J9nrfYt)RF)YryBf8_gW{ zvKbB+oZLehfT)S#<|y1)E0hW^?+AnqPXq9Hu;v3dsMGdr{SVyF63;K<8VcgI#~}1i zLYSBL0K;RTT(;>2x=*!1Di9w0mwr;`CN}kM65|Ay{~z}_^JKOsRaN<~#9O^iiW<5P zYN7r~HV!#Nz~IZU`P>1Xe%4f~K}KcF#X&5kO*G}-)74S*tQ8CietdPcA1Yl;S=Mr# z`#MYY!{s^uo=jn7;k6O%(}fN+*0cWMpt~#n9DR<3NyU?+3D^AgI}S)Cu-Tljg`VY} zX1=fq$?8$DtOeGxE6f8lbS_6Q3C4+LDTO$}_IpM$Xv<|QSC%+Oll^q$y`7o@jD{dp zNDl|&X)r7wETa-#h*d`KXntxI(Y{vLha{$0i7@G8xx^m=c<{lJ9?p-i!^W{%j7-oo z0W^SzZ^(Wkyz*We{lEn%Yhu-ycUOHtrRiVJL4~&S91*D0MrLu}Q>v-Mc?GcWfpyz% zX|UvcN@krFO#@v|CtYM}g|=L3%aMo$E5<@CM%c*;?u>LOTz00@+dt1{yg1y=$h+{|D17U}$*^fE^H&8b431EUE z<9tv0V_#%#&1N#j7AKCj!tTK@J%oFW*ESW<(#Gl#Xs%v<@AitI?s92nLzm<)w3Wkkom1f$gcdUi%g_*jofy&}N#luL<$GVIe{iQkQ)sIHVy zBgItnPBFamrv6Kb{eE($Q(f`ZPeW!Hm%Y@F*OF1sKB{Yy|C>WEv_mfvv-N-jh)B-5 z4a!1WcT@9a+hGaBrc~sz=>G?Q!*Zp^JFRUvBMyNR1;`)j$RhH$6gEyVKhd$&K-CFT zXaWC-Y=fyOnqT84iMn9o5oLEOI(_3fk!W^8-74|q1QhQ|CmT0i=b;6Z3u?E{p7V{? z;f#Q-33!L+4&QQcZ~GAqu$NS{M;u%`+#9=7^Oa5PKvCCCWNG_~l(CidS!+xr-*gg{ z$UQ`_1tLT_9jB=Hckkwu>G{s0b0F4bnR7GibmHo?>TR&<3?D;5Fb#gd8*wYa$$~ar z7epl1qM)L{kwiNjQk}?)CFpNTd?0wAOUZ|gC{Ub|c-7h~+Rm(JbdoRe!RNVBQi!M8 z+~U6E2X&KSA*T6KJvsqwqZl#1&==Dm(#b^&VAKQ>7ygv*Fyr;)q9*^F@dCTg2g!w~ z%hg)UXAUyIpIbLXJv1nZX+a_C)BOH2hUim|>=JHCRf(!dtTidb&*~I!JrfRe+PO>w z@ox$G2a3i9d_N9J=|2$y2m-P&#PTNwe!oLBZFs;z|F5kXvBDn<)WwE0E3$ow=zg3R zK(9;sf0t;VEV3@gAg7jRtnj%-6O@!Hvg*;XcUAw}!=2*aErvB(eQIm(-UGmq^J=XN zTqJo$Y|WKo^HlBF3BXJrA#}7ZLg=r*w`I*~Ix`o&2k8^(0mt8Rp=A>F`&gehhp@Jy z^e^#B2!~$LvNCKugg)8)-G%&THdk~kfextilegP9?#C#()F59U$&eo(h|5>ceo*Em z{PEE79T$YP|Kr7K`WBHbtQwyxFkCl6xX&+oUf90B5xoi3_5KHHCyEE*oPbOQkfMz& z6^hT8_NXd2iWk{q9IKae1{_7hMPH8I7_BMtVOM4 z6jm?E0QJOn$qrgsJ`9w##GB9?G})-GXSQo6(tYS(Q0-Ct$co?Zzl0?NHsDRron?;_ zZZgQg)%XW>P?8_&zoGuF(>Och2kEJXsu1_X&~w87x!b z>~h!a>e7{`p@+#hXF88wI*JeWRZ;J4ev4<}HWf|Z;(7$E!S5l9wzBHFe>^I{2`a;a)QnAwa2xv1e(bq$<}!8o^ofGvYpk7dBR+`*%iE;hUY5 zaHF}OjGO9r*{%lmcK^uFiTHgoUD`^9Nx@~;Bg!V* zuuJ&ti{DQiq7RyJAR94wem{}cPK1J(Yxnn_{=>?USqz-~&QXRStS^s-7TksZ$AEI! z#og36s3JGtGU{CnDHRFtipFqvrE*gw7_K@NN0h+ItTq@4fqN!HeQU1y7*X?9+IfZT4Vxebpt z%#VzgdDK~-&+=Z*#>=n#XUhNvBZp3=Cr41jMqwJkHLf3L7Vm~V#GgJ(Jpii~PmJ#s zA7Ft!{xD@z>9DUb4JbiUBdNEcU4BO$651iN*mp*f)HbRRM`Cx5cR?5IfEcU{IZWwf zz(M6CDv)>xa3x}K6%tP^i15P1&&DOLK=k~+jNR$UK3frSl+|PjSC-dBItvD~LL! z>_g(YYdO4k(5EbPOw+v+;G7~jYm>F@Ai|o`gs%F)F8tDz$dl7Q%aCe|v|$UkAul_R zNlA-beBX^IJU?kgS`E$it7nF4DaI!SJAGq)2P&Few(-|tp z?K+%D3e4{pfkayrcbm0ftu6Ol2ZzdKM+4i!hNP3NRL`EvvZJ3yvNr2MV%igZ4kj``Qrdb_OI$7jWP z;l0DYf&0(-*QcP5zrP`HVznW+SbH63Qx$7_9~NjRNg7eKqI!UJ=XH`g^=t8GiFTu( z?2L{JKEu%jJx&XjNzU(*!ZNmL1@RlJA0G$2_LrAb_7lmjil(GSlSM zwTes`m+3R;3#N~Xg#9owh3ycXV8@ZlaY_16kpPFA={721b~URO4HD3sp%fmkZM}k) zZB0#)kP=RkNB~R-MCk8aljG_bagt4vIb~8)BV%(b8_;)&Kf9GX+%O_cNG|(D$!3&D zL(I8}*LqN5NntipFlN13=`D>6!{D@CFMBH0kW3=HccJV+xW~|$qeFR5i-2{X+iWMu zI2$gepQ)H_B%ip_BlWOQ*|pErXs|4ir{IHccgaIJ84irE{?+$KDABXr&f`jB^V-c% z$$u`uU1YB^{<+UN2cNg#7&0bz@yF?5>j|;)5&IV3wIQp58X#OE-M^$HdyvL|Um5t? zhZlAG!Mz%XkUe3t471JM*Yur}o30vzu6RN7gJyNcf!IItsDO730mcJ*O!~V``y5=3 zNJGp34DZ}wd1H6V`Uuy%es>BiO_aE-S8jzir#$& zyk)@2a5tP$@g%jW^b^JGdo)X@Q%sE`^lDQmY9m%uDFpPX`w9%=yQ+nneMm#OaXcD` z9}{tn5A2b2z9783vL2_jSao?uxJhWJoq%47*RafM4o0@gY(p)F>qT4^XM5GLzV#6j zC+HoGhAne7o_w{WUo(B++z7lU3Y0k1rYv9|TSv0vR-Du(5=VakbbelgZTeDn+a_Wv zq_j-^+Qz1WAl;Zg>ahX|CERbX1V%B!hTKN?M}fGoA07M(WU&NfT&TmN`P@56U2 z^)vLDs|Ln~0iTtn-?KTeQl@T&bskJFuTUS!m+$CS9vnd}8(UMO|Kv6TCfGN9NUu&4 zL{)GTxPq>fwsJ~aU=4Qhuq8*RzDsP(LZh$BHezq&9gK$IS<|DYbm})$QTGCS6T;Dr zEkLct!b+#<1r9OKG@P!f1wm8>=Nz!7OzJm!g<+`?N3;YaA3(P@EL=(sTaRMDD!c8=-XN^4BXp(eVkj$NmEMYPP>YJ4bJ3yUud z<3BeJAJ$6z^TuywnfH5lv#$lgwraNw{IV=tIznPH1DT`v-5yS=!)J<}xxl}uZf9azA2A97Haf!;<3y01hlw?dWNEv@TLi1s-mO4vmIT%O_42nS z$VRWrs9NngqRRkWAnWkn%`Rw@?wH|)7XL`EL5EZu$qyJW31&CB^T_)qwIv!{;E_6 zo-9XAryQRlk-O0>o#-SZO>|6OYq;}<*>Wu1AsVRiXY4f8qb;+sItv3AyS!4Ry+q}) zA!pAB|BmC;=RIOk^^vlsEH(!Q!7_1FK~ZB2err*o!+b(r=m1b?$6d!%zmN+69LXnT z&gRmM+n_R-F@sT*IYv0_mGPvur!u`iWbQO7SqiGFLeY&yga zf`lM&B74FA2C?N@8_z652fjhBEoDUKbP8hL{0{HAF%qDo7)o3=3rg#6)T7%%5^wl% z9R0*S*<~>nzYOdQk2l`9h#t+gJy_xujw6xjV(8S<_DbVg61&pT%Hi42l%D73G?adn znB%UdNM0p}lEF-P2%TAMam2zpQev71e>a$$%i+r~b+D9G9pF|oY_*(-u*89oKsXLY+UIbqq)MQ%(GYS{(*n_S_*RN$*~`zUtab%0aKwhx znc)Yo?{xq1sJCgQD)TeTci1ucvbez9q=A72H(-SB18Kl&6^vHV8^i!p@>iF!DIw17 z+8Q)TNisB7>pwyww4y)yJx*wX6SJO78eLBC-ar1+k$Z9fy;wBD|3kzI{<+l*>PSY^ z_?nLOZaeWbU@C3hfK?X;Di*8CHCPkx2qco6(ZyJdqSzp^TJ_5Lpa0UP{Gy+!b0Lr% z@xYxSjUKoY6L#>$qx~KD$-0=|OF7zhVP~ntMgEALYPIfhj@+ z!;JJ7te>CcovruwHsJH6Lta$nm|%^C@=V-rmhU{+I~0(|XHQ9jt@L7pb{gx#{4r!) zg($FyFTslcgu(~6lYr$nW?)%*l#VJ=R-jxK(x=t1bWlu(nL66T#qj%3aZ@uVhy}Co zDU_q61DD5FqqJ*#c|(M5tV)XBN?Ac^12*q)VN4yKPJ|#==S_`_QD9|0ls!`2)SwuHDRA_OfXQDq3%qW&MZB}Z!=k-9xqev8jHz(H z{^D@cIB~QiK>~wa)A&^Ll^Wi6QgCzU;iv-BHsLBs zH7=jN%|>0S`SjP%M&AF1PNVDp_FZ?2Bm@7`DC&v(pYrw!!yD#4 z6+<=HS0Ln6MhoKxF<%~H`y20{vf#pxh=;j{zY381gvAFekgG|>G1zo8$&az{V=;JR zy_puF4$L$?EMhT?;TpQoR*j16ll`#AS4e96C}yp_aGKkBe?1H|k_;gG-~Xorc<;lI zkB}fB{$c-D2mGA&{rm<*@F5)c3X+6??g~XoEwuzSuch0D@W~P5(2I8v8F$c2$Vw51 zP#YLSBDqtWW^EYBl^QYHF+MA7am6f4DOhwnJM=W9$uvMOsZ%_~?)2C#wb?CkI$7{K zEi)=#|5pFvg^){zK5kpBLjB2kZ+$ZB|L=W|aNwyyb(gC2l7bcpx{E-H@)q6@D6N^xh`{1E%ItF2$eeB_SjI@b2WgTpS1thwg&n`jiIzw^TtXUyB{00($GIq>vbj|}bav}}Q_~wp3>k8!E@hVC;OMUTu|= zAy#vXH*GrUHu7^cNZWe1>y;2(51js9wbu+R3Aa*(wzH9+X0dIsf&gc_x|_LP z>~CF^?(~U}+l~ehe|i>?4eo!xkq&Lk+RR-1duNP#o~>@1x)s&i&u zRaYL@+D&_M|JLI6fHbEr_`U;HgPTh#E3?sB)A$*gqyBgg*ql|a-m*TX5rACbWKCE6 zdeQ`v8m6>g^ugv`p|HY^#1QZrGGUj0^HVDc@{?Q0yhalbBEV{+|HzC^-{&e{5K%z9 z6Bxtnfu1!@Mp+Q&*&~;FOg&*Vm<@4b;{FG0-!UUXX!|)1w}op!B_|7_s~d(+=9Gba zKp8`LaB4D(H=cGcspJ_TjYaOwMb=sGn^gtUVhK!UI~2KKYEE-NC}F>+BEY7IVvy%KRvm00tg!Q`y=er}wpEetX}K@;}(}{s9AzV#q2@ zBy7}->|N?13POrs`;U?(qAG(I$~Gt+Rgw%aNZ_0fs_utVvRJT-7z4!@x36v@=NBX=IqkK{#Kg0w48de@?#Yb4M(Svj5=T+<ONr8-oh7l?Cji@+erqur zFhZ=9|Lk=$`c}v4u`)-!!UI=!9Jo@h&7p4RlS#u! zZ7-prn75JkV?VjptX;@$#`U`{vB!=Z?V`T*FBF>J?vsML7e6@2GbUteMFfX-TUu{2 zLNIG*;dV)8GV8gAgEf#)X3A>p3^CRka1v?~8x^anBhQ=L=LsOl=&pcOYHo98m##ye z34MtGCDK!`ptl?taGMr5q{!zVc? zG00e){TV?`YA9eB;(lA3lXI?RrB4BYQGk?vOmTIUJED=(`_*gtn2DB-t4WW54as*W zb2kD-lWX>lb$+W!VFakki>B^Vc+u$?NLF>)!U%b@Y}gYJ>m2H=^x0=nsE0TF^Yu0h ztgH8-o1%+jCk(+&`|)tTfEVHq0cMeFa{Uz)X$;fCq%Y=SOWML6bYfeP8j5hktL`KK z(18`XrUn&WN9PtFxh&dX`y~YBsmdhi7Kw%tKzM%^VEhdD<_XkulW-x=JN6OPbFI4@ zzDDRN+f=@{0h*MswwOqG6gJ?{NuHx(y-|FUGsxyZ*x0~$MW(eY>vqq4Fh#t7uzw=- zKB?|!0N~!h^AMdLa)oR!Ca#HZ9&Zf)ghuO<^RN)4twRlygHnQG(BE{cDc5E}OF4;xss6gYyV~EcJvJkX)xNWb=@yw!uq0v-sf^rvkp-;?DPWK@*SEw|V;IH=7 zfQqEV_>DjOPT~8X*J|H8=&RnzK4~S7ML~nLX^%s-Vqc^aWy7N$y57qciZGcqy#=zU zs8hcHiI=D$+RB{|62{ohCTiaML6FI4Uhzo5D{Jik@poCs0w7F)*w}F4r0sJ~#u-72 z5bK=ANt=M$Dh5NKnxGsg9NRR?WD-x|FhTwBjd zD<-K>44DB~i%frJOfnzh1R>PRY34kw!6~p3M$JLaD1r@`=h)~Ngks-(gdXh^Q?BTP zZ^Zj5w1AwtuR2$~E7s9iZdF}z%pv1em^V2rM{1tLUY@-+Sc0(9jA|iZWml1;v13=U zHf?y@#mb--7z6$ue>`qjhE~brk$AY-RG90~5wcBbDReXR2)pKg{L>;H(DI`U!MLNQ zY9rFJP@ZQ}jlcMh%WSCo%vf+nd0Gmd*F%KMIe>slCUh)8Ma|;M_I+v#;|ueg9oLg; zq2HtZX%&#F7vdpNlkX?}(C7dGC^y#NB#m4%69RzTNrk%4ol~hSI%>2r6B|*ZkW(*P z;u#s;+faHo{tfy+1L^RzWDi*^JR0iY(zJDB36y_QJ+|E-2x+cY z!V8uLNktH~q>WQZuY!Ap66WP|E!0PA1jK~)^8oJVGbspJs6QL!!-5Qm7 zHYI|_`Actg?vDzdg5{86w@GS$G6ANzff7->6i5pB$T4O}`fZ_;{217Om0gN5zTr12 z5mW{hCzCE-QubjxN$TAE-XgI-8dTY@OZmq`y+y_>dk*(qXF0{nam|q@~i}Utp*k{yurq(DW54hkDT4bbg z=_etM?Nf5W^o-HEu9_?&xEqPg^P^mTxLH8n%u$!mWvFG|{&)jtnU&6|5-`~eaNz0%D1BDo`{ zS1N5(KW5v^2eLdd_%`uaRndF@h0Uo6=M|8?b~KbOLZk{HXEnGmtgZXf2inI*1r%n! zQ3&%RI4r{f&dwW~HwH0Ked9b!k6{>_19H z_Ai>5IChDMY(FfMyG%;30?SQ{iV9KyGru62+Y)~qSQ91}b~}w<&*}R&1c#$O`H@~c z5)2S_eXx}M#N{MuGeQS9@#UJB@;W_j50b}jIhxMPloEFQZdvwxiU^RYycTzgK)-vl3LT&$L8~@68$C8~5_U{cR$E#w*x65(qw&eoL@>%ZHvj zWnEMlSh*(o&oy|J7eJ5OD`ssy%F?*Vp?`Cq;FShyl{ZoKCG5g{y}>usznni#8ki(i zO{w@n{iAj1_ooX@+s*!uW60WcH~*bNOT6z%0jVML5};wVrQp~`Uss_{cO2oud_nNA8^B$?07fJ6?iI)Q zuo9G)O-z)DqstrBqf>B%S05hf-wep0@$BFHKSrkZ{za3D)yVzRz)2{wf8(Wp+xyAM z$rtyx$gi3A=V~V!`Q3;BM0$>*VVtxEM|xDL^gew7ydy3Q6YzD&THRz*q33Ms_D;M- zbCx1Ft#UNB)V3bf`~{ImI72OTp^|bF8?G8#FRj+Biy8ET5#rA3sd|0FR@U(LAJ%w8 zS1%n8Z=Amhw)92rIsof=YVWF4jw&F*j1LG@-`+cR0-~2LqXRH8(Ccne{y#MCPncF64U`0uO zWmi$dlii~1D0rLR{qc|_2M!C$t8^=G7xQY)9!#Y331A|>N)EhmyVdLWL9I3YLJ`7? zZmpqUJB>Ni9oiL)^1IK1UoMyhWE{$9M2M6Xi zPKk7GpMsA6vjZbU7~i+u|J6Nk|Ci!Y3UMUT2|`M;JsNQACdJ%ooo9Yt{?A+0hMpxi znEa~~sxC>rKrU6bd=WRb;%wsH>A#j4{({&1GYSNR57Gama(3)2A;SM>qop}l>Jk2* zn1+C$fIxuwzg3mCU#SOqb-wOCb6mBcYlA5+mt<&_J~sBxc(GQtBFINUO~Mr7<-uu($>P HJ4oML2Lo<@i8BwbL^1~GkG`E7C$SEa_ zF^}Ea+#Je`Xy6;#D0FPnSrR%Y!QGA~NA^{oWmW8C<3dr{x6wWQ{4+bzemqV5W$i5~ z=J0jXZ>uZb>DT@0Ks?4QJ{`z?8JWl3$y;2pj#$XP*pv$>$g(z43{YH9KmmR6<#sIn zA`#=0#sgycaBQ^&}Xba!|KaZ8~b30v~nLt z9%#gz_*=~KD{3t^X~l>480*}PhKN=??g`RV|4Ud{Gyyl187MJ}r(#e+H$GEdI+p1s zq_25h;fV)$EPK%Dw-(G=f`yHB-_tttsC!?k7*#!|4a>`Ahj8nm?&n>NRs%jkZW^3-0P_yMP5&*6a26{MRj1&TPF zyE#|c)5uUHzMWx=rMKpuPih*V=S;W3MzIZTw2uTbr}8`p2bm+Z6Sa%vvWAWSf4H)p(+ zSQ8;EvUa#wqWV+9vmIio(%7wukK2SwjUS8Yl%Rq%=~PU)2$Tvm6`1!r3H@U#_|bB0 zmlT1PS3wPB(b&^+@YY7Y$n4l3mV3-X0$>z|gZp6O*Lhzn&?Gad2ZCF;+#95-Y?#y+ z?*l@Yf=a4w{Px=o!N|3~_XKfk&G;fN>Ps&dp2FpA~qD=0~=!NOS@B#XAKKkND>Y{4>rqxrViKD7;?>j8`R` z&G)3FN|dfsxnaI^!d1G%=>AbTTxZWo;n-DLrQ!sj=f~VAOe5zhGS(dgx|!ls62fbX zV@<7Ck^!}R=`Swr?(7w1rY6Nmq~sfXJ?TiKJLn=&SQdEt9$@0 zA+h1Wbwbri0s-stc8yVq;mRa6@kEf8^KXUz&jcic!+avDvvJFa>k0ioWug=T3oPw; zyj4it&0@>_*uI@2=^+T7sL1_!^aJW@Xfo8aC#3^WtQC7fET8b9C} z*u^ue6Ojn z7@(eskJ2+cNnH9~VyfIh<-|7!je~vGy*odz(sk-u$~SrYF3glruZ*W`{sqnS+9=;Z zh{D@MSG91%lr&ua8%$sJF%y1I<|e;EdfJykY8#D$Hc_81n5`$7;1N|b0tvvPLzSg& zn7!5x?T*@rQUKcUhTIjV(rw*5oQYlm5DbEO?60#mohHfbR$3_x#+PZoYi@Vd4`#YgKyTd^!4n{fN~WZDY61sAOm6 zl!d^i*a01QxpWM9Pcl?&{RgO}uq%ErOk5WpECvnfEh!*YP&1Sl)uTN4hg??Vqs~i5 zYsfufz3?{TtwuBN=`0~Qg1PlWH#OGG$ zLLWU17$v``)CE1cds_7kj8mJ{-+l8{DS|zAQ&3|qpOY=!J|kXUhXue9|H>4gqk|n) z-i34GmxLFj8asb3D#D&=ya*a5`C<=o?G;Ev^LV%;l#nH#O=7Nh@z1Do>j6Q;I5S2P zhg|AZbC&|c7}uSJt57s2IK#rSWuararn-02dkptTjo*R{c5o(bWV}_k3BBnKcE|6l zrHl&ezUyw^DmaMdDFVn<8ZY=7_{u{uW&*F<7Al6};lD(u;SB=RpIwI)PTyL=e25h* zGi{lRT}snjbMK~IUx|EGonH+w;iC2Ws)x>=5_{5$m?K z5(*1jMn%u0V1Y%m@`YS3kskt~`1p(rA4uk;Cs!w^KL$w>MH)+cP6|XKr4FfHIATJH z!EGAK4N>1yFR`-zW|w%ByRe#=&kA&#WyUldDGpt!wf-8SFWiSi!5QZL+l7*CE?u!NW1T$<1rdLJ9y3u{_zvHaM?#Rm4 zFk}^1!ffcrB|XK3gsO-s=wr*sUe&^$yN|KxrA)uW00Gu60%pw_+DcUjW`oW<35OC8 zq2{j8SgC}W$?10pvFU83(SL$%C?Kctu3*cs0aa%q!fjn1%xD*Jrm!F3HGR9-C{b?- zHp(cL;ezXMpL@0-1v0DMWddSDNZ5h?q50cOZyVi#bU3&PWE=(hpVn|M4_KYG5h9LffKNRsfhr^=SYiKg?#r&HNMi2@cd4aYL9lw(5_IvQJ zcB*DD()hUSAD^PdA0y|QrVnqwgI@pUXZXjHq3lG2OU&7sPOxxU$Y3&ytj6Qb=2#cC z;{d-{k|xI*bu+Vy&N+}{i(+1me!M;nshY_*&ZQLTGG*xNw#{RpI`3^eGfHck+*38NRgiGahkFethtVY=czJs#)VVc{T65rhU#3Vf?X)8f0)X{w!J3J{z|Sq|%?)nA+zo?$>L9@o`Kc|*7sJo4UjIqu0Ir~S5k^vEH};6K?-dZ0h*m%-1L zf!VC%YbM1~sZOG5zu&Sh>R;(md*_)kGHP)<;OA44W?y53PI%{&@MEN}9TOiqu+1a3AGetBr$c)Ao3OX>iGxmA;^^_alwS818r4Pn&uYe^;z6dh z)68T|AN=hjNdGpF7n>y+RTAZc9&opTXf zqWfK_dUv=mW{p_vN>|(cIkd(+Jy}qnK{IW%X*3!l`^H~FbAHwof+vLZ0C2ZXN1$v7 zgN&R9c8IO`fkR{6U%ERq8FN<1DQYbAN0-pH7EfcA{A&nhT!Be>jj>J!bNRw4NF|}! z1c70_#fkk!VQ!q1h2ff@`yDyrI1`np>*e#D4-Z~*!T^8#o*$V~!8bWQaie?P@KGBb z8rXc!YDL!$3ZgZZ%;-%~0Kn<+d+{xJ$stQbtN8GWV?MCJvzPU|(E(1z;rFw{&6vy) z3*@y%7Tx8rH-p$boS>bLyod?OKRE8v`QSBvGfY6f}_{Zo1q85xoyOF16n~yHx2W ziydUoYLkJmzq|n&2S(O!ZmLdP1(o1Jsq88cX)x3V-BK5eF&0e_0G!5?U7&3KN0`mc zH&Lt)q8!d_VgzxyL^(@xrbp2y)Hmr^V48));RSfE=*Ly0uh9!$3dv-vMZr2URf@l5zdwLjGZB zugY>7_fd_vbV*Qv1?H~>Z%RD%nEeFSI$n$$Lrpc6g>i4+XdBB!%zM$Bhrz5Swzyg? z$~I~n@~-wTBY3-T&pr+|gC+OHDoR?I(eLWa{Z#Rsh>lc~%u0!&R|s0pA*w<7QZ}{i z*AFr~0F3y~f$MGh_HDL7J_1?SxKL}fWIk!$G}`^{)xh*dZ5kK>xGL9>V`WZZg_ z)^Vm)EQK`yfh5KiR(vb&aHvhich z_5o+{d~0+4BEBqYJXyXBIEb1UgVDs;a!N2$9WA>CbfrWryqT25)S4E4)QXBd*3jN} z?phkAt`1rKW?xoLzEm!*IfkH|P>BtECVr0l8-IGk_`UjE#IWkUGqvyS+dMrCnFl<7RCgSMX^qn|Ld_4iYRldO zY&cHhv)GDo8nKvKwAbfyLR%t?9gG?R7~PSD#4D-;?F&!kV59O}neYut5AGbKwy-(U zqyBi=&Mgj|VIo>$u!DHM`R7O?W8-idbePuxiJMH``6c_5L-chKd}=rGC5Gfrc{f!* zWFEBm?l@_b7kzY7%1RQQbG5V<4=ZlkZ%sF74Q|mKOc7Ak7dP2#quiGcZ0_J%7Q?j{ zv9{WFw;n5G-Mn%r#0R;{jLt{yy}9J6rQ(>X9pJ`7Xy?Zv z=lNit#qXaq?CnElK^zF~sG}U5oCpR0T>FH=ZX}Prju$);?;VOhFH8L3I><9P_A|C+ z{;>~dk%9rrq(snjsEm}oUz2FQ21MCG*e?g)?{!&|eg7PX@I+Q0!hL6C7ZVY|g2E>i zr!Ri2@OfEu$)d52+>+cpgh6Z;cLYCZ&EMR0i<^~4&wEu_bdo;y^6}+U2GIQgW$|Od z_jg{O=pU>0-H$P-EOlWyQy#W0r@@_uT}Lg+!d5NxMii7aT1=|qm6BRaWOf{Pws54v zTu=}LR!V(JzI07>QR;;px0+zq=(s+XH-0~rVbmGp8<)7G+Jf)UYs<$Dd>-K+4}CsD zS}KYLmkbRvjwBO3PB%2@j(vOpm)!JABH_E7X^f#V-bzifSaKtE)|QrczC1$sC<<*Y z$hY*3E10fYk`2W09gM_U<2>+r^+ro$Bqh-O7uSa)cfPE_<#^O) zF+5V;-8LaCLKdIh3UB@idQZL`0Vx8`OE#6*1<;8(zi&E7MWB1S%~HAm%axyIHN2vd zA(pJGm_PraB0Aat3~?obWBs?iSc*NhM!{-l_WNCx4@F7I?)5&oI|z{o@JKd1HZ}zf*#}JjK3$ z-;3V*WJZvUcKvSOBH4c7C{fl8oRw8-vfgKQjNiR|KhQ%k6hWNEke(k8w-Ro| z7Y3)FsY-?7%;VT64vRM)l0%&HI~BXkSAOV#F3Bf#|3QLZM%6C{paqLTb3MU-_)`{R zRdfVQ)uX90VCa3ja$8m;cdtxQ*(tNjIfVb%#TCJWeH?o4RY#LWpyZBJHR| z6G-!4W5O^Z8U}e5GfZ!_M{B``ve{r0Z#CXV0x@~X#Pc;}{{ClY_uw^=wWurj0RKnoFzeY` z;gS!PCLCo*c}-hLc?C&wv&>P1hH75=p#;D3{Q8UZ0ctX!b)_@Ur=WCMEuz>pTs$@s z#7bIutL9Pm2FDb~d+H}uBI#pu6R}T{nzpz9U0XLb9lu@=9bTY&PEyFwhHHtXFX~6C zrcg|qqTk(|MIM%KQ<@j=DOjt|V)+8K26wE_CBNnZTg+Z+s}AU|jp6CFoIptG1{J*# z7Ne~l;ba*=bSwAMQ|Vq#fW~+je4PXA91YFzBubNF?ovIOw-$C-8=Ehed{lGD0}(Id zRe4sh8L>&T%{>8o))he}eE;5_ zxoXk3wX?MyNl-xF!q1d$G?=wp^`@09(jU&X zOqZIBI#dN`2PJNdATR3ivtub|nO$dulSaP|e4)WXF1YAGN1pDQIbIjXFG!oC85Mt; zW$eteoL{y^5t4TMRwP$jNPjZFpGsWnGe=jMMqKtcZm9Y9PFZLi*1p@qoKKub^T@2+ zk$@*KYdQ?Z`}<%4ALwk*Yc{(WTf@#u;as(fvE^9{Gk)lWbJP*SjttWofV0s?AB({~l zZI1hZVWFT~W-T?nfMMcnCS4-#6H-MU7H$KxD;yaM46K4Kc@~Q>xzB+QnD_I`b_l3m zo9pRx46b!p?a^&zCDwygqqV3epjs(s0NQI6ARA1n!Yy-qduipxQ& zUAlqRpNjBS+y-ZheD(!R;F}&^V_}b_gqH%tVZ5%%ziO7k^w=es+wZtK^i*vmrWNLMs{oWu_CIov|s1raZiS)>38>pYu;i+-t zI_DiNe6aA4KTZ2P09qPj(0~K4nUq^0+f(2$g`229zkG4jLzRvJUWE0oF1XHL4t3UN zDH466G56sy9hTZoAJB!C3;@F;ONxEk5u6Mv%zdo}Rq`=* zw1n7MOhfNSV48TS989ArIcj`C%Gk8~93~u>)!Yt2b4ZriKj9x2d`H2HQNJ=I>hkDlcZn zqRj>!;oRMTIOu zx|Zfsu~v76T{z7AC(jxj^c@tnJHZtGPsq$DE!8kqvkDx5W?KUJPL+!Ffpwfa+|5z5 zKPCiOPqZZrAG;2%OH0T$W|`C@C*!Z`@Wkop{CTjB&Tk`+{XPnt`ND`Haz;xV`H^RS zyXYtw@WlqTvToi;=mq1<-|IQ(gcOpU%)b#_46|IuWL#4$oYLbqwuk6=Q@xZaJSKVF zZcHs~ZBl;&lF3=+nK; zF`4gSCeZXlwmC_t4I`#PUNQ*)Uv&oGxMALip|sxv^lyVV73tKI7)+QY5=tEMas{vTD-BaTJ^*Y6gq~PU;F5X!sxqiq$iFCo+Uv7m%1w((=e}Vf*=dtds|6 zbX}91!G?C*KG03eHoN}RZS9DJxa&8YwNCT8?JxMXyZqZr13NA|GB{+vG`08C{V(yy zf*Lw$+tYSU_+dI`3n{bMrPdDb`A=Mkg!O=k>1|*3MC8j~- zXL79J4E=U^H=iBLTeHE_OKzE&dws8RNynsSJ!d;`zK?P92U{f)xvD7VQVosrXZrL+ z6lMVdD1YgL;%(1cq{#bS6yXmp|DS@nax#AqqlZhtUQdh<^2vr5`EpAO

LGYq)sa(w9^3-f}NHy=GR4v%t2YZly3m1G@5y`xBh_HGrD%f z>;|Ty?9FiJAc&UVD(StT4I` zfVQwxhE9bXE6r2mKO8Ag7{L^jCyqQb0QqKDPE=RAgqn8q1O^>(z7h5kE(6va%QqRZ zkIOmp(})rLSS(2{=C12e&@!W2=Jel-^_R``0xHO^+t!(oXbcv5yhD4g*$t_F)_5Dl zSVCgesW%;DtYPCFs{G;GX_o?1J3;QQPPv)rWw;>} zJ&KwnUqwNXloNXlK_+pNDfI~hON#SokVJb&ilg8d7^NWo2ZQymCqQMnjfi>ePibjr z-Z@q!?RGN$Mj}Nk){X_vaj6?Mj$>ACR*z|6MsXy3VZ^PFn@yHkPo(>m(iWepn8SC@ z>D2;R4m+gDRZ=SIX!b+CP(qE=JDIUkn=D$aUu+Ihn9-+k1LS3PreQg0N5eWIG@x${nC3v^7caS>1!PKNAY9J z#}E}Q9w#SP>(GY7Hbj&z4$Li6o5taBO|4+F`yS9zq*LJ<38wy4I>HA9(&GYrk4dLajKGww))BWli6Ln1A^Lda@N~p+snkb9C z@OthI+<##vp8!HVQT4Wk(=@zQ{OvZ$EKWS73+JHb)eYLGD-cqi6^|vd$<+IHuc?Nq zW7JertT~3))4?J|28n$I@nAD0c1%9C&IVhEZX~mUsf{efyS(XNG%ch;!N~d7S(Ri7 zb&=BuON95aVA&kLn6&MVU|x}xPMp7xwWxNU1wS+F6#y}1@^wQZB*(&ecT?RnQcI}Y z2*z!^!D?gDUhc@;M^OpLs4mq>C&p{}OWVv<)S9KMars@0JQ{c_ScGsFo3BJ)Irg++ zAWwypJdTO-_{Uh8m(Z!3KL7K{ZZzKHj;{M8I$mV>k znTM?sa0);^=X^cglL`uC+^J)M7nEa$w=VwFULg~%DJllw+7dJAj3{qnP5i3@wr7%y zjXp?Wl2%Th=my&3u?Q$RV6N5tzKMSPTsc#J+-cDDp~qFB6bL2C8AS7Y3PKtVhdhl) zIaLqH5+OnWPWSt(lQCgkN8lczc-V%_iZ{>#1%Z$N*>lu#S;0MZ$T2Y8Kg!U;hAZj> z6S#%$DQ_`Ic%Zr@?}GgjRXg@qTj^17n`65oJ@Wj0u1X8&+UVd|Xs?J+i_^GZ94m6= zUc96~Q`OJvlKB_Lr15*Yw_PUPEr?f?H&00b^-W%26mD)(n(rGGNfK9~2h=C>p-7BZ zFd&*&Msdu{w~(eyFOglwCPH^Rb}O(N7LtS+nnEwDx*pGD?|&9Si~M43a+*L(b0$5A zv`T`(G3xO;I_sx;FwTP21ZlfDpz zOo?}Vlgf~fo{YWm@n_JyD*frOg{XsvBA~|Tn4V6hu>Gd>89-rblfVJUaGvj6X%NZ} z$tFF9sx=4_$*c~G`9iPLGh@=sV+O{D2-t*K@J7H=`V+oVt}8?04WwU3h1BgS!f%1P zFak-T#7`TtLcR=Yz>g0R!ZQrH!YiZOQN=_V-UyncN1Rc18?KY?#O`v#JK+pq0K$~H z3D@v9DZF42R)b9#BBX{^$DOMlJ!g)Gc za{o-1e%F6NvgKq9tC8pV+9S$;9*zNv{J*)n&dmf~anP1)4~N%~h#c(=B#3*KgzhCKhFdgDoWi2IDog{RVyzK|Y`rCUs3T~pJMmdZJy4?b z&s5G=zhf**(t7Y^oC_mcTsE-{^}wiaoUu&?kojLKs>SJPxjcP>{a5CbXCx92AcBE) zHtqP}LjZ{W>PH?Tu(E0X=%{PBMW@F_?#7b&#!^q`<-5$ur+-q6 z{dn=(^UZw6*3-XM_(=@<1_*i&XM4=0t5u!gm6 z{UlmNGPKgO_;e;q9|#esq~Sq`<}%d{+sRmhvsA{5i*91=tub>OZZ%)xUA#4q$dDyy z1`w4%?OPLg3JeZb#cqSMO?*Xn%|-FCcuH2i2fn_{IFusub6;NQdN|7TD1N?%E8*g? z$apAt@cEe!I%jB=*q$p_3=t_5R0ph%{qaq+QDg!c99Y!Xa!&oDZOeis_ot)gNXr{l zdY$|So2Qed2Y7KMNBrS^E169kG%h<+z{Z_p_;shB!uY)>yAVcK=&!bg`lVg)4T1|7 z0}7FpfydVH4F87K@c!nEG+WGKm{Ouo)Slpl;#qcEIQ0zdMfLA#;dBxYw;p;KoVv6| z3_D5&7rJdG12CnDSvZUW?$UC6^UVSW^|vw|o-_4bz)(w5(3AiVhpeT(|=f#x_}E?s#qHZF#xA6AF_ujl$G z-jHD%q(d2}v2PhXx&6YWps~m(^+RXl91Q#xRRJBhjKl$FG4bk);|ag;ieUZ&!Ii3$ z(iGz1+0m7#g5>ASldBbNZL=ZHh=tmmJt$!71; zIML2GhEz1pg@1rQN(M^_691wAGkJ@Pga_05WuQ6! zG5RkGY2^`@(H~pp7&Ga+Pwh3L!Njj!-rc;^bTIfo5hP@H##1X8xUZJckrx>id`bAd3QUx9GuomqBYZ!uN1-&o zvTxC?;p8vL67&fW8fw(YOqt>L@bdLrEF*3OgYe$4n4{ zEB40LiU#6-0@5jdN`0w}N0qi@c0~oT2FP z)LNk&a82my?jv(tQpiMi$TK_L@lub#lsM$R{Dk?Ya@%%%huZkct~tSWM714c!45k}-ZLVA-bVM`>|_ZBbW_m-7| z3U%xrAhi}n?T(2F{_n4EZ10inkIFl#y09?7$uwBoJgqY8vylwev)fDOn;>0R!aEnV zBz%j0Mqpx~EZU3q@%+oV7;}|vt7$~ou@faEIq{p?FY$XXg&6*K)b_LP=}gi9`Bij3 zN`zEo|B6*|-;>S`rNa^BKRDbDAk>X#MsR`EvL>6bqU@SaDDs z8>bu@3YdRaWs*Te@G-UHjU%F~kTHw5(0PVJ+pwh#ha2u;DB+UMo@A5UYIl#5rtBV- zGX_hIpw}3C@H*Us(Cc-d#-gNrG#w$(9+S=GxO>3SR`SE2fHZ2KrDc#_C^$jI>Y}#; zMwY=R6@+dWi~0RXw(c@3GZ&%~9K(q&ee0Zw;pwL`E_tZak-#8^_b)Dpyi73^he?xV zXJ08&wh5-M&}qy4f7!D&=E)puDD(Nmg1d_(j`4LvxM5x_huNg-pGG%9rYqO6mImyJ@}*3Y>^3OvcnTG%EV1) zq_Ap?Z!Iw__7#D=pOWnQN$gB!Mr0!9yx|g<4icJh{cFOu3B8}&RiYm+Mb;VEK``LK zL(NcpcTiGieOIssSjr?ob}^``nNf&UcJhXyncO9m{6gD$kqSD`S69(aF8dkWz5>!9 zBLe4Sib7Hs2x_L2Ls6Ish$MGVKrGt5+_2zCyP1byaCg3upo+-I}R4&$m)8 zQ7|jc1Z^VWggpuQj*cP;>Zo9LS!VSzrqmZczaf;u`d0J(f%Z9r%An@s!e>n9%y=n!IZ_tVGu{Jmsbp}Fk%HJIU?a+-~bjfLTuH|JExA8EROowzr zqW9{YyZhR0a4clRK>1I4Ncx&WER~{iE;F^$T7K%X@3PGOA%6#Z%p3TS^&M;Dnjw@i z^o!$9nhcsmcHcY4?4j9+ofL_CWsZ4Hcch(rjsGfGD(nsH>w}^ERqGnz%iGj0j{g}h z7wMkJ-2Z2~eS>2!i}0~B63i;>SyFJU2+>VCS^AxaDOx%g6-t0eM^P<3+*z`ztvOqrG3)&#$K?& z_Y0wbWID47@cU`E1A6A&!`aZk0ZE@z-h#l1NqX2#`$Uev2gepW`rf8*!=rD5&;Jb{ zl08rU>dPo=K%-1Ao1~G-@4ve~y5#9E8x;TE0k5d^TC(=Zc>mwjW^c=+U-<9}b0ku~}gj z3sbW>R2M6DR!g#NUP;nxo>)@7*=RP{U18SDop6b2&PHce^&h97@xx3t+VK+!keE#} z;(Uf&89as9k8{$nkLbuB!-d7TP`_VJpL^Xs8OKB~ri$YUbW8fch64}7|0EWoT(TRj{ z*GT<7Y<7DsrCi79ZsM)z#c(!nNOGySOCkY1fAuQOq12&iUVC!a`#O;dBLf=d?&4*B zI~LgAO7E0qxK(uRTM;IgJ}+z^gD+bi-6I!3x{r9`l~%8TRP%UE0V8E*Sz>Nl1NVG<<7(wDHZ+HcOkQm$O&k+vyx)y)x{Pz!U8hS$*m zByc0h6BUI*BOpuL==P+H|Hx%`>7!W+1H!l9vi&)`V zyn2o9{z=lc+VX*!Vh~SF=)L}Z40XeG>LF6cP^b+R$NxSeUqbK^Q*UTalKzP8X%{9@RSCXm_NhF>{=S2 zi}ezam_^P`S!!-cyEW9y7DBbK93roz@Raccy*v}?mKXScU9E_4g;hBU7}zSofAFda zKYEe?{{I54 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 8e876e1c5..fb602ee2a 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,7 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionSha256Sum=1541fa36599e12857140465f3c91a97409b4512501c26f9631fb113e392c5bd1 -distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip +distributionSha256Sum=31c55713e40233a8303827ceb42ca48a47267a0ad4bab9177123121e71524c26 +distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/gradlew b/gradlew index b740cf133..f5feea6d6 100755 --- a/gradlew +++ b/gradlew @@ -15,6 +15,8 @@ # See the License for the specific language governing permissions and # limitations under the License. # +# SPDX-License-Identifier: Apache-2.0 +# ############################################################################## # @@ -84,7 +86,8 @@ done # shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) -APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s +' "$PWD" ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum diff --git a/gradlew.bat b/gradlew.bat index 25da30dbd..9d21a2183 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -13,6 +13,8 @@ @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem @if "%DEBUG%"=="" @echo off @rem ########################################################################## From 197cb12be273cce67a568b8895b76dcfcd285cf0 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Wed, 9 Oct 2024 15:28:52 -0600 Subject: [PATCH 066/136] Update fabric versions to 1.21.2-pre1 --- buildSrc/src/main/kotlin/Versions.kt | 10 ++++++---- platforms/bukkit/common/build.gradle.kts | 2 +- platforms/fabric/build.gradle.kts | 4 ++-- platforms/mixin-lifecycle/build.gradle.kts | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index e95d6f6be..e0eb26691 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -9,8 +9,6 @@ object Versions { const val strata = "1.3.2" const val cloud = "2.0.0" - const val cloudPaper = "2.0.0-beta.10" - const val cloudFabric = "2.0.0-beta.9" const val caffeine = "3.1.8" @@ -30,7 +28,9 @@ object Versions { } object Fabric { - const val fabricAPI = "0.104.0+${Mod.minecraft}" +// const val fabricAPI = "0.104.0+${Mod.minecraft}" + const val fabricAPI = "0.105.3+1.21.2" + const val cloud = "2.0.0-beta.9" } // // object Quilt { @@ -41,12 +41,13 @@ object Versions { object Mod { const val mixin = "0.15.3+mixin.0.8.7" - const val minecraft = "1.21.1" + const val minecraft = "1.21.2-pre1" const val yarn = "$minecraft+build.3" const val fabricLoader = "0.16.5" const val architecuryLoom = "1.7.413" const val architecturyPlugin = "3.4.159" + } // // object Forge { @@ -63,6 +64,7 @@ object Versions { const val paperDevBundle = paperBuild const val runPaper = "2.3.1" const val paperWeight = "1.7.2" + const val cloud = "2.0.0-beta.10" } // diff --git a/platforms/bukkit/common/build.gradle.kts b/platforms/bukkit/common/build.gradle.kts index eaf1956cb..fb3b1cc8f 100644 --- a/platforms/bukkit/common/build.gradle.kts +++ b/platforms/bukkit/common/build.gradle.kts @@ -11,5 +11,5 @@ dependencies { shadedApi("com.google.guava", "guava", Versions.Libraries.Internal.guava) - shadedApi("org.incendo", "cloud-paper", Versions.Libraries.cloudPaper) + shadedApi("org.incendo", "cloud-paper", Versions.Bukkit.cloud) } diff --git a/platforms/fabric/build.gradle.kts b/platforms/fabric/build.gradle.kts index 631424699..ce627df4f 100644 --- a/platforms/fabric/build.gradle.kts +++ b/platforms/fabric/build.gradle.kts @@ -26,8 +26,8 @@ dependencies { modImplementation("net.fabricmc:fabric-loader:${Versions.Mod.fabricLoader}") - modImplementation("org.incendo", "cloud-fabric", Versions.Libraries.cloudFabric) - include("org.incendo", "cloud-fabric", Versions.Libraries.cloudFabric) + modImplementation("org.incendo", "cloud-fabric", Versions.Fabric.cloud) + include("org.incendo", "cloud-fabric", Versions.Fabric.cloud) modRuntimeOnly("net.fabricmc.fabric-api", "fabric-api", Versions.Fabric.fabricAPI) } diff --git a/platforms/mixin-lifecycle/build.gradle.kts b/platforms/mixin-lifecycle/build.gradle.kts index b7d209b7f..35461fc0a 100644 --- a/platforms/mixin-lifecycle/build.gradle.kts +++ b/platforms/mixin-lifecycle/build.gradle.kts @@ -15,7 +15,7 @@ dependencies { minecraft("com.mojang:minecraft:${Versions.Mod.minecraft}") mappings("net.fabricmc:yarn:${Versions.Mod.yarn}:v2") - modImplementation("org.incendo", "cloud-fabric", Versions.Libraries.cloudFabric) { + modImplementation("org.incendo", "cloud-fabric", Versions.Fabric.cloud) { exclude("net.fabricmc") exclude("net.fabricmc.fabric-api") } From 2ccf8a8805e2cb055575ae2ad1df0f087d9da2e5 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Wed, 9 Oct 2024 16:18:47 -0600 Subject: [PATCH 067/136] 1.21.2-pre1 builds --- .../config/BiomeParticleConfigTemplate.java | 2 +- .../terra/mod/config/EntityTypeTemplate.java | 2 +- .../mod/config/VillagerTypeTemplate.java | 2 +- .../MinecraftChunkGeneratorWrapper.java | 8 +++---- .../terra/mod/handle/MinecraftItemHandle.java | 6 +++++ .../mod/handle/MinecraftWorldHandle.java | 4 ++-- .../entity/MobSpawnerBlockEntityMixin.java | 2 +- .../terra/world/ChunkRegionMixin.java | 3 ++- .../terra/world/ServerWorldMixin.java | 3 ++- .../lifecycle/DataPackContentsMixin.java | 23 ++++++++++++++++--- .../dfsek/terra/mod/util/MinecraftUtil.java | 3 +-- .../com/dfsek/terra/mod/util/PresetUtil.java | 21 ++++++++--------- .../com/dfsek/terra/mod/util/TagUtil.java | 14 +++++------ .../dfsek/terra/lifecycle/util/BiomeUtil.java | 2 +- 14 files changed, 57 insertions(+), 38 deletions(-) diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/BiomeParticleConfigTemplate.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/BiomeParticleConfigTemplate.java index 457566444..8962f585f 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/BiomeParticleConfigTemplate.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/BiomeParticleConfigTemplate.java @@ -29,7 +29,7 @@ public class BiomeParticleConfigTemplate implements ObjectTemplate> { @Override public EntityType get() { - return Registries.ENTITY_TYPE.getEntry(id); + return Registries.ENTITY_TYPE.getEntry(id).orElseThrow().value(); } } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/VillagerTypeTemplate.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/VillagerTypeTemplate.java index 79eb55193..b4b95416e 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/VillagerTypeTemplate.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/VillagerTypeTemplate.java @@ -15,6 +15,6 @@ public class VillagerTypeTemplate implements ObjectTemplate { @Override public VillagerType get() { - return Registries.VILLAGER_TYPE.getEntry(id); + return Registries.VILLAGER_TYPE.getEntry(id).orElseThrow().value(); } } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/generation/MinecraftChunkGeneratorWrapper.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/generation/MinecraftChunkGeneratorWrapper.java index 9ede6950a..59eac0c3a 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/generation/MinecraftChunkGeneratorWrapper.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/generation/MinecraftChunkGeneratorWrapper.java @@ -35,7 +35,6 @@ import net.minecraft.world.StructureWorldAccess; import net.minecraft.world.biome.Biome; import net.minecraft.world.biome.source.BiomeAccess; import net.minecraft.world.chunk.Chunk; -import net.minecraft.world.gen.GenerationStep.Carver; import net.minecraft.world.gen.StructureAccessor; import net.minecraft.world.gen.StructureWeightSampler; import net.minecraft.world.gen.chunk.Blender; @@ -215,10 +214,11 @@ public class MinecraftChunkGeneratorWrapper extends net.minecraft.world.gen.chun logger.debug("Loading world with config pack {}", pack.getID()); } + @Override - public void carve(ChunkRegion chunkRegion, long seed, NoiseConfig noiseConfig, BiomeAccess world, StructureAccessor structureAccessor, - Chunk chunk, Carver carverStep) { - // no op + public void carve(ChunkRegion chunkRegion, long seed, NoiseConfig noiseConfig, BiomeAccess biomeAccess, + StructureAccessor structureAccessor, Chunk chunk) { + //no op } @Override diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftItemHandle.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftItemHandle.java index 4efce8105..5c34eb82c 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftItemHandle.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftItemHandle.java @@ -24,6 +24,7 @@ import net.minecraft.command.argument.ItemStackArgumentType; import net.minecraft.registry.Registry; import net.minecraft.registry.RegistryKey; import net.minecraft.registry.RegistryWrapper.Impl; +import net.minecraft.resource.featuretoggle.FeatureSet; import net.minecraft.util.Identifier; import java.util.Optional; @@ -43,6 +44,11 @@ public class MinecraftItemHandle implements ItemHandle { public Item createItem(String data) { try { return (Item) new ItemStackArgumentType(new CommandRegistryAccess() { + @Override + public FeatureSet getEnabledFeatures() { + return FeatureSet.empty(); + } + @Override public Stream>> streamAllRegistryKeys() { return CommonPlatform.get().getServer().getRegistryManager().streamAllRegistryKeys(); diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java index 40084e9d4..9b7987cb5 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java @@ -48,7 +48,7 @@ public class MinecraftWorldHandle implements WorldHandle { ". You are advised to perform this rename in your config packs as this translation will be removed in the next major " + "version of Terra."); } - net.minecraft.block.BlockState state = BlockArgumentParser.block(Registries.BLOCK.getReadOnlyWrapper(), data, true) + net.minecraft.block.BlockState state = BlockArgumentParser.block(Registries.BLOCK, data, true) .blockState(); if(state == null) throw new IllegalArgumentException("Invalid data: " + data); return (BlockState) state; @@ -76,6 +76,6 @@ public class MinecraftWorldHandle implements WorldHandle { if(!id.contains(":")) throw new IllegalArgumentException("Invalid entity identifier " + id); Identifier identifier = Identifier.tryParse(id); if(identifier == null) identifier = Identifier.tryParse(id); - return (EntityType) Registries.ENTITY_TYPE.getEntry(identifier); + return (EntityType) Registries.ENTITY_TYPE.getEntry(identifier).orElseThrow(); } } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/block/entity/MobSpawnerBlockEntityMixin.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/block/entity/MobSpawnerBlockEntityMixin.java index f90a7ba46..5900bbb8f 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/block/entity/MobSpawnerBlockEntityMixin.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/block/entity/MobSpawnerBlockEntityMixin.java @@ -55,7 +55,7 @@ public abstract class MobSpawnerBlockEntityMixin extends BlockEntity { public EntityType terra$getSpawnedType() { return (EntityType) Registries.ENTITY_TYPE.getEntry( - Identifier.tryParse(((MobSpawnerLogicAccessor) getLogic()).getSpawnEntry().getNbt().getString("id"))); + Identifier.tryParse(((MobSpawnerLogicAccessor) getLogic()).getSpawnEntry().getNbt().getString("id"))).orElseThrow(); } public void terra$setSpawnedType(@NotNull EntityType creatureType) { diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/world/ChunkRegionMixin.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/world/ChunkRegionMixin.java index 90378269f..b0ca554a3 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/world/ChunkRegionMixin.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/world/ChunkRegionMixin.java @@ -18,6 +18,7 @@ package com.dfsek.terra.mod.mixin.implementations.terra.world; import net.minecraft.block.FluidBlock; +import net.minecraft.entity.SpawnReason; import net.minecraft.fluid.Fluid; import net.minecraft.util.collection.BoundedRegionArray; import net.minecraft.util.math.BlockPos; @@ -125,7 +126,7 @@ public abstract class ChunkRegionMixin { } public Entity terraWorld$spawnEntity(double x, double y, double z, EntityType entityType) { - net.minecraft.entity.Entity entity = ((net.minecraft.entity.EntityType) entityType).create(world); + net.minecraft.entity.Entity entity = ((net.minecraft.entity.EntityType) entityType).create(world, SpawnReason.CHUNK_GENERATION); entity.setPos(x, y, z); ((ChunkRegion) (Object) this).spawnEntity(entity); return (Entity) entity; diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/world/ServerWorldMixin.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/world/ServerWorldMixin.java index f9a5bd1ea..d618ee656 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/world/ServerWorldMixin.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/world/ServerWorldMixin.java @@ -17,6 +17,7 @@ package com.dfsek.terra.mod.mixin.implementations.terra.world; +import net.minecraft.entity.SpawnReason; import net.minecraft.util.math.BlockPos; import net.minecraft.world.WorldAccess; import org.spongepowered.asm.mixin.Implements; @@ -42,7 +43,7 @@ import com.dfsek.terra.mod.util.MinecraftUtil; @Implements(@Interface(iface = ServerWorld.class, prefix = "terra$")) public abstract class ServerWorldMixin { public Entity terra$spawnEntity(double x, double y, double z, EntityType entityType) { - net.minecraft.entity.Entity entity = ((net.minecraft.entity.EntityType) entityType).create(null); + net.minecraft.entity.Entity entity = ((net.minecraft.entity.EntityType) entityType).create(null, SpawnReason.CHUNK_GENERATION); entity.setPos(x, y, z); ((net.minecraft.server.world.ServerWorld) (Object) this).spawnEntity(entity); return (Entity) entity; diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/lifecycle/DataPackContentsMixin.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/lifecycle/DataPackContentsMixin.java index c08b238e6..0fa4006cc 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/lifecycle/DataPackContentsMixin.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/lifecycle/DataPackContentsMixin.java @@ -1,10 +1,16 @@ package com.dfsek.terra.mod.mixin.lifecycle; +import net.minecraft.registry.CombinedDynamicRegistries; import net.minecraft.registry.DynamicRegistryManager; import net.minecraft.registry.Registry; +import net.minecraft.registry.Registry.PendingTagLoad; import net.minecraft.registry.RegistryKeys; import net.minecraft.registry.ReloadableRegistries; +import net.minecraft.registry.ServerDynamicRegistryType; +import net.minecraft.resource.ResourceManager; +import net.minecraft.resource.featuretoggle.FeatureSet; import net.minecraft.server.DataPackContents; +import net.minecraft.server.command.CommandManager; import net.minecraft.world.biome.Biome; import org.spongepowered.asm.mixin.Final; import org.spongepowered.asm.mixin.Mixin; @@ -16,6 +22,12 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; import com.dfsek.terra.mod.util.MinecraftUtil; import com.dfsek.terra.mod.util.TagUtil; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +import java.util.List; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.Executor; + @Mixin(DataPackContents.class) public class DataPackContentsMixin { @@ -26,9 +38,14 @@ public class DataPackContentsMixin { /* * #refresh populates all tags in the registries */ - @Inject(method = "refresh()V", at = @At("RETURN")) - private void injectReload(CallbackInfo ci) { - DynamicRegistryManager.Immutable dynamicRegistryManager = this.reloadableRegistries.getRegistryManager(); + @Inject(method = "reload(Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/registry/CombinedDynamicRegistries;Ljava/util/List;Lnet/minecraft/resource/featuretoggle/FeatureSet;Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;ILjava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;", at = @At("RETURN")) + private static void injectReload(ResourceManager resourceManager, + CombinedDynamicRegistries dynamicRegistries, + List> pendingTagLoads, FeatureSet enabledFeatures, + CommandManager.RegistrationEnvironment environment, int functionPermissionLevel, + Executor prepareExecutor, + Executor applyExecutor, CallbackInfoReturnable> cir) { + DynamicRegistryManager.Immutable dynamicRegistryManager = dynamicRegistries.getCombinedRegistryManager(); TagUtil.registerWorldPresetTags(dynamicRegistryManager.getOrThrow(RegistryKeys.WORLD_PRESET)); Registry biomeRegistry = dynamicRegistryManager.getOrThrow(RegistryKeys.BIOME); diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java index bbe2a638b..7351eea9b 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java @@ -47,8 +47,7 @@ public final class MinecraftUtil { public static Optional> getEntry(Registry registry, Identifier identifier) { return registry.getOptionalValue(identifier) - .flatMap(registry::getKey) - .flatMap(registry::getEntry); + .flatMap(id -> Optional.ofNullable(registry.getEntry(id))); } public static BlockEntity createState(WorldAccess worldAccess, BlockPos pos) { diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/PresetUtil.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/PresetUtil.java index 32c19a405..2ca4be005 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/PresetUtil.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/PresetUtil.java @@ -40,9 +40,8 @@ public class PresetUtil { platform.multiNoiseBiomeSourceParameterListRegistry(); - RegistryEntry overworldDimensionType = dimensionTypeRegistry.getEntry(DimensionTypes.OVERWORLD).orElseThrow(); - RegistryEntry overworld = chunkGeneratorSettingsRegistry.getEntry(ChunkGeneratorSettings.OVERWORLD) - .orElseThrow(); + RegistryEntry overworldDimensionType = dimensionTypeRegistry.getEntry(dimensionTypeRegistry.get(DimensionTypes.OVERWORLD)); + RegistryEntry overworld = chunkGeneratorSettingsRegistry.getEntry(chunkGeneratorSettingsRegistry.get(ChunkGeneratorSettings.OVERWORLD)); Identifier generatorID = Identifier.tryParse( @@ -51,15 +50,13 @@ public class PresetUtil { PRESETS.add(generatorID); - RegistryEntry registryEntry = dimensionTypeRegistry.getEntry(DimensionTypes.THE_NETHER).orElseThrow(); - RegistryEntry.Reference reference = multiNoiseBiomeSourceParameterLists.getEntry( - MultiNoiseBiomeSourceParameterLists.NETHER).orElseThrow(); - RegistryEntry registryEntry2 = chunkGeneratorSettingsRegistry.getEntry(ChunkGeneratorSettings.NETHER) - .orElseThrow(); + RegistryEntry registryEntry = dimensionTypeRegistry.getEntry(dimensionTypeRegistry.get(DimensionTypes.THE_NETHER)); + RegistryEntry reference = multiNoiseBiomeSourceParameterLists.getEntry( + multiNoiseBiomeSourceParameterLists.get(MultiNoiseBiomeSourceParameterLists.NETHER)); + RegistryEntry registryEntry2 = chunkGeneratorSettingsRegistry.getEntry(chunkGeneratorSettingsRegistry.get(ChunkGeneratorSettings.NETHER)); - RegistryEntry registryEntry3 = dimensionTypeRegistry.getEntry(DimensionTypes.THE_END).orElseThrow(); - RegistryEntry registryEntry4 = chunkGeneratorSettingsRegistry.getEntry(ChunkGeneratorSettings.END) - .orElseThrow(); + RegistryEntry registryEntry3 = dimensionTypeRegistry.getEntry(dimensionTypeRegistry.get(DimensionTypes.THE_END)); + RegistryEntry registryEntry4 = chunkGeneratorSettingsRegistry.getEntry(chunkGeneratorSettingsRegistry.get(ChunkGeneratorSettings.END)); TerraBiomeSource biomeSource = new TerraBiomeSource(pack); ChunkGenerator generator = new MinecraftChunkGeneratorWrapper(biomeSource, pack, overworld); @@ -69,7 +66,7 @@ public class PresetUtil { new NoiseChunkGenerator(MultiNoiseBiomeSource.create(reference), registryEntry2)); DimensionOptions endDimensionOptions = new DimensionOptions(registryEntry3, new NoiseChunkGenerator( - TheEndBiomeSource.createVanilla(platform.biomeRegistry().getReadOnlyWrapper()), registryEntry4)); + TheEndBiomeSource.createVanilla(platform.biomeRegistry()), registryEntry4)); WorldPreset preset = createPreset(dimensionOptions, netherDimensionOptions, endDimensionOptions); LOGGER.info("Created world type \"{}\"", generatorID); diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java index 210be1b29..123951f04 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java @@ -2,7 +2,9 @@ package com.dfsek.terra.mod.util; import com.google.common.collect.ImmutableMap; import net.minecraft.registry.Registry; +import net.minecraft.registry.RegistryKey; import net.minecraft.registry.entry.RegistryEntry; +import net.minecraft.registry.tag.TagGroupLoader.RegistryTags; import net.minecraft.registry.tag.TagKey; import net.minecraft.registry.tag.WorldPresetTags; import net.minecraft.world.biome.Biome; @@ -25,10 +27,8 @@ public final class TagUtil { private static Map, List>> tagsToMutableMap(Registry registry) { return registry - .streamTags() - .collect(HashMap::new, - (map, pair) -> - map.put(pair.getFirst(), new ArrayList<>(pair.getSecond().stream().toList())), + .streamTags().collect(HashMap::new, + (map, tag) -> map.put(tag.getTag(), new ArrayList<>()), HashMap::putAll); } @@ -46,8 +46,7 @@ public final class TagUtil { .add(preset), () -> logger.error("Preset {} does not exist!", id))); - registry.clearTags(); - registry.populateTags(ImmutableMap.copyOf(collect)); + registry.startTagReload(new RegistryTags<>(registry.getKey(), collect)).apply(); } public static void registerBiomeTags(Registry registry) { @@ -90,8 +89,7 @@ public final class TagUtil { tb))), () -> logger.error("No vanilla biome: {}", vb))); - registry.clearTags(); - registry.populateTags(ImmutableMap.copyOf(collect)); + registry.startTagReload(new RegistryTags<>(registry.getKey(), collect)).apply(); if(logger.isDebugEnabled()) { registry.streamEntries() diff --git a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/BiomeUtil.java b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/BiomeUtil.java index b32e12935..0ff5ad76c 100644 --- a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/BiomeUtil.java +++ b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/BiomeUtil.java @@ -51,7 +51,7 @@ public final class BiomeUtil { if(pack.getContext().get(PreLoadCompatibilityOptions.class).useVanillaBiomes()) { - ((ProtoPlatformBiome) biome.getPlatformBiome()).setDelegate(registry.getEntry(vanilla).orElseThrow()); + ((ProtoPlatformBiome) biome.getPlatformBiome()).setDelegate(registry.getEntry(registry.get(vanilla))); } else { VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); From be7e10c30c5a9cf56caa618ed56d7fb87b54d3a1 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Wed, 9 Oct 2024 16:41:04 -0600 Subject: [PATCH 068/136] Fix runtime errors --- .../terra/mod/handle/MinecraftWorldHandle.java | 2 +- .../terra/block/state/PropertyMixin.java | 3 ++- .../terra/chunk/WorldChunkMixin.java | 3 --- .../lifecycle/mixin/lifecycle/SaveLoadingMixin.java | 13 ++++++------- 4 files changed, 9 insertions(+), 12 deletions(-) diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java index 9b7987cb5..a44a022d3 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java @@ -76,6 +76,6 @@ public class MinecraftWorldHandle implements WorldHandle { if(!id.contains(":")) throw new IllegalArgumentException("Invalid entity identifier " + id); Identifier identifier = Identifier.tryParse(id); if(identifier == null) identifier = Identifier.tryParse(id); - return (EntityType) Registries.ENTITY_TYPE.getEntry(identifier).orElseThrow(); + return (EntityType) Registries.ENTITY_TYPE.getEntry(identifier).orElseThrow().value(); } } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/block/state/PropertyMixin.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/block/state/PropertyMixin.java index 4cb1b4858..33f75afe6 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/block/state/PropertyMixin.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/block/state/PropertyMixin.java @@ -9,6 +9,7 @@ import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.Shadow; import java.util.Collection; +import java.util.List; import com.dfsek.terra.api.block.state.properties.Property; @@ -24,7 +25,7 @@ public abstract class PropertyMixin { private String name; @Shadow - public abstract Collection getValues(); + public abstract List getValues(); @Intrinsic public Collection terra$values() { diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/chunk/WorldChunkMixin.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/chunk/WorldChunkMixin.java index 005822f69..1fa3d19b3 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/chunk/WorldChunkMixin.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/chunk/WorldChunkMixin.java @@ -49,9 +49,6 @@ public abstract class WorldChunkMixin { @Nullable public abstract net.minecraft.block.BlockState setBlockState(BlockPos pos, net.minecraft.block.BlockState state, boolean moved); - @Shadow - public abstract TickSchedulers getTickSchedulers(); - public void terra$setBlock(int x, int y, int z, BlockState data, boolean physics) { BlockPos blockPos = new BlockPos(x, y, z); setBlockState(blockPos, (net.minecraft.block.BlockState) data, false); diff --git a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/SaveLoadingMixin.java b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/SaveLoadingMixin.java index bf26a1ec3..98aa4d27f 100644 --- a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/SaveLoadingMixin.java +++ b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/SaveLoadingMixin.java @@ -1,7 +1,8 @@ package com.dfsek.terra.lifecycle.mixin.lifecycle; -import net.minecraft.registry.DynamicRegistryManager; +import net.minecraft.registry.CombinedDynamicRegistries; import net.minecraft.registry.RegistryKeys; +import net.minecraft.registry.ServerDynamicRegistryType; import net.minecraft.server.SaveLoading; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.injection.At; @@ -18,13 +19,11 @@ public class SaveLoadingMixin { "Ljava/util/concurrent/CompletableFuture;", at = @At( value = "INVOKE", - target = "Lnet/minecraft/registry/RegistryLoader;loadFromResource(Lnet/minecraft/resource/ResourceManager;" + - "Lnet/minecraft/registry/DynamicRegistryManager;Ljava/util/List;)" + - "Lnet/minecraft/registry/DynamicRegistryManager$Immutable;"), + target = "Lnet/minecraft/server/DataPackContents;reload(Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/registry/CombinedDynamicRegistries;Ljava/util/List;Lnet/minecraft/resource/featuretoggle/FeatureSet;Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;ILjava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;"), index = 1 ) - private static DynamicRegistryManager grabManager(DynamicRegistryManager registryManager) { - MinecraftUtil.registerFlora(registryManager.getOrThrow(RegistryKeys.BIOME)); - return registryManager; + private static CombinedDynamicRegistries grabManager(CombinedDynamicRegistries dynamicRegistries) { + MinecraftUtil.registerFlora(dynamicRegistries.getCombinedRegistryManager().getOrThrow(RegistryKeys.BIOME)); + return dynamicRegistries; } } From 1ae0d1f86756448913971c8a1be66f0db8dc5ac9 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Wed, 9 Oct 2024 23:36:12 -0600 Subject: [PATCH 069/136] WIP Caching Hints and Caching Sampler --- .../dfsek/terra/addons/noise/NoiseAddon.java | 3 + .../templates/CacheSamplerTemplate.java | 26 ++++ .../addons/noise/samplers/CacheSampler.java | 125 ++++++++++++++++++ .../java/com/dfsek/terra/api/Platform.java | 3 + .../world/biome/generation/BiomeProvider.java | 6 +- .../generation/CachingBiomeProvider.java | 13 +- .../com/dfsek/terra/AbstractPlatform.java | 23 ++++ .../terra/config/pack/ConfigPackImpl.java | 2 +- .../com/dfsek/terra/bukkit/PlatformImpl.java | 11 ++ .../java/com/dfsek/terra/cli/CLIPlatform.java | 7 + .../terra/lifecycle/LifecyclePlatform.java | 12 ++ 11 files changed, 222 insertions(+), 9 deletions(-) create mode 100644 common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java create mode 100644 common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java index e2fa8956c..e4dc09b56 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java @@ -17,6 +17,7 @@ import com.dfsek.terra.addons.manifest.api.AddonInitializer; import com.dfsek.terra.addons.noise.config.CubicSplinePointTemplate; import com.dfsek.terra.addons.noise.config.DimensionApplicableNoiseSampler; import com.dfsek.terra.addons.noise.config.templates.BinaryArithmeticTemplate; +import com.dfsek.terra.addons.noise.config.templates.CacheSamplerTemplate; import com.dfsek.terra.addons.noise.config.templates.DerivativeNoiseSamplerTemplate; import com.dfsek.terra.addons.noise.config.templates.DomainWarpTemplate; import com.dfsek.terra.addons.noise.config.templates.FunctionTemplate; @@ -150,6 +151,8 @@ public class NoiseAddon implements AddonInitializer { noiseRegistry.register(addon.key("MAX"), () -> new BinaryArithmeticTemplate<>(MaxSampler::new)); noiseRegistry.register(addon.key("MIN"), () -> new BinaryArithmeticTemplate<>(MinSampler::new)); + noiseRegistry.register(addon.key("CACHE"), () -> new CacheSamplerTemplate(plugin.getGenerationThreads())); + Map packSamplers = new LinkedHashMap<>(); Map packFunctions = new LinkedHashMap<>(); diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java new file mode 100644 index 000000000..ca3b7d0b0 --- /dev/null +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java @@ -0,0 +1,26 @@ +package com.dfsek.terra.addons.noise.config.templates; + +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; + +import com.dfsek.terra.addons.noise.samplers.CacheSampler; +import com.dfsek.terra.addons.noise.samplers.LinearHeightmapSampler; +import com.dfsek.terra.api.noise.NoiseSampler; + + +public class CacheSamplerTemplate extends SamplerTemplate { + @Value("sampler") + @Default + private NoiseSampler sampler; + + private final int generationThreads; + + public CacheSamplerTemplate(int generationThreads) { + this.generationThreads = generationThreads; + } + + @Override + public NoiseSampler get() { + return new CacheSampler(sampler, getDimensions(), generationThreads); + } +} diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java new file mode 100644 index 000000000..17eb71f00 --- /dev/null +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java @@ -0,0 +1,125 @@ +package com.dfsek.terra.addons.noise.samplers; + +import com.dfsek.terra.api.noise.DerivativeNoiseSampler; +import com.dfsek.terra.api.noise.NoiseSampler; + +import com.github.benmanes.caffeine.cache.Caffeine; +import com.github.benmanes.caffeine.cache.LoadingCache; + + +public class CacheSampler implements DerivativeNoiseSampler { + + private final NoiseSampler sampler; + private final LoadingCache cache2D; + private final LoadingCache cache3D; + private final LoadingCache cache2DDirv; + private final LoadingCache cache3DDirv; + + public CacheSampler(NoiseSampler sampler, int dimensions, int generationThreads) { + this.sampler = sampler; + if (dimensions == 2) { + this.cache2D = Caffeine + .newBuilder() + .initialCapacity(0) + .maximumSize(256L * generationThreads) // 1 full chunk (high res) + .build(vec -> sampler.noise(vec.seed, vec.x, vec.z)); + cache3D = null; + cache3DDirv = null; + if (DerivativeNoiseSampler.isDifferentiable(sampler)) { + this.cache2DDirv = Caffeine + .newBuilder() + .initialCapacity(0) + .maximumSize(256L * generationThreads) // 1 full chunk (high res) + .build(vec -> ((DerivativeNoiseSampler) sampler).noised(vec.seed, vec.x, vec.z)); + } else { + cache2DDirv = null; + } + } else { + this.cache3D = Caffeine + .newBuilder() + .initialCapacity(0) + .maximumSize(256L * generationThreads) // 1 full chunk (high res) + .build(vec -> sampler.noise(vec.seed, vec.x, vec.y, vec.z)); + cache2D = null; + cache2DDirv = null; + if (DerivativeNoiseSampler.isDifferentiable(sampler)) { + this.cache3DDirv = Caffeine + .newBuilder() + .initialCapacity(0) + .maximumSize(256L * generationThreads) // 1 full chunk (high res) + .build(vec -> ((DerivativeNoiseSampler) sampler).noised(vec.seed, vec.x, vec.y, vec.z)); + } else { + cache3DDirv = null; + } + } + } + + @Override + public boolean isDifferentiable() { + return DerivativeNoiseSampler.isDifferentiable(sampler); + } + + @Override + public double[] noised(long seed, double x, double y) { + return cache2DDirv.get(new DoubleSeededVector2(x, y, seed)); + } + + @Override + public double[] noised(long seed, double x, double y, double z) { + return cache3DDirv.get(new DoubleSeededVector3(x, y, z, seed)); + } + + @Override + public double noise(long seed, double x, double y) { + DoubleSeededVector2 vec = new DoubleSeededVector2(x, y, seed); + if (cache2DDirv != null && cache2DDirv.estimatedSize() != 0) { + return cache2DDirv.get(vec)[0]; + } + return cache2D.get(vec); + } + + @Override + public double noise(long seed, double x, double y, double z) { + DoubleSeededVector3 vec = new DoubleSeededVector3(x, y, z, seed); + if (cache3DDirv != null && cache3DDirv.estimatedSize() != 0) { + return cache3DDirv.get(vec)[0]; + } + return cache3D.get(vec); + } + + private record DoubleSeededVector3(double x, double y, double z, long seed) { + @Override + public boolean equals(Object obj) { + if(obj instanceof DoubleSeededVector3 that) { + return this.y == that.y && this.z == that.z && this.x == that.x && this.seed == that.seed; + } + return false; + } + + @Override + public int hashCode() { + int code = (int) Double.doubleToLongBits(x); + code = 31 * code + (int) Double.doubleToLongBits(y); + code = 31 * code + (int) Double.doubleToLongBits(z); + return 31 * code + (Long.hashCode(seed)); + } + } + + + private record DoubleSeededVector2(double x, double z, long seed) { + @Override + public boolean equals(Object obj) { + if(obj instanceof DoubleSeededVector2 that) { + return this.z == that.z && this.x == that.x && this.seed == that.seed; + } + return false; + } + + @Override + public int hashCode() { + int code = (int) Double.doubleToLongBits(x); + code = 31 * code + (int) Double.doubleToLongBits(z); + return 31 * code + (Long.hashCode(seed)); + } + } +} diff --git a/common/api/src/main/java/com/dfsek/terra/api/Platform.java b/common/api/src/main/java/com/dfsek/terra/api/Platform.java index 95b00c575..cabc44bbd 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/Platform.java +++ b/common/api/src/main/java/com/dfsek/terra/api/Platform.java @@ -81,4 +81,7 @@ public interface Platform extends LoaderRegistrar { @NotNull @Contract(pure = true) Profiler getProfiler(); + + @Contract(pure = true) + int getGenerationThreads(); } diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/BiomeProvider.java b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/BiomeProvider.java index d049cd43b..743d1d671 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/BiomeProvider.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/BiomeProvider.java @@ -7,6 +7,8 @@ package com.dfsek.terra.api.world.biome.generation; +import com.dfsek.terra.api.Platform; + import org.jetbrains.annotations.Contract; import java.util.Optional; @@ -91,11 +93,11 @@ public interface BiomeProvider { return StreamSupport.stream(getBiomes().spliterator(), false); } - default CachingBiomeProvider caching() { + default CachingBiomeProvider caching(Platform platform) { if(this instanceof CachingBiomeProvider cachingBiomeProvider) { return cachingBiomeProvider; } - return new CachingBiomeProvider(this); + return new CachingBiomeProvider(this, platform.getGenerationThreads()); } diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java index a07e9efd9..0a3f7db1e 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java @@ -21,19 +21,20 @@ public class CachingBiomeProvider implements BiomeProvider, Handle { private final LoadingCache cache; private final LoadingCache> baseCache; - protected CachingBiomeProvider(BiomeProvider delegate) { + protected CachingBiomeProvider(BiomeProvider delegate, int generationThreads) { this.delegate = delegate; this.res = delegate.resolution(); + int size = generationThreads * 98304; this.cache = Caffeine .newBuilder() .scheduler(Scheduler.disabledScheduler()) - .initialCapacity(98304) - .maximumSize(98304) // 1 full chunk (high res) + .initialCapacity(size) + .maximumSize(size) // 1 full chunk (high res) .build(vec -> delegate.getBiome(vec.x * res, vec.y * res, vec.z * res, vec.seed)); this.baseCache = Caffeine .newBuilder() - .maximumSize(256) // 1 full chunk (high res) + .maximumSize(256L * generationThreads) // 1 full chunk (high res) .build(vec -> delegate.getBaseBiome(vec.x * res, vec.z * res, vec.seed)); } @@ -77,7 +78,7 @@ public class CachingBiomeProvider implements BiomeProvider, Handle { int code = x; code = 31 * code + y; code = 31 * code + z; - return 31 * code + ((int) (seed ^ (seed >>> 32))); + return 31 * code + (Long.hashCode(seed)); } } @@ -95,7 +96,7 @@ public class CachingBiomeProvider implements BiomeProvider, Handle { public int hashCode() { int code = x; code = 31 * code + z; - return 31 * code + ((int) (seed ^ (seed >>> 32))); + return 31 * code + (Long.hashCode(seed)); } } } diff --git a/common/implementation/base/src/main/java/com/dfsek/terra/AbstractPlatform.java b/common/implementation/base/src/main/java/com/dfsek/terra/AbstractPlatform.java index 86d22bc2a..6e4e8ad73 100644 --- a/common/implementation/base/src/main/java/com/dfsek/terra/AbstractPlatform.java +++ b/common/implementation/base/src/main/java/com/dfsek/terra/AbstractPlatform.java @@ -310,6 +310,24 @@ public abstract class AbstractPlatform implements Platform { } } + public static int getGenerationThreadsWithReflection(String className, String fieldName, String project) { + try { + Class aClass = Class.forName(className); + int threads = aClass.getField(fieldName).getInt(null); + logger.info("{} found, setting {} generation threads.", project, threads); + return threads; + } catch(ClassNotFoundException e) { + logger.info("{} not found.", project); + } catch(NoSuchFieldException e) { + logger.warn("{} found, but {} field not found this probably means {0} has changed its code and " + + "Terra has not updated to reflect that.", project, fieldName); + } catch(IllegalAccessException e) { + logger.error("Failed to access {} field in {}, assuming 1 generation thread.", fieldName, project, e); + } + return 0; + + } + @Override public void register(TypeRegistry registry) { loaders.register(registry); @@ -339,4 +357,9 @@ public abstract class AbstractPlatform implements Platform { public @NotNull Profiler getProfiler() { return profiler; } + + @Override + public int getGenerationThreads() { + return 1; + } } diff --git a/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackImpl.java b/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackImpl.java index 82ec7d95b..a03584e3f 100644 --- a/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackImpl.java +++ b/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackImpl.java @@ -232,7 +232,7 @@ public class ConfigPackImpl implements ConfigPack { ConfigPackPostTemplate packPostTemplate = new ConfigPackPostTemplate(); selfLoader.load(packPostTemplate, packManifest); seededBiomeProvider = - template.getBiomeCache() ? packPostTemplate.getProviderBuilder().caching() : packPostTemplate.getProviderBuilder(); + template.getBiomeCache() ? packPostTemplate.getProviderBuilder().caching(platform) : packPostTemplate.getProviderBuilder(); checkDeadEntries(); } diff --git a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/PlatformImpl.java b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/PlatformImpl.java index 45a82c5cb..f26698b39 100644 --- a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/PlatformImpl.java +++ b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/PlatformImpl.java @@ -51,7 +51,13 @@ public class PlatformImpl extends AbstractPlatform { private final TerraBukkitPlugin plugin; + private int generationThreads; + public PlatformImpl(TerraBukkitPlugin plugin) { + generationThreads = getGenerationThreadsWithReflection("ca.spottedleaf.moonrise.common.util.MoonriseCommon", "WORKER_THREADS", "Moonrise"); + if (generationThreads == 0) { + generationThreads = 1; + } this.plugin = plugin; load(); } @@ -108,6 +114,11 @@ public class PlatformImpl extends AbstractPlatform { return itemHandle; } + @Override + public int getGenerationThreads() { + return generationThreads; + } + @Override public void register(TypeRegistry registry) { super.register(registry); diff --git a/platforms/cli/src/main/java/com/dfsek/terra/cli/CLIPlatform.java b/platforms/cli/src/main/java/com/dfsek/terra/cli/CLIPlatform.java index ca58f1f5d..3d366d0e6 100644 --- a/platforms/cli/src/main/java/com/dfsek/terra/cli/CLIPlatform.java +++ b/platforms/cli/src/main/java/com/dfsek/terra/cli/CLIPlatform.java @@ -22,6 +22,8 @@ public class CLIPlatform extends AbstractPlatform { private final CLIWorldHandle worldHandle = new CLIWorldHandle(); private final CLIItemHandle itemHandle = new CLIItemHandle(); + private final int generationThreads = Runtime.getRuntime().availableProcessors() - 1; + public CLIPlatform() { LOGGER.info("Root directory: {}", getDataFolder().getAbsoluteFile()); load(); @@ -58,4 +60,9 @@ public class CLIPlatform extends AbstractPlatform { super.register(registry); registry.registerLoader(PlatformBiome.class, (TypeLoader) (annotatedType, o, configLoader, depthTracker) -> () -> o); } + + @Override + public int getGenerationThreads() { + return generationThreads; + } } diff --git a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java index 391842311..bbcd1b4bb 100644 --- a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java +++ b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java @@ -3,6 +3,9 @@ package com.dfsek.terra.lifecycle; import ca.solostudios.strata.Versions; import ca.solostudios.strata.parser.tokenizer.ParseException; import ca.solostudios.strata.version.Version; + +import com.dfsek.terra.api.util.reflection.ReflectionUtil; + import net.minecraft.MinecraftVersion; import net.minecraft.enchantment.Enchantment; import net.minecraft.registry.Registry; @@ -37,8 +40,15 @@ public abstract class LifecyclePlatform extends ModPlatform { private static final AtomicReference> NOISE = new AtomicReference<>(); private static final AtomicReference> ENCHANTMENT = new AtomicReference<>(); private static MinecraftServer server; + private int generationThreads; public LifecyclePlatform() { + generationThreads = getGenerationThreadsWithReflection("com.ishland.c2me.base.common.GlobalExecutors", "GLOBAL_EXECUTOR_PARALLELISM", "C2ME"); + if (generationThreads == 0) { + generationThreads = getGenerationThreadsWithReflection("ca.spottedleaf.moonrise.common.util.MoonriseCommon", "WORKER_THREADS", "Moonrise"); + } if (generationThreads == 0) { + generationThreads = 1; + } CommonPlatform.initialize(this); load(); } @@ -55,6 +65,8 @@ public abstract class LifecyclePlatform extends ModPlatform { ENCHANTMENT.set(enchantmentRegistry); } + + @Override public MinecraftServer getServer() { return server; From c78a984a1104e08b8ee80163860cf2776e2ed263 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Thu, 10 Oct 2024 14:02:53 -0600 Subject: [PATCH 070/136] Update to pre2 --- buildSrc/src/main/kotlin/Versions.kt | 6 +++--- platforms/fabric/src/main/resources/fabric.mod.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index e0eb26691..9536b40f0 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -41,9 +41,9 @@ object Versions { object Mod { const val mixin = "0.15.3+mixin.0.8.7" - const val minecraft = "1.21.2-pre1" - const val yarn = "$minecraft+build.3" - const val fabricLoader = "0.16.5" + const val minecraft = "1.21.2-pre2" + const val yarn = "$minecraft+build.4" + const val fabricLoader = "0.16.7" const val architecuryLoom = "1.7.413" const val architecturyPlugin = "3.4.159" diff --git a/platforms/fabric/src/main/resources/fabric.mod.json b/platforms/fabric/src/main/resources/fabric.mod.json index 592d4021a..3eb944413 100644 --- a/platforms/fabric/src/main/resources/fabric.mod.json +++ b/platforms/fabric/src/main/resources/fabric.mod.json @@ -32,9 +32,9 @@ "terra.common.mixins.json" ], "depends": { - "fabricloader": ">=0.16.5", + "fabricloader": ">=0.16.7", "java": ">=21", - "minecraft": ">=1.21.1", + "minecraft": ">=1.21.2-beta.2", "fabric": "*" } } \ No newline at end of file From 3033fbbf29cd662c6719b2885a71546d39054230 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Thu, 10 Oct 2024 16:49:40 -0600 Subject: [PATCH 071/136] Fix a ton of fabric impl bugs --- .../com/dfsek/terra/mod/util/TagUtil.java | 17 +++++--- .../lifecycle/CreateWorldScreenMixin.java | 27 ++++++++++++ .../mixin/lifecycle/MinecraftServerMixin.java | 5 +++ .../mixin/lifecycle/RegistryLoaderMixin.java | 3 +- .../resources/terra.lifecycle.mixins.json | 43 ++++++++++--------- 5 files changed, 66 insertions(+), 29 deletions(-) create mode 100644 platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/CreateWorldScreenMixin.java diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java index 123951f04..db8385f44 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/TagUtil.java @@ -1,8 +1,6 @@ package com.dfsek.terra.mod.util; -import com.google.common.collect.ImmutableMap; import net.minecraft.registry.Registry; -import net.minecraft.registry.RegistryKey; import net.minecraft.registry.entry.RegistryEntry; import net.minecraft.registry.tag.TagGroupLoader.RegistryTags; import net.minecraft.registry.tag.TagKey; @@ -16,6 +14,7 @@ import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; +import java.util.stream.Collectors; public final class TagUtil { @@ -26,10 +25,9 @@ public final class TagUtil { } private static Map, List>> tagsToMutableMap(Registry registry) { - return registry - .streamTags().collect(HashMap::new, - (map, tag) -> map.put(tag.getTag(), new ArrayList<>()), - HashMap::putAll); + return registry.streamTags().collect(HashMap::new, + (map, tag) -> map.put(tag.getTag(), tag.stream().collect(Collectors.toList())), + HashMap::putAll); } public static void registerWorldPresetTags(Registry registry) { @@ -47,6 +45,13 @@ public final class TagUtil { () -> logger.error("Preset {} does not exist!", id))); registry.startTagReload(new RegistryTags<>(registry.getKey(), collect)).apply(); + + if(logger.isDebugEnabled()) { + registry.streamEntries() + .map(e -> e.registryKey().getValue() + ": " + + e.streamTags().reduce("", (s, t) -> t.id() + ", " + s, String::concat)) + .forEach(logger::debug); + } } public static void registerBiomeTags(Registry registry) { diff --git a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/CreateWorldScreenMixin.java b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/CreateWorldScreenMixin.java new file mode 100644 index 000000000..61f385939 --- /dev/null +++ b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/CreateWorldScreenMixin.java @@ -0,0 +1,27 @@ +package com.dfsek.terra.lifecycle.mixin.lifecycle; + + +import com.dfsek.terra.api.Platform; + +import com.dfsek.terra.mod.CommonPlatform; + +import com.dfsek.terra.mod.ModPlatform; + +import net.minecraft.client.gui.screen.world.CreateWorldScreen; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +import static com.dfsek.terra.lifecycle.util.LifecycleUtil.initialized; + + +@Mixin(CreateWorldScreen.class) +public class CreateWorldScreenMixin { + @Inject(method = "onCloseScreen()V", at = @At("HEAD")) + public void onClose(CallbackInfo ci) { + ModPlatform platform = CommonPlatform.get(); + platform.getRawConfigRegistry().clear(); + initialized = false; + } +} diff --git a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/MinecraftServerMixin.java b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/MinecraftServerMixin.java index 0f04c0963..2526079ed 100644 --- a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/MinecraftServerMixin.java +++ b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/MinecraftServerMixin.java @@ -1,5 +1,8 @@ package com.dfsek.terra.lifecycle.mixin.lifecycle; +import com.dfsek.terra.mod.CommonPlatform; +import com.dfsek.terra.mod.ModPlatform; + import com.mojang.datafixers.DataFixer; import net.minecraft.resource.ResourcePackManager; import net.minecraft.server.MinecraftServer; @@ -34,6 +37,8 @@ public class MinecraftServerMixin { @Inject(method = "shutdown()V", at = @At("RETURN")) private void injectShutdown(CallbackInfo ci) { + ModPlatform platform = CommonPlatform.get(); + platform.getRawConfigRegistry().clear(); initialized = false; } } diff --git a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/RegistryLoaderMixin.java b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/RegistryLoaderMixin.java index 739c084f3..c04e0fad7 100644 --- a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/RegistryLoaderMixin.java +++ b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/mixin/lifecycle/RegistryLoaderMixin.java @@ -39,8 +39,7 @@ public class RegistryLoaderMixin { private static Logger LOGGER; @Redirect( - method = "load(Lnet/minecraft/registry/RegistryLoader$RegistryLoadable;Lnet/minecraft/registry/DynamicRegistryManager;" + - "Ljava/util/List;)Lnet/minecraft/registry/DynamicRegistryManager$Immutable;", + method = "load(Lnet/minecraft/registry/RegistryLoader$RegistryLoadable;Ljava/util/List;Ljava/util/List;)Lnet/minecraft/registry/DynamicRegistryManager$Immutable;", at = @At( value = "INVOKE", target = "Ljava/util/List;forEach(Ljava/util/function/Consumer;)V", diff --git a/platforms/mixin-lifecycle/src/main/resources/terra.lifecycle.mixins.json b/platforms/mixin-lifecycle/src/main/resources/terra.lifecycle.mixins.json index 2e4708bd4..0646899cf 100644 --- a/platforms/mixin-lifecycle/src/main/resources/terra.lifecycle.mixins.json +++ b/platforms/mixin-lifecycle/src/main/resources/terra.lifecycle.mixins.json @@ -1,23 +1,24 @@ { - "required": true, - "minVersion": "0.8", - "package": "com.dfsek.terra.lifecycle.mixin", - "compatibilityLevel": "JAVA_21", - "mixins": [ - "NoiseConfigMixin", - "RegistryEntryReferenceInvoker", - "RegistryMixin", - "SimpleRegistryMixin", - "lifecycle.MinecraftServerMixin", - "lifecycle.RegistryLoaderMixin", - "lifecycle.SaveLoadingMixin" - ], - "client": [ - ], - "server": [ - ], - "injectors": { - "defaultRequire": 1 - }, - "refmap": "terra.lifecycle.refmap.json" + "required": true, + "minVersion": "0.8", + "package": "com.dfsek.terra.lifecycle.mixin", + "compatibilityLevel": "JAVA_21", + "mixins": [ + "NoiseConfigMixin", + "RegistryEntryReferenceInvoker", + "RegistryMixin", + "SimpleRegistryMixin", + "lifecycle.MinecraftServerMixin", + "lifecycle.RegistryLoaderMixin", + "lifecycle.SaveLoadingMixin" + ], + "client": [ + "lifecycle.CreateWorldScreenMixin" + ], + "server": [ + ], + "injectors": { + "defaultRequire": 1 + }, + "refmap": "terra.lifecycle.refmap.json" } \ No newline at end of file From 9a01a6c6a08f1bb7ea0f840c48d663a91f135c5d Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Fri, 11 Oct 2024 00:20:46 -0600 Subject: [PATCH 072/136] more WIP on cache --- .../addons/noise/samplers/CacheSampler.java | 125 +++++++++++------- 1 file changed, 77 insertions(+), 48 deletions(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java index 17eb71f00..a8fb3ded4 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java @@ -11,47 +11,54 @@ public class CacheSampler implements DerivativeNoiseSampler { private final NoiseSampler sampler; private final LoadingCache cache2D; - private final LoadingCache cache3D; - private final LoadingCache cache2DDirv; - private final LoadingCache cache3DDirv; +// private final LoadingCache cache3D; +// private final LoadingCache cache2DDirv; +// private final LoadingCache cache3DDirv; + + private final ThreadLocal mutable = + ThreadLocal.withInitial(() -> new DoubleSeededVector2(0, 0, 0)); public CacheSampler(NoiseSampler sampler, int dimensions, int generationThreads) { this.sampler = sampler; - if (dimensions == 2) { +// if (dimensions == 2) { this.cache2D = Caffeine .newBuilder() .initialCapacity(0) - .maximumSize(256L * generationThreads) // 1 full chunk (high res) - .build(vec -> sampler.noise(vec.seed, vec.x, vec.z)); - cache3D = null; - cache3DDirv = null; - if (DerivativeNoiseSampler.isDifferentiable(sampler)) { - this.cache2DDirv = Caffeine - .newBuilder() - .initialCapacity(0) - .maximumSize(256L * generationThreads) // 1 full chunk (high res) - .build(vec -> ((DerivativeNoiseSampler) sampler).noised(vec.seed, vec.x, vec.z)); - } else { - cache2DDirv = null; - } - } else { - this.cache3D = Caffeine - .newBuilder() - .initialCapacity(0) - .maximumSize(256L * generationThreads) // 1 full chunk (high res) - .build(vec -> sampler.noise(vec.seed, vec.x, vec.y, vec.z)); - cache2D = null; - cache2DDirv = null; - if (DerivativeNoiseSampler.isDifferentiable(sampler)) { - this.cache3DDirv = Caffeine - .newBuilder() - .initialCapacity(0) - .maximumSize(256L * generationThreads) // 1 full chunk (high res) - .build(vec -> ((DerivativeNoiseSampler) sampler).noised(vec.seed, vec.x, vec.y, vec.z)); - } else { - cache3DDirv = null; - } - } + .maximumSize(256L * generationThreads)// 1 full chunk (high res) + .build(vec -> { + mutable.remove(); + return sampler.noise(vec.seed, vec.x, vec.z); + }); +// } +// cache3D = null; +// cache3DDirv = null; +// if (DerivativeNoiseSampler.isDifferentiable(sampler)) { +// this.cache2DDirv = Caffeine +// .newBuilder() +// .initialCapacity(0) +// .maximumSize(256L * generationThreads) // 1 full chunk (high res) +// .build(vec -> ((DerivativeNoiseSampler) sampler).noised(vec.seed, vec.x, vec.z)); +// } else { +// cache2DDirv = null; +// } +// } else { +// this.cache3D = Caffeine +// .newBuilder() +// .initialCapacity(0) +// .maximumSize(256L * generationThreads) // 1 full chunk (high res) +// .build(vec -> sampler.noise(vec.seed, vec.x, vec.y, vec.z)); +// cache2D = null; +// cache2DDirv = null; +// if (DerivativeNoiseSampler.isDifferentiable(sampler)) { +// this.cache3DDirv = Caffeine +// .newBuilder() +// .initialCapacity(0) +// .maximumSize(256L * generationThreads) // 1 full chunk (high res) +// .build(vec -> ((DerivativeNoiseSampler) sampler).noised(vec.seed, vec.x, vec.y, vec.z)); +// } else { +// cache3DDirv = null; +// } +// } } @Override @@ -61,30 +68,35 @@ public class CacheSampler implements DerivativeNoiseSampler { @Override public double[] noised(long seed, double x, double y) { - return cache2DDirv.get(new DoubleSeededVector2(x, y, seed)); +// return cache2DDirv.get(new DoubleSeededVector2(x, y, seed)); + return null; } @Override public double[] noised(long seed, double x, double y, double z) { - return cache3DDirv.get(new DoubleSeededVector3(x, y, z, seed)); +// return cache3DDirv.get(new DoubleSeededVector3(x, y, z, seed)); + return null; } @Override public double noise(long seed, double x, double y) { - DoubleSeededVector2 vec = new DoubleSeededVector2(x, y, seed); - if (cache2DDirv != null && cache2DDirv.estimatedSize() != 0) { - return cache2DDirv.get(vec)[0]; - } - return cache2D.get(vec); +// DoubleSeededVector2 vec = new DoubleSeededVector2(x, y, seed); +// if (cache2DDirv != null && cache2DDirv.estimatedSize() != 0) { +// return cache2DDirv.get(vec)[0]; +// } + DoubleSeededVector2 mutableKey = mutable.get(); + mutableKey.set(x, y, seed); + return cache2D.get(mutableKey); } @Override public double noise(long seed, double x, double y, double z) { - DoubleSeededVector3 vec = new DoubleSeededVector3(x, y, z, seed); - if (cache3DDirv != null && cache3DDirv.estimatedSize() != 0) { - return cache3DDirv.get(vec)[0]; - } - return cache3D.get(vec); +// DoubleSeededVector3 vec = new DoubleSeededVector3(x, y, z, seed); +// if (cache3DDirv != null && cache3DDirv.estimatedSize() != 0) { +// return cache3DDirv.get(vec)[0]; +// } +// return cache3D.get(vec); + return 0; } private record DoubleSeededVector3(double x, double y, double z, long seed) { @@ -106,7 +118,24 @@ public class CacheSampler implements DerivativeNoiseSampler { } - private record DoubleSeededVector2(double x, double z, long seed) { + private class DoubleSeededVector2 { + + double x; + double z; + long seed; + + public DoubleSeededVector2(double x, double z, long seed) { + this.x = x; + this.z = z; + this.seed = seed; + } + + public void set(double x, double z, long seed) { + this.x = x; + this.z = z; + this.seed = seed; + } + @Override public boolean equals(Object obj) { if(obj instanceof DoubleSeededVector2 that) { From c1d3155dddf68ae07e825a19321f13ae857b24f2 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Fri, 11 Oct 2024 15:15:10 -0600 Subject: [PATCH 073/136] Cache Improvements --- .../addons/noise/samplers/CacheSampler.java | 139 +++++++++++------- .../generation/CachingBiomeProvider.java | 65 +++++++- 2 files changed, 144 insertions(+), 60 deletions(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java index a8fb3ded4..b0d81eb0b 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java @@ -11,54 +11,67 @@ public class CacheSampler implements DerivativeNoiseSampler { private final NoiseSampler sampler; private final LoadingCache cache2D; -// private final LoadingCache cache3D; -// private final LoadingCache cache2DDirv; -// private final LoadingCache cache3DDirv; + private final LoadingCache cache3D; + private final LoadingCache cache2DDirv; + private final LoadingCache cache3DDirv; - private final ThreadLocal mutable = + private final ThreadLocal mutable2 = ThreadLocal.withInitial(() -> new DoubleSeededVector2(0, 0, 0)); + private final ThreadLocal mutable3 = + ThreadLocal.withInitial(() -> new DoubleSeededVector3(0, 0, 0, 0)); + public CacheSampler(NoiseSampler sampler, int dimensions, int generationThreads) { this.sampler = sampler; -// if (dimensions == 2) { + if (dimensions == 2) { this.cache2D = Caffeine .newBuilder() .initialCapacity(0) .maximumSize(256L * generationThreads)// 1 full chunk (high res) .build(vec -> { - mutable.remove(); + mutable2.remove(); return sampler.noise(vec.seed, vec.x, vec.z); }); -// } -// cache3D = null; -// cache3DDirv = null; -// if (DerivativeNoiseSampler.isDifferentiable(sampler)) { -// this.cache2DDirv = Caffeine -// .newBuilder() -// .initialCapacity(0) -// .maximumSize(256L * generationThreads) // 1 full chunk (high res) -// .build(vec -> ((DerivativeNoiseSampler) sampler).noised(vec.seed, vec.x, vec.z)); -// } else { -// cache2DDirv = null; -// } -// } else { -// this.cache3D = Caffeine -// .newBuilder() -// .initialCapacity(0) -// .maximumSize(256L * generationThreads) // 1 full chunk (high res) -// .build(vec -> sampler.noise(vec.seed, vec.x, vec.y, vec.z)); -// cache2D = null; -// cache2DDirv = null; -// if (DerivativeNoiseSampler.isDifferentiable(sampler)) { -// this.cache3DDirv = Caffeine -// .newBuilder() -// .initialCapacity(0) -// .maximumSize(256L * generationThreads) // 1 full chunk (high res) -// .build(vec -> ((DerivativeNoiseSampler) sampler).noised(vec.seed, vec.x, vec.y, vec.z)); -// } else { -// cache3DDirv = null; -// } -// } + cache3D = null; + cache3DDirv = null; + mutable3.remove(); + if (DerivativeNoiseSampler.isDifferentiable(sampler)) { + this.cache2DDirv = Caffeine + .newBuilder() + .initialCapacity(0) + .maximumSize(256L * generationThreads) // 1 full chunk (high res) + .build(vec -> { + mutable2.remove(); + return ((DerivativeNoiseSampler) sampler).noised(vec.seed, vec.x, vec.z); + }); + } else { + cache2DDirv = null; + } + } else { + this.cache3D = Caffeine + .newBuilder() + .initialCapacity(0) + .maximumSize(256L * generationThreads) // 1 full chunk (high res) + .build(vec -> { + mutable3.remove(); + return sampler.noise(vec.seed, vec.x, vec.y, vec.z); + }); + cache2D = null; + cache2DDirv = null; + mutable2.remove(); + if (DerivativeNoiseSampler.isDifferentiable(sampler)) { + this.cache3DDirv = Caffeine + .newBuilder() + .initialCapacity(0) + .maximumSize(256L * generationThreads) // 1 full chunk (high res) + .build(vec -> { + mutable3.remove(); + return ((DerivativeNoiseSampler) sampler).noised(vec.seed, vec.x, vec.y, vec.z); + }); + } else { + cache3DDirv = null; + } + } } @Override @@ -68,38 +81,58 @@ public class CacheSampler implements DerivativeNoiseSampler { @Override public double[] noised(long seed, double x, double y) { -// return cache2DDirv.get(new DoubleSeededVector2(x, y, seed)); - return null; + DoubleSeededVector2 mutableKey = mutable2.get(); + mutableKey.set(x, y, seed); + return cache2DDirv.get(mutableKey); } @Override public double[] noised(long seed, double x, double y, double z) { -// return cache3DDirv.get(new DoubleSeededVector3(x, y, z, seed)); - return null; + DoubleSeededVector3 mutableKey = mutable3.get(); + mutableKey.set(x, y, z, seed); + return cache3DDirv.get(mutableKey); } @Override public double noise(long seed, double x, double y) { -// DoubleSeededVector2 vec = new DoubleSeededVector2(x, y, seed); -// if (cache2DDirv != null && cache2DDirv.estimatedSize() != 0) { -// return cache2DDirv.get(vec)[0]; -// } - DoubleSeededVector2 mutableKey = mutable.get(); + DoubleSeededVector2 mutableKey = mutable2.get(); mutableKey.set(x, y, seed); + if (cache2DDirv != null && cache2DDirv.estimatedSize() != 0) { + return cache2DDirv.get(mutableKey)[0]; + } return cache2D.get(mutableKey); } @Override public double noise(long seed, double x, double y, double z) { -// DoubleSeededVector3 vec = new DoubleSeededVector3(x, y, z, seed); -// if (cache3DDirv != null && cache3DDirv.estimatedSize() != 0) { -// return cache3DDirv.get(vec)[0]; -// } -// return cache3D.get(vec); - return 0; + DoubleSeededVector3 mutableKey = mutable3.get(); + mutableKey.set(x, y, z, seed); + if (cache3DDirv != null && cache3DDirv.estimatedSize() != 0) { + return cache3DDirv.get(mutableKey)[0]; + } + return cache3D.get(mutableKey); } - private record DoubleSeededVector3(double x, double y, double z, long seed) { + private static class DoubleSeededVector3 { + double x; + double y; + double z; + long seed; + + public DoubleSeededVector3(double x, double y, double z, long seed) { + this.x = x; + this.y = y; + this.z = z; + this.seed = seed; + } + + public void set(double x, double y, double z, long seed) { + this.x = x; + this.y = y; + this.z = z; + this.seed = seed; + } + @Override public boolean equals(Object obj) { if(obj instanceof DoubleSeededVector3 that) { @@ -118,7 +151,7 @@ public class CacheSampler implements DerivativeNoiseSampler { } - private class DoubleSeededVector2 { + private static class DoubleSeededVector2 { double x; double z; diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java index 0a3f7db1e..d9b6e590a 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java @@ -21,21 +21,33 @@ public class CachingBiomeProvider implements BiomeProvider, Handle { private final LoadingCache cache; private final LoadingCache> baseCache; + private final ThreadLocal mutable2 = + ThreadLocal.withInitial(() -> new SeededVector2(0, 0, 0)); + + private final ThreadLocal mutable3 = + ThreadLocal.withInitial(() -> new SeededVector3(0, 0, 0, 0)); + protected CachingBiomeProvider(BiomeProvider delegate, int generationThreads) { this.delegate = delegate; this.res = delegate.resolution(); - int size = generationThreads * 98304; + int size = generationThreads * 256 * 384; this.cache = Caffeine .newBuilder() .scheduler(Scheduler.disabledScheduler()) .initialCapacity(size) .maximumSize(size) // 1 full chunk (high res) - .build(vec -> delegate.getBiome(vec.x * res, vec.y * res, vec.z * res, vec.seed)); + .build(vec -> { + mutable3.remove(); + return delegate.getBiome(vec.x * res, vec.y * res, vec.z * res, vec.seed); + }); this.baseCache = Caffeine .newBuilder() .maximumSize(256L * generationThreads) // 1 full chunk (high res) - .build(vec -> delegate.getBaseBiome(vec.x * res, vec.z * res, vec.seed)); + .build(vec -> { + mutable2.remove(); + return delegate.getBaseBiome(vec.x * res, vec.z * res, vec.seed); + }); } @@ -46,12 +58,16 @@ public class CachingBiomeProvider implements BiomeProvider, Handle { @Override public Biome getBiome(int x, int y, int z, long seed) { - return cache.get(new SeededVector3(x / res, y / res, z / res, seed)); + SeededVector3 mutableKey = mutable3.get(); + mutableKey.set(x, y, z, seed); + return cache.get(mutableKey); } @Override public Optional getBaseBiome(int x, int z, long seed) { - return baseCache.get(new SeededVector2(x / res, z / res, seed)); + SeededVector2 mutableKey = mutable2.get(); + mutableKey.set(x, z, seed); + return baseCache.get(mutableKey); } @Override @@ -64,7 +80,26 @@ public class CachingBiomeProvider implements BiomeProvider, Handle { return delegate.resolution(); } - private record SeededVector3(int x, int y, int z, long seed) { + private static class SeededVector3 { + int x; + int y; + int z; + long seed; + + public SeededVector3(int x, int y, int z, long seed) { + this.x = x; + this.y = y; + this.z = z; + this.seed = seed; + } + + public void set(int x, int y, int z, long seed) { + this.x = x; + this.y = y; + this.z = z; + this.seed = seed; + } + @Override public boolean equals(Object obj) { if(obj instanceof SeededVector3 that) { @@ -83,7 +118,23 @@ public class CachingBiomeProvider implements BiomeProvider, Handle { } - private record SeededVector2(int x, int z, long seed) { + private static class SeededVector2 { + int x; + int z; + long seed; + + public SeededVector2(int x, int z, long seed) { + this.x = x; + this.z = z; + this.seed = seed; + } + + public void set(int x, int z, long seed) { + this.x = x; + this.z = z; + this.seed = seed; + } + @Override public boolean equals(Object obj) { if(obj instanceof SeededVector2 that) { From accc07fa079af278eaf7073b9fa287b54343a55b Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Fri, 11 Oct 2024 15:15:38 -0600 Subject: [PATCH 074/136] Bump Version --- build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 67b22ccb5..2d6105c73 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,8 +1,8 @@ preRelease(true) -versionProjects(":common:api", version("6.5.0")) -versionProjects(":common:implementation", version("6.5.0")) -versionProjects(":platforms", version("6.5.0")) +versionProjects(":common:api", version("6.6.0")) +versionProjects(":common:implementation", version("6.6.0")) +versionProjects(":platforms", version("6.6.0")) allprojects { From 43d52e4bc1df43f1a2d661f0abf686d65f029609 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Fri, 11 Oct 2024 15:16:04 -0600 Subject: [PATCH 075/136] CLI Improvements --- buildSrc/src/main/kotlin/Versions.kt | 1 + platforms/cli/build.gradle.kts | 9 +++++ .../java/com/dfsek/terra/cli/TerraCLI.java | 40 ++++++++++++++++--- .../com/dfsek/terra/cli/world/CLIWorld.java | 4 ++ 4 files changed, 48 insertions(+), 6 deletions(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 1e48e716a..1599ea003 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -74,5 +74,6 @@ object Versions { object CLI { const val nbt = "6.1" const val logback = "1.5.8" + const val picocli = "4.7.6" } } \ No newline at end of file diff --git a/platforms/cli/build.gradle.kts b/platforms/cli/build.gradle.kts index 5070c047f..74661ecb5 100644 --- a/platforms/cli/build.gradle.kts +++ b/platforms/cli/build.gradle.kts @@ -10,6 +10,9 @@ dependencies { shadedApi("commons-io", "commons-io", Versions.Libraries.Internal.apacheIO) shadedApi("com.github.Querz", "NBT", Versions.CLI.nbt) + shadedImplementation("info.picocli", "picocli", Versions.CLI.picocli) + annotationProcessor("info.picocli", "picocli-codegen", Versions.CLI.picocli) + shadedImplementation("com.google.guava", "guava", Versions.Libraries.Internal.guava) shadedImplementation("ch.qos.logback", "logback-classic", Versions.CLI.logback) @@ -26,6 +29,12 @@ tasks.withType { } } +tasks.withType { + doFirst { + options.compilerArgs.add("-Aproject=${project.group}/${project.name}") + } +} + application { mainClass.set(javaMainClass) } diff --git a/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java b/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java index 8f62528bc..9fd69c92d 100644 --- a/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java +++ b/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java @@ -5,25 +5,48 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.IOException; +import java.util.concurrent.Callable; import com.dfsek.terra.api.config.ConfigPack; import com.dfsek.terra.api.event.events.platform.PlatformInitializationEvent; import com.dfsek.terra.api.util.vector.Vector2Int; import com.dfsek.terra.cli.world.CLIWorld; +import picocli.CommandLine; +import picocli.CommandLine.Command; +import picocli.CommandLine.Option; -public final class TerraCLI { - private static final Logger LOGGER = LoggerFactory.getLogger(TerraCLI.class); - public static void main(String... args) { +//TODO auto pull in version +@Command(name = "TerraCLI", mixinStandardHelpOptions = true, version = "6.6.0", + description = "Generates a Terra World and saves it in minecraft region format.") +public final class TerraCLI implements Callable { + @Option(names = { "-s", "--size"}, description = "Number of regions to generate.") + private int size = 2; + + @Option(names = { "-p", "--pack"}, description = "Config pack to use.") + private String pack = "OVERWORLD"; + + @Option(names = { "--seed"}, description = "Seed for world generation.") + private long seed = 0; + + @Option(names = { "--max-height"}, description = "Maximum height of the world.") + private int maxHeight = 384; + + @Option(names = { "--min-height"}, description = "Minimum height of the world.") + private int minHeight = -64; + + @Override + public Integer call() throws Exception { // your business logic goes here... + Logger LOGGER = LoggerFactory.getLogger(TerraCLI.class); LOGGER.info("Starting Terra CLI..."); CLIPlatform platform = new CLIPlatform(); platform.getEventManager().callEvent(new PlatformInitializationEvent()); - ConfigPack generate = platform.getConfigRegistry().getByID("OVERWORLD").orElseThrow(); // TODO: make this a cli argument + ConfigPack generate = platform.getConfigRegistry().getByID(pack).orElseThrow(); - CLIWorld world = new CLIWorld(2, 2, 384, -64, generate); + CLIWorld world = new CLIWorld(size, seed, maxHeight, minHeight, generate); world.generate(); @@ -40,6 +63,11 @@ public final class TerraCLI { LOGGER.info("Wrote region to file."); }); LOGGER.info("Done."); - System.exit(0); + return 0; + } + + public static void main(String... args) { + int exitCode = new CommandLine(new TerraCLI()).execute(args); + System.exit(exitCode); } } diff --git a/platforms/cli/src/main/java/com/dfsek/terra/cli/world/CLIWorld.java b/platforms/cli/src/main/java/com/dfsek/terra/cli/world/CLIWorld.java index a4af0d02e..3d2b5dd51 100644 --- a/platforms/cli/src/main/java/com/dfsek/terra/cli/world/CLIWorld.java +++ b/platforms/cli/src/main/java/com/dfsek/terra/cli/world/CLIWorld.java @@ -73,6 +73,7 @@ public class CLIWorld implements ServerWorld, NBTSerializable CPSHistory = new ArrayList<>(); int sizeChunks = size * 32; List> futures = new ArrayList<>(); final AtomicLong start = new AtomicLong(System.nanoTime()); @@ -91,6 +92,7 @@ public class CLIWorld implements ServerWorld, NBTSerializable d).average().orElse(0)); } @Override From 9d328b12b3c6aec8dea90b069f93bfd0680a8535 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Fri, 11 Oct 2024 16:06:23 -0600 Subject: [PATCH 076/136] More cache improvements --- .../templates/CacheSamplerTemplate.java | 2 +- .../addons/noise/samplers/CacheSampler.java | 76 ++++--------------- .../com/dfsek/terra/api/util/CacheUtils.java | 10 +++ .../generation/CachingBiomeProvider.java | 32 +++++--- 4 files changed, 48 insertions(+), 72 deletions(-) create mode 100644 common/api/src/main/java/com/dfsek/terra/api/util/CacheUtils.java diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java index ca3b7d0b0..418881ce4 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java @@ -8,7 +8,7 @@ import com.dfsek.terra.addons.noise.samplers.LinearHeightmapSampler; import com.dfsek.terra.api.noise.NoiseSampler; -public class CacheSamplerTemplate extends SamplerTemplate { +public class CacheSamplerTemplate extends SamplerTemplate { @Value("sampler") @Default private NoiseSampler sampler; diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java index b0d81eb0b..012f077ae 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java @@ -5,15 +5,16 @@ import com.dfsek.terra.api.noise.NoiseSampler; import com.github.benmanes.caffeine.cache.Caffeine; import com.github.benmanes.caffeine.cache.LoadingCache; +import com.github.benmanes.caffeine.cache.Scheduler; + +import static com.dfsek.terra.api.util.CacheUtils.CACHE_EXECUTOR; -public class CacheSampler implements DerivativeNoiseSampler { +public class CacheSampler implements NoiseSampler { private final NoiseSampler sampler; private final LoadingCache cache2D; private final LoadingCache cache3D; - private final LoadingCache cache2DDirv; - private final LoadingCache cache3DDirv; private final ThreadLocal mutable2 = ThreadLocal.withInitial(() -> new DoubleSeededVector2(0, 0, 0)); @@ -23,83 +24,41 @@ public class CacheSampler implements DerivativeNoiseSampler { public CacheSampler(NoiseSampler sampler, int dimensions, int generationThreads) { this.sampler = sampler; + int size = generationThreads * 256; if (dimensions == 2) { this.cache2D = Caffeine .newBuilder() - .initialCapacity(0) - .maximumSize(256L * generationThreads)// 1 full chunk (high res) + .executor(CACHE_EXECUTOR) + .scheduler(Scheduler.systemScheduler()) + .initialCapacity(size) + .maximumSize(size) .build(vec -> { mutable2.remove(); - return sampler.noise(vec.seed, vec.x, vec.z); + return this.sampler.noise(vec.seed, vec.x, vec.z); }); cache3D = null; - cache3DDirv = null; mutable3.remove(); - if (DerivativeNoiseSampler.isDifferentiable(sampler)) { - this.cache2DDirv = Caffeine - .newBuilder() - .initialCapacity(0) - .maximumSize(256L * generationThreads) // 1 full chunk (high res) - .build(vec -> { - mutable2.remove(); - return ((DerivativeNoiseSampler) sampler).noised(vec.seed, vec.x, vec.z); - }); - } else { - cache2DDirv = null; - } } else { + int size3D = size * 384; this.cache3D = Caffeine .newBuilder() - .initialCapacity(0) - .maximumSize(256L * generationThreads) // 1 full chunk (high res) + .executor(CACHE_EXECUTOR) + .scheduler(Scheduler.systemScheduler()) + .initialCapacity(size3D) + .maximumSize(size3D) .build(vec -> { mutable3.remove(); - return sampler.noise(vec.seed, vec.x, vec.y, vec.z); + return this.sampler.noise(vec.seed, vec.x, vec.y, vec.z); }); cache2D = null; - cache2DDirv = null; mutable2.remove(); - if (DerivativeNoiseSampler.isDifferentiable(sampler)) { - this.cache3DDirv = Caffeine - .newBuilder() - .initialCapacity(0) - .maximumSize(256L * generationThreads) // 1 full chunk (high res) - .build(vec -> { - mutable3.remove(); - return ((DerivativeNoiseSampler) sampler).noised(vec.seed, vec.x, vec.y, vec.z); - }); - } else { - cache3DDirv = null; - } } } - @Override - public boolean isDifferentiable() { - return DerivativeNoiseSampler.isDifferentiable(sampler); - } - - @Override - public double[] noised(long seed, double x, double y) { - DoubleSeededVector2 mutableKey = mutable2.get(); - mutableKey.set(x, y, seed); - return cache2DDirv.get(mutableKey); - } - - @Override - public double[] noised(long seed, double x, double y, double z) { - DoubleSeededVector3 mutableKey = mutable3.get(); - mutableKey.set(x, y, z, seed); - return cache3DDirv.get(mutableKey); - } - @Override public double noise(long seed, double x, double y) { DoubleSeededVector2 mutableKey = mutable2.get(); mutableKey.set(x, y, seed); - if (cache2DDirv != null && cache2DDirv.estimatedSize() != 0) { - return cache2DDirv.get(mutableKey)[0]; - } return cache2D.get(mutableKey); } @@ -107,9 +66,6 @@ public class CacheSampler implements DerivativeNoiseSampler { public double noise(long seed, double x, double y, double z) { DoubleSeededVector3 mutableKey = mutable3.get(); mutableKey.set(x, y, z, seed); - if (cache3DDirv != null && cache3DDirv.estimatedSize() != 0) { - return cache3DDirv.get(mutableKey)[0]; - } return cache3D.get(mutableKey); } diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/CacheUtils.java b/common/api/src/main/java/com/dfsek/terra/api/util/CacheUtils.java new file mode 100644 index 000000000..c305735bd --- /dev/null +++ b/common/api/src/main/java/com/dfsek/terra/api/util/CacheUtils.java @@ -0,0 +1,10 @@ +package com.dfsek.terra.api.util; + +import java.util.concurrent.Executor; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; + + +public class CacheUtils { + public static final Executor CACHE_EXECUTOR = Executors.newSingleThreadExecutor(); +} diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java index d9b6e590a..bdebb0013 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java @@ -9,6 +9,8 @@ import java.util.Optional; import com.dfsek.terra.api.Handle; import com.dfsek.terra.api.world.biome.Biome; +import static com.dfsek.terra.api.util.CacheUtils.CACHE_EXECUTOR; + /** * A biome provider implementation that lazily evaluates biomes, and caches them. @@ -30,24 +32,32 @@ public class CachingBiomeProvider implements BiomeProvider, Handle { protected CachingBiomeProvider(BiomeProvider delegate, int generationThreads) { this.delegate = delegate; this.res = delegate.resolution(); - int size = generationThreads * 256 * 384; + + int size = generationThreads * 256; + this.baseCache = Caffeine + .newBuilder() + .executor(CACHE_EXECUTOR) + .scheduler(Scheduler.systemScheduler()) + .initialCapacity(size) + .maximumSize(size) + .build(vec -> { + mutable2.remove(); + return delegate.getBaseBiome(vec.x * res, vec.z * res, vec.seed); + }); + + int size3D = size * 384; this.cache = Caffeine .newBuilder() - .scheduler(Scheduler.disabledScheduler()) - .initialCapacity(size) - .maximumSize(size) // 1 full chunk (high res) + .executor(CACHE_EXECUTOR) + .scheduler(Scheduler.systemScheduler()) + .initialCapacity(size3D) + .maximumSize(size3D) .build(vec -> { mutable3.remove(); return delegate.getBiome(vec.x * res, vec.y * res, vec.z * res, vec.seed); }); - this.baseCache = Caffeine - .newBuilder() - .maximumSize(256L * generationThreads) // 1 full chunk (high res) - .build(vec -> { - mutable2.remove(); - return delegate.getBaseBiome(vec.x * res, vec.z * res, vec.seed); - }); + } From d31679e6bea9d4a01833bb1a8e0193b9b28c8632 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Fri, 11 Oct 2024 16:06:40 -0600 Subject: [PATCH 077/136] remove stuff from example --- platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java b/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java index 9fd69c92d..6bce0674b 100644 --- a/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java +++ b/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java @@ -37,7 +37,7 @@ public final class TerraCLI implements Callable { private int minHeight = -64; @Override - public Integer call() throws Exception { // your business logic goes here... + public Integer call() { Logger LOGGER = LoggerFactory.getLogger(TerraCLI.class); LOGGER.info("Starting Terra CLI..."); From 8a028b193ab18969b608b974f70695ae41343087 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Fri, 11 Oct 2024 16:35:26 -0600 Subject: [PATCH 078/136] Add no save option --- .../java/com/dfsek/terra/cli/TerraCLI.java | 29 +++++++++++-------- .../com/dfsek/terra/cli/world/CLIWorld.java | 12 ++++++-- 2 files changed, 27 insertions(+), 14 deletions(-) diff --git a/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java b/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java index 6bce0674b..df55beea9 100644 --- a/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java +++ b/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java @@ -36,6 +36,9 @@ public final class TerraCLI implements Callable { @Option(names = { "--min-height"}, description = "Minimum height of the world.") private int minHeight = -64; + @Option(names = { "--no-save"}, description = "Don't save the world to disk.") + private boolean noSave = false; + @Override public Integer call() { Logger LOGGER = LoggerFactory.getLogger(TerraCLI.class); @@ -46,22 +49,24 @@ public final class TerraCLI implements Callable { ConfigPack generate = platform.getConfigRegistry().getByID(pack).orElseThrow(); - CLIWorld world = new CLIWorld(size, seed, maxHeight, minHeight, generate); + CLIWorld world = new CLIWorld(size, seed, maxHeight, minHeight, generate, noSave); world.generate(); - world.serialize().parallel().forEach(mcaFile -> { - Vector2Int pos = mcaFile.getLeft(); - String name = MCAUtil.createNameFromRegionLocation(pos.getX(), pos.getZ()); - LOGGER.info("Writing region ({}, {}) to {}", pos.getX(), pos.getZ(), name); + if(!noSave) { + world.serialize().parallel().forEach(mcaFile -> { + Vector2Int pos = mcaFile.getLeft(); + String name = MCAUtil.createNameFromRegionLocation(pos.getX(), pos.getZ()); + LOGGER.info("Writing region ({}, {}) to {}", pos.getX(), pos.getZ(), name); - try { - MCAUtil.write(mcaFile.getRight(), name); - } catch(IOException e) { - e.printStackTrace(); - } - LOGGER.info("Wrote region to file."); - }); + try { + MCAUtil.write(mcaFile.getRight(), name); + } catch(IOException e) { + e.printStackTrace(); + } + LOGGER.info("Wrote region to file."); + }); + } LOGGER.info("Done."); return 0; } diff --git a/platforms/cli/src/main/java/com/dfsek/terra/cli/world/CLIWorld.java b/platforms/cli/src/main/java/com/dfsek/terra/cli/world/CLIWorld.java index 3d2b5dd51..cb22ac666 100644 --- a/platforms/cli/src/main/java/com/dfsek/terra/cli/world/CLIWorld.java +++ b/platforms/cli/src/main/java/com/dfsek/terra/cli/world/CLIWorld.java @@ -43,6 +43,7 @@ public class CLIWorld implements ServerWorld, NBTSerializable { try { int num = amount.getAndIncrement(); - CLIChunk chunk = getChunkAt(finalX, finalZ); + CLIChunk chunk; + if (!noSave) { + chunk = getChunkAt(finalX, finalZ); + } else { + chunk = new CLIChunk(Math.floorMod(finalX, 32), Math.floorMod(finalZ, 32), this); + } + BiomeProvider cachingBiomeProvider = pack.getBiomeProvider(); chunkGenerator.generateChunkData(chunk, this, cachingBiomeProvider, finalX, finalZ); CLIProtoWorld protoWorld = new CLIProtoWorld(this, cachingBiomeProvider, finalX, finalZ); From 305255511dd6f25bd363f9ed4447cdd4c1192cfd Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Fri, 11 Oct 2024 18:27:37 -0600 Subject: [PATCH 079/136] More cache improvements --- .../dfsek/terra/addons/noise/NoiseAddon.java | 2 +- .../templates/CacheSamplerTemplate.java | 6 +- .../addons/noise/samplers/CacheSampler.java | 68 ++++++++++--------- .../world/biome/generation/BiomeProvider.java | 2 +- .../generation/CachingBiomeProvider.java | 62 +++++++++-------- 5 files changed, 72 insertions(+), 68 deletions(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java index e4dc09b56..a7ef9a43e 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java @@ -151,7 +151,7 @@ public class NoiseAddon implements AddonInitializer { noiseRegistry.register(addon.key("MAX"), () -> new BinaryArithmeticTemplate<>(MaxSampler::new)); noiseRegistry.register(addon.key("MIN"), () -> new BinaryArithmeticTemplate<>(MinSampler::new)); - noiseRegistry.register(addon.key("CACHE"), () -> new CacheSamplerTemplate(plugin.getGenerationThreads())); + noiseRegistry.register(addon.key("CACHE"), CacheSamplerTemplate::new); Map packSamplers = new LinkedHashMap<>(); diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java index 418881ce4..492f9ad5a 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java @@ -13,14 +13,12 @@ public class CacheSamplerTemplate extends SamplerTemplate { @Default private NoiseSampler sampler; - private final int generationThreads; + public CacheSamplerTemplate() { - public CacheSamplerTemplate(int generationThreads) { - this.generationThreads = generationThreads; } @Override public NoiseSampler get() { - return new CacheSampler(sampler, getDimensions(), generationThreads); + return new CacheSampler(sampler, getDimensions()); } } diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java index 012f077ae..acff3e24c 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java @@ -3,6 +3,10 @@ package com.dfsek.terra.addons.noise.samplers; import com.dfsek.terra.api.noise.DerivativeNoiseSampler; import com.dfsek.terra.api.noise.NoiseSampler; +import com.dfsek.terra.api.util.generic.pair.Pair; + +import com.dfsek.terra.api.util.generic.pair.Pair.Mutable; + import com.github.benmanes.caffeine.cache.Caffeine; import com.github.benmanes.caffeine.cache.LoadingCache; import com.github.benmanes.caffeine.cache.Scheduler; @@ -13,60 +17,58 @@ import static com.dfsek.terra.api.util.CacheUtils.CACHE_EXECUTOR; public class CacheSampler implements NoiseSampler { private final NoiseSampler sampler; - private final LoadingCache cache2D; - private final LoadingCache cache3D; + private final ThreadLocal>> cache2D; + private final ThreadLocal>> cache3D; - private final ThreadLocal mutable2 = - ThreadLocal.withInitial(() -> new DoubleSeededVector2(0, 0, 0)); - - private final ThreadLocal mutable3 = - ThreadLocal.withInitial(() -> new DoubleSeededVector3(0, 0, 0, 0)); - - public CacheSampler(NoiseSampler sampler, int dimensions, int generationThreads) { + public CacheSampler(NoiseSampler sampler, int dimensions) { this.sampler = sampler; - int size = generationThreads * 256; if (dimensions == 2) { - this.cache2D = Caffeine + LoadingCache cache = Caffeine .newBuilder() .executor(CACHE_EXECUTOR) .scheduler(Scheduler.systemScheduler()) - .initialCapacity(size) - .maximumSize(size) - .build(vec -> { - mutable2.remove(); - return this.sampler.noise(vec.seed, vec.x, vec.z); - }); - cache3D = null; - mutable3.remove(); + .initialCapacity(256) + .maximumSize(256) + .build(this::sampleNoise); + this.cache2D = ThreadLocal.withInitial(() -> Pair.of(new DoubleSeededVector2(0, 0, 0), cache).mutable()); + this.cache3D = null; } else { - int size3D = size * 384; - this.cache3D = Caffeine + LoadingCache cache = Caffeine .newBuilder() .executor(CACHE_EXECUTOR) .scheduler(Scheduler.systemScheduler()) - .initialCapacity(size3D) - .maximumSize(size3D) - .build(vec -> { - mutable3.remove(); - return this.sampler.noise(vec.seed, vec.x, vec.y, vec.z); - }); - cache2D = null; - mutable2.remove(); + .initialCapacity(981504) + .maximumSize(981504) + .build(this::sampleNoise); + this.cache3D = ThreadLocal.withInitial(() -> Pair.of(new DoubleSeededVector3(0, 0, 0, 0), cache).mutable()); + this.cache2D = null; } } + private Double sampleNoise(DoubleSeededVector2 vec) { + this.cache2D.get().setLeft(new DoubleSeededVector2(0, 0, 0)); + return this.sampler.noise(vec.seed, vec.x, vec.z); + } + + private Double sampleNoise(DoubleSeededVector3 vec) { + this.cache3D.get().setLeft(new DoubleSeededVector3(0, 0, 0, 0)); + return this.sampler.noise(vec.seed, vec.x, vec.z); + } + @Override public double noise(long seed, double x, double y) { - DoubleSeededVector2 mutableKey = mutable2.get(); + Mutable> cachePair = cache2D.get(); + DoubleSeededVector2 mutableKey = cachePair.getLeft(); mutableKey.set(x, y, seed); - return cache2D.get(mutableKey); + return cachePair.getRight().get(mutableKey); } @Override public double noise(long seed, double x, double y, double z) { - DoubleSeededVector3 mutableKey = mutable3.get(); + Mutable> cachePair = cache3D.get(); + DoubleSeededVector3 mutableKey = cachePair.getLeft(); mutableKey.set(x, y, z, seed); - return cache3D.get(mutableKey); + return cachePair.getRight().get(mutableKey); } private static class DoubleSeededVector3 { diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/BiomeProvider.java b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/BiomeProvider.java index 743d1d671..29c4531f1 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/BiomeProvider.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/BiomeProvider.java @@ -97,7 +97,7 @@ public interface BiomeProvider { if(this instanceof CachingBiomeProvider cachingBiomeProvider) { return cachingBiomeProvider; } - return new CachingBiomeProvider(this, platform.getGenerationThreads()); + return new CachingBiomeProvider(this); } diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java index bdebb0013..3e712b761 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java @@ -1,5 +1,9 @@ package com.dfsek.terra.api.world.biome.generation; +import com.dfsek.terra.api.util.generic.pair.Pair; + +import com.dfsek.terra.api.util.generic.pair.Pair.Mutable; + import com.github.benmanes.caffeine.cache.Caffeine; import com.github.benmanes.caffeine.cache.LoadingCache; import com.github.benmanes.caffeine.cache.Scheduler; @@ -20,47 +24,45 @@ import static com.dfsek.terra.api.util.CacheUtils.CACHE_EXECUTOR; public class CachingBiomeProvider implements BiomeProvider, Handle { protected final BiomeProvider delegate; private final int res; - private final LoadingCache cache; - private final LoadingCache> baseCache; + private final ThreadLocal>> cache; + private final ThreadLocal>>> baseCache; - private final ThreadLocal mutable2 = - ThreadLocal.withInitial(() -> new SeededVector2(0, 0, 0)); - - private final ThreadLocal mutable3 = - ThreadLocal.withInitial(() -> new SeededVector3(0, 0, 0, 0)); - - protected CachingBiomeProvider(BiomeProvider delegate, int generationThreads) { + protected CachingBiomeProvider(BiomeProvider delegate) { this.delegate = delegate; this.res = delegate.resolution(); - int size = generationThreads * 256; - this.baseCache = Caffeine + LoadingCache> cache = Caffeine .newBuilder() .executor(CACHE_EXECUTOR) .scheduler(Scheduler.systemScheduler()) - .initialCapacity(size) - .maximumSize(size) - .build(vec -> { - mutable2.remove(); - return delegate.getBaseBiome(vec.x * res, vec.z * res, vec.seed); - }); + .initialCapacity(256) + .maximumSize(256) + .build(this::sampleBiome); + this.baseCache = ThreadLocal.withInitial(() -> Pair.of(new SeededVector2(0, 0, 0), cache).mutable()); - int size3D = size * 384; - this.cache = Caffeine + LoadingCache cache3D = Caffeine .newBuilder() .executor(CACHE_EXECUTOR) .scheduler(Scheduler.systemScheduler()) - .initialCapacity(size3D) - .maximumSize(size3D) - .build(vec -> { - mutable3.remove(); - return delegate.getBiome(vec.x * res, vec.y * res, vec.z * res, vec.seed); - }); + .initialCapacity(981504) + .maximumSize(981504) + .build(this::sampleBiome); + this.cache = ThreadLocal.withInitial(() -> Pair.of(new SeededVector3(0, 0, 0, 0), cache3D).mutable()); } + private Optional sampleBiome(SeededVector2 vec) { + this.baseCache.get().setLeft(new SeededVector2(0, 0, 0)); + return this.delegate.getBaseBiome(vec.x * res, vec.z * res, vec.seed); + } + + private Biome sampleBiome(SeededVector3 vec) { + this.cache.get().setLeft(new SeededVector3(0, 0, 0, 0)); + return this.delegate.getBiome(vec.x * res, vec.y * res, vec.z * res, vec.seed); + } + @Override public BiomeProvider getHandle() { return delegate; @@ -68,16 +70,18 @@ public class CachingBiomeProvider implements BiomeProvider, Handle { @Override public Biome getBiome(int x, int y, int z, long seed) { - SeededVector3 mutableKey = mutable3.get(); + Mutable> cachePair = cache.get(); + SeededVector3 mutableKey = cachePair.getLeft(); mutableKey.set(x, y, z, seed); - return cache.get(mutableKey); + return cachePair.getRight().get(mutableKey); } @Override public Optional getBaseBiome(int x, int z, long seed) { - SeededVector2 mutableKey = mutable2.get(); + Mutable>> cachePair = baseCache.get(); + SeededVector2 mutableKey = cachePair.getLeft(); mutableKey.set(x, z, seed); - return baseCache.get(mutableKey); + return cachePair.getRight().get(mutableKey); } @Override From 585967157d3cf615a7608e3e924b3cbc0a50869d Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Fri, 11 Oct 2024 18:40:59 -0600 Subject: [PATCH 080/136] 1.21.2-pre3 --- buildSrc/src/main/kotlin/Versions.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 9536b40f0..df18dc709 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -29,7 +29,7 @@ object Versions { object Fabric { // const val fabricAPI = "0.104.0+${Mod.minecraft}" - const val fabricAPI = "0.105.3+1.21.2" + const val fabricAPI = "0.105.4+1.21.2" const val cloud = "2.0.0-beta.9" } // @@ -41,8 +41,8 @@ object Versions { object Mod { const val mixin = "0.15.3+mixin.0.8.7" - const val minecraft = "1.21.2-pre2" - const val yarn = "$minecraft+build.4" + const val minecraft = "1.21.2-pre3" + const val yarn = "$minecraft+build.2" const val fabricLoader = "0.16.7" const val architecuryLoom = "1.7.413" From 6851999926aaf7f0e259cee73f74f4fed935fbec Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Fri, 11 Oct 2024 19:45:12 -0600 Subject: [PATCH 081/136] Some refactoring --- .../addons/noise/samplers/CacheSampler.java | 107 +++--------------- .../addons/image/config/image/ImageCache.java | 9 +- .../api/util/{ => cache}/CacheUtils.java | 3 +- .../util/cache/DoubleSeededVector2Key.java | 35 ++++++ .../util/cache/DoubleSeededVector3Key.java | 38 +++++++ .../api/util/cache/SeededVector2Key.java | 37 ++++++ .../api/util/cache/SeededVector3Key.java | 40 +++++++ .../generation/CachingBiomeProvider.java | 103 +++-------------- .../java/com/dfsek/terra/cli/TerraCLI.java | 2 +- 9 files changed, 194 insertions(+), 180 deletions(-) rename common/api/src/main/java/com/dfsek/terra/api/util/{ => cache}/CacheUtils.java (71%) create mode 100644 common/api/src/main/java/com/dfsek/terra/api/util/cache/DoubleSeededVector2Key.java create mode 100644 common/api/src/main/java/com/dfsek/terra/api/util/cache/DoubleSeededVector3Key.java create mode 100644 common/api/src/main/java/com/dfsek/terra/api/util/cache/SeededVector2Key.java create mode 100644 common/api/src/main/java/com/dfsek/terra/api/util/cache/SeededVector3Key.java diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java index acff3e24c..14c42b03d 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java @@ -1,8 +1,9 @@ package com.dfsek.terra.addons.noise.samplers; -import com.dfsek.terra.api.noise.DerivativeNoiseSampler; import com.dfsek.terra.api.noise.NoiseSampler; +import com.dfsek.terra.api.util.cache.DoubleSeededVector2Key; +import com.dfsek.terra.api.util.cache.DoubleSeededVector3Key; import com.dfsek.terra.api.util.generic.pair.Pair; import com.dfsek.terra.api.util.generic.pair.Pair.Mutable; @@ -11,135 +12,63 @@ import com.github.benmanes.caffeine.cache.Caffeine; import com.github.benmanes.caffeine.cache.LoadingCache; import com.github.benmanes.caffeine.cache.Scheduler; -import static com.dfsek.terra.api.util.CacheUtils.CACHE_EXECUTOR; +import static com.dfsek.terra.api.util.cache.CacheUtils.CACHE_EXECUTOR; public class CacheSampler implements NoiseSampler { private final NoiseSampler sampler; - private final ThreadLocal>> cache2D; - private final ThreadLocal>> cache3D; + private final ThreadLocal>> cache2D; + private final ThreadLocal>> cache3D; public CacheSampler(NoiseSampler sampler, int dimensions) { this.sampler = sampler; if (dimensions == 2) { - LoadingCache cache = Caffeine + LoadingCache cache = Caffeine .newBuilder() .executor(CACHE_EXECUTOR) .scheduler(Scheduler.systemScheduler()) .initialCapacity(256) .maximumSize(256) .build(this::sampleNoise); - this.cache2D = ThreadLocal.withInitial(() -> Pair.of(new DoubleSeededVector2(0, 0, 0), cache).mutable()); + this.cache2D = ThreadLocal.withInitial(() -> Pair.of(new DoubleSeededVector2Key(0, 0, 0), cache).mutable()); this.cache3D = null; } else { - LoadingCache cache = Caffeine + LoadingCache cache = Caffeine .newBuilder() .executor(CACHE_EXECUTOR) .scheduler(Scheduler.systemScheduler()) .initialCapacity(981504) .maximumSize(981504) .build(this::sampleNoise); - this.cache3D = ThreadLocal.withInitial(() -> Pair.of(new DoubleSeededVector3(0, 0, 0, 0), cache).mutable()); + this.cache3D = ThreadLocal.withInitial(() -> Pair.of(new DoubleSeededVector3Key(0, 0, 0, 0), cache).mutable()); this.cache2D = null; } } - private Double sampleNoise(DoubleSeededVector2 vec) { - this.cache2D.get().setLeft(new DoubleSeededVector2(0, 0, 0)); + private Double sampleNoise(DoubleSeededVector2Key vec) { + this.cache2D.get().setLeft(new DoubleSeededVector2Key(0, 0, 0)); return this.sampler.noise(vec.seed, vec.x, vec.z); } - private Double sampleNoise(DoubleSeededVector3 vec) { - this.cache3D.get().setLeft(new DoubleSeededVector3(0, 0, 0, 0)); - return this.sampler.noise(vec.seed, vec.x, vec.z); + private Double sampleNoise(DoubleSeededVector3Key vec) { + this.cache3D.get().setLeft(new DoubleSeededVector3Key(0, 0, 0, 0)); + return this.sampler.noise(vec.seed, vec.x, vec.y, vec.z); } @Override public double noise(long seed, double x, double y) { - Mutable> cachePair = cache2D.get(); - DoubleSeededVector2 mutableKey = cachePair.getLeft(); + Mutable> cachePair = cache2D.get(); + DoubleSeededVector2Key mutableKey = cachePair.getLeft(); mutableKey.set(x, y, seed); return cachePair.getRight().get(mutableKey); } @Override public double noise(long seed, double x, double y, double z) { - Mutable> cachePair = cache3D.get(); - DoubleSeededVector3 mutableKey = cachePair.getLeft(); + Mutable> cachePair = cache3D.get(); + DoubleSeededVector3Key mutableKey = cachePair.getLeft(); mutableKey.set(x, y, z, seed); return cachePair.getRight().get(mutableKey); } - - private static class DoubleSeededVector3 { - double x; - double y; - double z; - long seed; - - public DoubleSeededVector3(double x, double y, double z, long seed) { - this.x = x; - this.y = y; - this.z = z; - this.seed = seed; - } - - public void set(double x, double y, double z, long seed) { - this.x = x; - this.y = y; - this.z = z; - this.seed = seed; - } - - @Override - public boolean equals(Object obj) { - if(obj instanceof DoubleSeededVector3 that) { - return this.y == that.y && this.z == that.z && this.x == that.x && this.seed == that.seed; - } - return false; - } - - @Override - public int hashCode() { - int code = (int) Double.doubleToLongBits(x); - code = 31 * code + (int) Double.doubleToLongBits(y); - code = 31 * code + (int) Double.doubleToLongBits(z); - return 31 * code + (Long.hashCode(seed)); - } - } - - - private static class DoubleSeededVector2 { - - double x; - double z; - long seed; - - public DoubleSeededVector2(double x, double z, long seed) { - this.x = x; - this.z = z; - this.seed = seed; - } - - public void set(double x, double z, long seed) { - this.x = x; - this.z = z; - this.seed = seed; - } - - @Override - public boolean equals(Object obj) { - if(obj instanceof DoubleSeededVector2 that) { - return this.z == that.z && this.x == that.x && this.seed == that.seed; - } - return false; - } - - @Override - public int hashCode() { - int code = (int) Double.doubleToLongBits(x); - code = 31 * code + (int) Double.doubleToLongBits(z); - return 31 * code + (Long.hashCode(seed)); - } - } } diff --git a/common/addons/library-image/src/main/java/com/dfsek/terra/addons/image/config/image/ImageCache.java b/common/addons/library-image/src/main/java/com/dfsek/terra/addons/image/config/image/ImageCache.java index 9283aa4b7..16d399cda 100644 --- a/common/addons/library-image/src/main/java/com/dfsek/terra/addons/image/config/image/ImageCache.java +++ b/common/addons/library-image/src/main/java/com/dfsek/terra/addons/image/config/image/ImageCache.java @@ -17,6 +17,10 @@ import com.dfsek.terra.api.config.Loader; import com.dfsek.terra.api.properties.Properties; import com.dfsek.terra.api.util.generic.Lazy; +import com.github.benmanes.caffeine.cache.Scheduler; + +import static com.dfsek.terra.api.util.cache.CacheUtils.CACHE_EXECUTOR; + /* * Cache prevents configs from loading the same image multiple times into memory @@ -26,8 +30,9 @@ record ImageCache(LoadingCache cache) implements Properties { ImageLibraryPackConfigTemplate config = pack.getContext().get(ImageLibraryPackConfigTemplate.class); ImageCache images; if(!pack.getContext().has(ImageCache.class)) { - var cacheBuilder = Caffeine.newBuilder(); - if(config.unloadOnTimeout()) cacheBuilder.expireAfterAccess(config.getCacheTimeout(), TimeUnit.SECONDS); + var cacheBuilder = Caffeine.newBuilder().executor(CACHE_EXECUTOR).scheduler(Scheduler.systemScheduler()); + if(config.unloadOnTimeout()) cacheBuilder.expireAfterAccess(config.getCacheTimeout(), TimeUnit.SECONDS) .executor(CACHE_EXECUTOR) + .scheduler(Scheduler.systemScheduler()); images = new ImageCache(cacheBuilder.build(s -> loadImage(s, files))); pack.getContext().put(images); } else images = pack.getContext().get(ImageCache.class); diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/CacheUtils.java b/common/api/src/main/java/com/dfsek/terra/api/util/cache/CacheUtils.java similarity index 71% rename from common/api/src/main/java/com/dfsek/terra/api/util/CacheUtils.java rename to common/api/src/main/java/com/dfsek/terra/api/util/cache/CacheUtils.java index c305735bd..9c5e7766b 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/CacheUtils.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/cache/CacheUtils.java @@ -1,7 +1,6 @@ -package com.dfsek.terra.api.util; +package com.dfsek.terra.api.util.cache; import java.util.concurrent.Executor; -import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/cache/DoubleSeededVector2Key.java b/common/api/src/main/java/com/dfsek/terra/api/util/cache/DoubleSeededVector2Key.java new file mode 100644 index 000000000..16845f7bc --- /dev/null +++ b/common/api/src/main/java/com/dfsek/terra/api/util/cache/DoubleSeededVector2Key.java @@ -0,0 +1,35 @@ +package com.dfsek.terra.api.util.cache; + +public class DoubleSeededVector2Key { + + public double x; + public double z; + public long seed; + + public DoubleSeededVector2Key(double x, double z, long seed) { + this.x = x; + this.z = z; + this.seed = seed; + } + + public void set(double x, double z, long seed) { + this.x = x; + this.z = z; + this.seed = seed; + } + + @Override + public boolean equals(Object obj) { + if(obj instanceof DoubleSeededVector2Key that) { + return this.z == that.z && this.x == that.x && this.seed == that.seed; + } + return false; + } + + @Override + public int hashCode() { + int code = (int) Double.doubleToLongBits(x); + code = 31 * code + (int) Double.doubleToLongBits(z); + return 31 * code + (Long.hashCode(seed)); + } +} \ No newline at end of file diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/cache/DoubleSeededVector3Key.java b/common/api/src/main/java/com/dfsek/terra/api/util/cache/DoubleSeededVector3Key.java new file mode 100644 index 000000000..dff9e5929 --- /dev/null +++ b/common/api/src/main/java/com/dfsek/terra/api/util/cache/DoubleSeededVector3Key.java @@ -0,0 +1,38 @@ +package com.dfsek.terra.api.util.cache; + +public class DoubleSeededVector3Key { + public double x; + public double y; + public double z; + public long seed; + + public DoubleSeededVector3Key(double x, double y, double z, long seed) { + this.x = x; + this.y = y; + this.z = z; + this.seed = seed; + } + + public void set(double x, double y, double z, long seed) { + this.x = x; + this.y = y; + this.z = z; + this.seed = seed; + } + + @Override + public boolean equals(Object obj) { + if(obj instanceof DoubleSeededVector3Key that) { + return this.y == that.y && this.z == that.z && this.x == that.x && this.seed == that.seed; + } + return false; + } + + @Override + public int hashCode() { + int code = (int) Double.doubleToLongBits(x); + code = 31 * code + (int) Double.doubleToLongBits(y); + code = 31 * code + (int) Double.doubleToLongBits(z); + return 31 * code + (Long.hashCode(seed)); + } +} \ No newline at end of file diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/cache/SeededVector2Key.java b/common/api/src/main/java/com/dfsek/terra/api/util/cache/SeededVector2Key.java new file mode 100644 index 000000000..2023867a6 --- /dev/null +++ b/common/api/src/main/java/com/dfsek/terra/api/util/cache/SeededVector2Key.java @@ -0,0 +1,37 @@ +package com.dfsek.terra.api.util.cache; + + + + +public class SeededVector2Key { + public int x; + public int z; + public long seed; + + public SeededVector2Key(int x, int z, long seed) { + this.x = x; + this.z = z; + this.seed = seed; + } + + public void set(int x, int z, long seed) { + this.x = x; + this.z = z; + this.seed = seed; + } + + @Override + public boolean equals(Object obj) { + if(obj instanceof SeededVector2Key that) { + return this.z == that.z && this.x == that.x && this.seed == that.seed; + } + return false; + } + + @Override + public int hashCode() { + int code = x; + code = 31 * code + z; + return 31 * code + (Long.hashCode(seed)); + } + } diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/cache/SeededVector3Key.java b/common/api/src/main/java/com/dfsek/terra/api/util/cache/SeededVector3Key.java new file mode 100644 index 000000000..90af87b32 --- /dev/null +++ b/common/api/src/main/java/com/dfsek/terra/api/util/cache/SeededVector3Key.java @@ -0,0 +1,40 @@ +package com.dfsek.terra.api.util.cache; + + + +public class SeededVector3Key { + public int x; + public int y; + public int z; + public long seed; + + public SeededVector3Key(int x, int y, int z, long seed) { + this.x = x; + this.y = y; + this.z = z; + this.seed = seed; + } + + public void set(int x, int y, int z, long seed) { + this.x = x; + this.y = y; + this.z = z; + this.seed = seed; + } + + @Override + public boolean equals(Object obj) { + if(obj instanceof SeededVector3Key that) { + return this.y == that.y && this.z == that.z && this.x == that.x && this.seed == that.seed; + } + return false; + } + + @Override + public int hashCode() { + int code = x; + code = 31 * code + y; + code = 31 * code + z; + return 31 * code + (Long.hashCode(seed)); + } +} \ No newline at end of file diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java index 3e712b761..39411a6c3 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java @@ -1,5 +1,7 @@ package com.dfsek.terra.api.world.biome.generation; +import com.dfsek.terra.api.util.cache.SeededVector2Key; +import com.dfsek.terra.api.util.cache.SeededVector3Key; import com.dfsek.terra.api.util.generic.pair.Pair; import com.dfsek.terra.api.util.generic.pair.Pair.Mutable; @@ -13,7 +15,7 @@ import java.util.Optional; import com.dfsek.terra.api.Handle; import com.dfsek.terra.api.world.biome.Biome; -import static com.dfsek.terra.api.util.CacheUtils.CACHE_EXECUTOR; +import static com.dfsek.terra.api.util.cache.CacheUtils.CACHE_EXECUTOR; /** @@ -24,42 +26,42 @@ import static com.dfsek.terra.api.util.CacheUtils.CACHE_EXECUTOR; public class CachingBiomeProvider implements BiomeProvider, Handle { protected final BiomeProvider delegate; private final int res; - private final ThreadLocal>> cache; - private final ThreadLocal>>> baseCache; + private final ThreadLocal>> cache; + private final ThreadLocal>>> baseCache; protected CachingBiomeProvider(BiomeProvider delegate) { this.delegate = delegate; this.res = delegate.resolution(); - LoadingCache> cache = Caffeine + LoadingCache> cache = Caffeine .newBuilder() .executor(CACHE_EXECUTOR) .scheduler(Scheduler.systemScheduler()) .initialCapacity(256) .maximumSize(256) .build(this::sampleBiome); - this.baseCache = ThreadLocal.withInitial(() -> Pair.of(new SeededVector2(0, 0, 0), cache).mutable()); + this.baseCache = ThreadLocal.withInitial(() -> Pair.of(new SeededVector2Key(0, 0, 0), cache).mutable()); - LoadingCache cache3D = Caffeine + LoadingCache cache3D = Caffeine .newBuilder() .executor(CACHE_EXECUTOR) .scheduler(Scheduler.systemScheduler()) .initialCapacity(981504) .maximumSize(981504) .build(this::sampleBiome); - this.cache = ThreadLocal.withInitial(() -> Pair.of(new SeededVector3(0, 0, 0, 0), cache3D).mutable()); + this.cache = ThreadLocal.withInitial(() -> Pair.of(new SeededVector3Key(0, 0, 0, 0), cache3D).mutable()); } - private Optional sampleBiome(SeededVector2 vec) { - this.baseCache.get().setLeft(new SeededVector2(0, 0, 0)); + private Optional sampleBiome(SeededVector2Key vec) { + this.baseCache.get().setLeft(new SeededVector2Key(0, 0, 0)); return this.delegate.getBaseBiome(vec.x * res, vec.z * res, vec.seed); } - private Biome sampleBiome(SeededVector3 vec) { - this.cache.get().setLeft(new SeededVector3(0, 0, 0, 0)); + private Biome sampleBiome(SeededVector3Key vec) { + this.cache.get().setLeft(new SeededVector3Key(0, 0, 0, 0)); return this.delegate.getBiome(vec.x * res, vec.y * res, vec.z * res, vec.seed); } @@ -70,16 +72,16 @@ public class CachingBiomeProvider implements BiomeProvider, Handle { @Override public Biome getBiome(int x, int y, int z, long seed) { - Mutable> cachePair = cache.get(); - SeededVector3 mutableKey = cachePair.getLeft(); + Mutable> cachePair = cache.get(); + SeededVector3Key mutableKey = cachePair.getLeft(); mutableKey.set(x, y, z, seed); return cachePair.getRight().get(mutableKey); } @Override public Optional getBaseBiome(int x, int z, long seed) { - Mutable>> cachePair = baseCache.get(); - SeededVector2 mutableKey = cachePair.getLeft(); + Mutable>> cachePair = baseCache.get(); + SeededVector2Key mutableKey = cachePair.getLeft(); mutableKey.set(x, z, seed); return cachePair.getRight().get(mutableKey); } @@ -93,75 +95,4 @@ public class CachingBiomeProvider implements BiomeProvider, Handle { public int resolution() { return delegate.resolution(); } - - private static class SeededVector3 { - int x; - int y; - int z; - long seed; - - public SeededVector3(int x, int y, int z, long seed) { - this.x = x; - this.y = y; - this.z = z; - this.seed = seed; - } - - public void set(int x, int y, int z, long seed) { - this.x = x; - this.y = y; - this.z = z; - this.seed = seed; - } - - @Override - public boolean equals(Object obj) { - if(obj instanceof SeededVector3 that) { - return this.y == that.y && this.z == that.z && this.x == that.x && this.seed == that.seed; - } - return false; - } - - @Override - public int hashCode() { - int code = x; - code = 31 * code + y; - code = 31 * code + z; - return 31 * code + (Long.hashCode(seed)); - } - } - - - private static class SeededVector2 { - int x; - int z; - long seed; - - public SeededVector2(int x, int z, long seed) { - this.x = x; - this.z = z; - this.seed = seed; - } - - public void set(int x, int z, long seed) { - this.x = x; - this.z = z; - this.seed = seed; - } - - @Override - public boolean equals(Object obj) { - if(obj instanceof SeededVector2 that) { - return this.z == that.z && this.x == that.x && this.seed == that.seed; - } - return false; - } - - @Override - public int hashCode() { - int code = x; - code = 31 * code + z; - return 31 * code + (Long.hashCode(seed)); - } - } } diff --git a/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java b/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java index df55beea9..5fa0e7514 100644 --- a/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java +++ b/platforms/cli/src/main/java/com/dfsek/terra/cli/TerraCLI.java @@ -31,7 +31,7 @@ public final class TerraCLI implements Callable { private long seed = 0; @Option(names = { "--max-height"}, description = "Maximum height of the world.") - private int maxHeight = 384; + private int maxHeight = 320; @Option(names = { "--min-height"}, description = "Minimum height of the world.") private int minHeight = -64; From 7ca61f82b2b6e6a750b995193aaeb2045516f59a Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Sat, 12 Oct 2024 00:22:18 -0600 Subject: [PATCH 082/136] Some API clean up --- .../pipeline/v2/PipelineBiomeProvider.java | 7 ++++--- .../biome/pipeline/v2/api/Pipeline.java | 4 +++- .../biome/pipeline/v2/api/SeededVector.java | 19 ------------------- .../pipeline/v2/pipeline/BiomeChunkImpl.java | 16 ++++++++-------- .../pipeline/v2/pipeline/PipelineImpl.java | 5 +++-- 5 files changed, 18 insertions(+), 33 deletions(-) delete mode 100644 common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/api/SeededVector.java diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/PipelineBiomeProvider.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/PipelineBiomeProvider.java index 8c36a7ccf..6858a3731 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/PipelineBiomeProvider.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/PipelineBiomeProvider.java @@ -1,5 +1,7 @@ package com.dfsek.terra.addons.biome.pipeline.v2; +import com.dfsek.terra.api.util.cache.SeededVector2Key; + import com.github.benmanes.caffeine.cache.Caffeine; import com.github.benmanes.caffeine.cache.LoadingCache; @@ -11,7 +13,6 @@ import java.util.stream.StreamSupport; import com.dfsek.terra.addons.biome.pipeline.v2.api.BiomeChunk; import com.dfsek.terra.addons.biome.pipeline.v2.api.Pipeline; -import com.dfsek.terra.addons.biome.pipeline.v2.api.SeededVector; import com.dfsek.terra.addons.biome.pipeline.v2.api.Stage; import com.dfsek.terra.addons.biome.pipeline.v2.api.biome.PipelineBiome; import com.dfsek.terra.api.noise.NoiseSampler; @@ -23,7 +24,7 @@ import com.dfsek.terra.api.world.biome.generation.BiomeProvider; public class PipelineBiomeProvider implements BiomeProvider { - private final LoadingCache biomeChunkCache; + private final LoadingCache biomeChunkCache; private final int chunkSize; private final int resolution; private final NoiseSampler mutator; @@ -90,7 +91,7 @@ public class PipelineBiomeProvider implements BiomeProvider { int xInChunk = x - chunkWorldX; int zInChunk = z - chunkWorldZ; - return biomeChunkCache.get(new SeededVector(seed, chunkWorldX, chunkWorldZ)).get(xInChunk, zInChunk).getBiome(); + return biomeChunkCache.get(new SeededVector2Key(chunkWorldX, chunkWorldZ, seed)).get(xInChunk, zInChunk).getBiome(); } @Override diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/api/Pipeline.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/api/Pipeline.java index 37c8f1db0..9c48aff9f 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/api/Pipeline.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/api/Pipeline.java @@ -1,10 +1,12 @@ package com.dfsek.terra.addons.biome.pipeline.v2.api; +import com.dfsek.terra.api.util.cache.SeededVector2Key; + import java.util.List; public interface Pipeline { - BiomeChunk generateChunk(SeededVector worldCoordinates); + BiomeChunk generateChunk(SeededVector2Key worldCoordinates); int getChunkSize(); diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/api/SeededVector.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/api/SeededVector.java deleted file mode 100644 index bee1f2424..000000000 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/api/SeededVector.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.dfsek.terra.addons.biome.pipeline.v2.api; - -public record SeededVector(long seed, int x, int z) { - - @Override - public boolean equals(Object obj) { - if(obj instanceof SeededVector that) { - return this.z == that.z && this.x == that.x && this.seed == that.seed; - } - return false; - } - - @Override - public int hashCode() { - int code = x; - code = 31 * code + z; - return 31 * code + ((int) (seed ^ (seed >>> 32))); - } -} diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/pipeline/BiomeChunkImpl.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/pipeline/BiomeChunkImpl.java index 78b0fe806..0e0b4d5f6 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/pipeline/BiomeChunkImpl.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/pipeline/BiomeChunkImpl.java @@ -4,20 +4,20 @@ import java.util.List; import com.dfsek.terra.addons.biome.pipeline.v2.api.BiomeChunk; import com.dfsek.terra.addons.biome.pipeline.v2.api.Expander; -import com.dfsek.terra.addons.biome.pipeline.v2.api.SeededVector; import com.dfsek.terra.addons.biome.pipeline.v2.api.Stage; import com.dfsek.terra.addons.biome.pipeline.v2.api.biome.PipelineBiome; +import com.dfsek.terra.api.util.cache.SeededVector2Key; public class BiomeChunkImpl implements BiomeChunk { - private final SeededVector worldOrigin; + private final SeededVector2Key worldOrigin; private final int chunkOriginArrayIndex; private final int worldCoordinateScale; private final int size; private PipelineBiome[] biomes; - public BiomeChunkImpl(SeededVector worldOrigin, PipelineImpl pipeline) { + public BiomeChunkImpl(SeededVector2Key worldOrigin, PipelineImpl pipeline) { this.worldOrigin = worldOrigin; this.chunkOriginArrayIndex = pipeline.getChunkOriginArrayIndex(); @@ -44,7 +44,7 @@ public class BiomeChunkImpl implements BiomeChunk { for(int gridZ = 0; gridZ < gridSize; gridZ++) { int xIndex = gridOrigin + gridX * gridInterval; int zIndex = gridOrigin + gridZ * gridInterval; - biomes[(xIndex * size) + zIndex] = pipeline.getSource().get(worldOrigin.seed(), xIndexToWorldCoordinate(xIndex), + biomes[(xIndex * size) + zIndex] = pipeline.getSource().get(worldOrigin.seed, xIndexToWorldCoordinate(xIndex), zIndexToWorldCoordinate(zIndex)); } } @@ -139,14 +139,14 @@ public class BiomeChunkImpl implements BiomeChunk { } private int xIndexToWorldCoordinate(int xIndex) { - return (worldOrigin.x() + xIndex - chunkOriginArrayIndex) * worldCoordinateScale; + return (worldOrigin.x + xIndex - chunkOriginArrayIndex) * worldCoordinateScale; } private int zIndexToWorldCoordinate(int zIndex) { - return (worldOrigin.z() + zIndex - chunkOriginArrayIndex) * worldCoordinateScale; + return (worldOrigin.z + zIndex - chunkOriginArrayIndex) * worldCoordinateScale; } - private SeededVector getOrigin() { + private SeededVector2Key getOrigin() { return worldOrigin; } @@ -216,7 +216,7 @@ public class BiomeChunkImpl implements BiomeChunk { } public long worldSeed() { - return chunk.getOrigin().seed(); + return chunk.getOrigin().seed; } } } diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/pipeline/PipelineImpl.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/pipeline/PipelineImpl.java index 3adef3d8e..71032531a 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/pipeline/PipelineImpl.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/pipeline/PipelineImpl.java @@ -1,5 +1,7 @@ package com.dfsek.terra.addons.biome.pipeline.v2.pipeline; +import com.dfsek.terra.api.util.cache.SeededVector2Key; + import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -8,7 +10,6 @@ import java.util.List; import com.dfsek.terra.addons.biome.pipeline.v2.api.BiomeChunk; import com.dfsek.terra.addons.biome.pipeline.v2.api.Expander; import com.dfsek.terra.addons.biome.pipeline.v2.api.Pipeline; -import com.dfsek.terra.addons.biome.pipeline.v2.api.SeededVector; import com.dfsek.terra.addons.biome.pipeline.v2.api.Source; import com.dfsek.terra.addons.biome.pipeline.v2.api.Stage; @@ -55,7 +56,7 @@ public class PipelineImpl implements Pipeline { } @Override - public BiomeChunk generateChunk(SeededVector worldCoordinates) { + public BiomeChunk generateChunk(SeededVector2Key worldCoordinates) { return new BiomeChunkImpl(worldCoordinates, this); } From 6946755e3113778c6fdd59b7f52d2ed13f3875f3 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Sat, 12 Oct 2024 00:56:37 -0600 Subject: [PATCH 083/136] Minor Cellular opt --- .../addons/noise/samplers/noise/CellularSampler.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java index 8e163f9ad..6b371d263 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java @@ -279,9 +279,7 @@ public class CellularSampler extends NoiseFunction { if(distanceFunction == DistanceFunction.Euclidean && returnType != ReturnType.CellValue) { distance0 = Math.sqrt(distance0); - if(returnType != ReturnType.CellValue) { - distance1 = Math.sqrt(distance1); - } + distance1 = Math.sqrt(distance1); } return switch(returnType) { @@ -370,9 +368,7 @@ public class CellularSampler extends NoiseFunction { if(distanceFunction == DistanceFunction.Euclidean && returnType != ReturnType.CellValue) { distance0 = Math.sqrt(distance0); - if(returnType != ReturnType.CellValue) { - distance1 = Math.sqrt(distance1); - } + distance1 = Math.sqrt(distance1); } return switch(returnType) { From 40ccf80c7f0ea0a04ef3163d13114024ee8713e9 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Sat, 12 Oct 2024 00:58:08 -0600 Subject: [PATCH 084/136] Optimization when Terra Profiler is not running Do not set Profiler SAFE Threadlocal var when profiler is not running but ensure it is set to false after the profiler stops to ensure consistent behavior --- .../src/main/java/com/dfsek/terra/profiler/ProfilerImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/implementation/base/src/main/java/com/dfsek/terra/profiler/ProfilerImpl.java b/common/implementation/base/src/main/java/com/dfsek/terra/profiler/ProfilerImpl.java index 4e419f883..81519cac8 100644 --- a/common/implementation/base/src/main/java/com/dfsek/terra/profiler/ProfilerImpl.java +++ b/common/implementation/base/src/main/java/com/dfsek/terra/profiler/ProfilerImpl.java @@ -57,7 +57,7 @@ public class ProfilerImpl implements Profiler { Stack stack = THREAD_STACK.get(); stack.push(new Frame(stack.isEmpty() ? frame : stack.peek().getId() + "." + frame)); } else SAFE.set(false); - } else SAFE.set(false); + } } @Override @@ -99,6 +99,7 @@ public class ProfilerImpl implements Profiler { public void stop() { logger.info("Stopping Terra profiler"); running = false; + SAFE.set(false); } @Override From 87674aa0baf159be472ed34b7fce422329a399c5 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Sat, 12 Oct 2024 02:02:28 -0600 Subject: [PATCH 085/136] fix cellular sampler --- .../addons/noise/samplers/noise/CellularSampler.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java index 6b371d263..55c3e271c 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java @@ -279,7 +279,10 @@ public class CellularSampler extends NoiseFunction { if(distanceFunction == DistanceFunction.Euclidean && returnType != ReturnType.CellValue) { distance0 = Math.sqrt(distance0); - distance1 = Math.sqrt(distance1); + + if (returnType != ReturnType.Distance) { + distance1 = Math.sqrt(distance1); + } } return switch(returnType) { @@ -368,7 +371,10 @@ public class CellularSampler extends NoiseFunction { if(distanceFunction == DistanceFunction.Euclidean && returnType != ReturnType.CellValue) { distance0 = Math.sqrt(distance0); - distance1 = Math.sqrt(distance1); + + if (returnType != ReturnType.Distance) { + distance1 = Math.sqrt(distance1); + } } return switch(returnType) { From b9c2f4e63bfb0888b3cd626a6170b0febcfcdb42 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Sat, 12 Oct 2024 02:03:43 -0600 Subject: [PATCH 086/136] Update Licence year --- LICENSE | 2 +- common/addons/api-addon-loader/LICENSE | 2 +- .../java/com/dfsek/terra/addon/loader/ApiAddonClassLoader.java | 2 +- .../main/java/com/dfsek/terra/addon/loader/ApiAddonLoader.java | 2 +- common/addons/biome-provider-image-v2/LICENSE | 2 +- .../dfsek/terra/addons/biome/image/v2/ImageBiomeProvider.java | 2 +- .../terra/addons/biome/image/v2/ImageBiomeProviderAddon.java | 2 +- .../addons/biome/image/v2/config/ImageProviderTemplate.java | 2 +- common/addons/biome-provider-image/LICENSE | 2 +- .../com/dfsek/terra/addons/biome/image/ImageBiomeProvider.java | 2 +- .../dfsek/terra/addons/biome/image/ImageBiomeProviderAddon.java | 2 +- .../dfsek/terra/addons/biome/image/ImageProviderTemplate.java | 2 +- common/addons/biome-provider-pipeline-v2/LICENSE | 2 +- .../terra/addons/biome/pipeline/v2/BiomePipelineAddon.java | 2 +- .../addons/biome/pipeline/v2/config/BiomePipelineTemplate.java | 2 +- .../biome/pipeline/v2/config/source/SamplerSourceTemplate.java | 2 +- .../addons/biome/pipeline/v2/config/source/SourceTemplate.java | 2 +- .../addons/biome/pipeline/v2/config/stage/StageTemplate.java | 2 +- .../v2/config/stage/expander/ExpanderStageTemplate.java | 2 +- .../v2/config/stage/mutator/BorderListStageTemplate.java | 2 +- .../pipeline/v2/config/stage/mutator/BorderStageTemplate.java | 2 +- .../v2/config/stage/mutator/ReplaceListStageTemplate.java | 2 +- .../pipeline/v2/config/stage/mutator/ReplaceStageTemplate.java | 2 +- .../pipeline/v2/config/stage/mutator/SmoothStageTemplate.java | 2 +- .../biome/pipeline/v2/stage/mutators/BorderListStage.java | 2 +- .../addons/biome/pipeline/v2/stage/mutators/BorderStage.java | 2 +- .../biome/pipeline/v2/stage/mutators/ReplaceListStage.java | 2 +- .../addons/biome/pipeline/v2/stage/mutators/ReplaceStage.java | 2 +- .../addons/biome/pipeline/v2/stage/mutators/SmoothStage.java | 2 +- common/addons/biome-provider-pipeline/LICENSE | 2 +- .../com/dfsek/terra/addons/biome/pipeline/BiomeHolderImpl.java | 2 +- .../com/dfsek/terra/addons/biome/pipeline/BiomePipeline.java | 2 +- .../dfsek/terra/addons/biome/pipeline/BiomePipelineAddon.java | 2 +- .../terra/addons/biome/pipeline/BiomePipelineProvider.java | 2 +- .../com/dfsek/terra/addons/biome/pipeline/api/BiomeHolder.java | 2 +- .../com/dfsek/terra/addons/biome/pipeline/api/stage/Stage.java | 2 +- .../addons/biome/pipeline/api/stage/type/BiomeExpander.java | 2 +- .../addons/biome/pipeline/api/stage/type/BiomeMutator.java | 2 +- .../addons/biome/pipeline/config/BiomePipelineTemplate.java | 2 +- .../addons/biome/pipeline/config/BiomeProviderTemplate.java | 2 +- .../addons/biome/pipeline/config/SamplerSourceTemplate.java | 2 +- .../terra/addons/biome/pipeline/config/SourceTemplate.java | 2 +- .../terra/addons/biome/pipeline/config/stage/StageTemplate.java | 2 +- .../pipeline/config/stage/expander/ExpanderStageTemplate.java | 2 +- .../config/stage/mutator/BorderListMutatorTemplate.java | 2 +- .../pipeline/config/stage/mutator/BorderMutatorTemplate.java | 2 +- .../config/stage/mutator/ReplaceListMutatorTemplate.java | 2 +- .../pipeline/config/stage/mutator/ReplaceMutatorTemplate.java | 2 +- .../pipeline/config/stage/mutator/SmoothMutatorTemplate.java | 2 +- .../terra/addons/biome/pipeline/expand/FractalExpander.java | 2 +- .../terra/addons/biome/pipeline/mutator/BorderListMutator.java | 2 +- .../terra/addons/biome/pipeline/mutator/BorderMutator.java | 2 +- .../terra/addons/biome/pipeline/mutator/ReplaceListMutator.java | 2 +- .../terra/addons/biome/pipeline/mutator/ReplaceMutator.java | 2 +- .../terra/addons/biome/pipeline/mutator/SmoothMutator.java | 2 +- .../dfsek/terra/addons/biome/pipeline/source/BiomeSource.java | 2 +- .../dfsek/terra/addons/biome/pipeline/source/SamplerSource.java | 2 +- .../dfsek/terra/addons/biome/pipeline/stages/ExpanderStage.java | 2 +- .../dfsek/terra/addons/biome/pipeline/stages/MutatorStage.java | 2 +- common/addons/biome-provider-single/LICENSE | 2 +- .../dfsek/terra/addons/biome/single/SingleBiomeProvider.java | 2 +- .../terra/addons/biome/single/SingleBiomeProviderAddon.java | 2 +- .../terra/addons/biome/single/SingleBiomeProviderTemplate.java | 2 +- common/addons/chunk-generator-noise-3d/LICENSE | 2 +- .../terra/addons/chunkgenerator/NoiseChunkGenerator3DAddon.java | 2 +- .../chunkgenerator/config/palette/BiomePaletteTemplate.java | 2 +- .../addons/chunkgenerator/generation/NoiseChunkGenerator3D.java | 2 +- .../generation/math/interpolation/ChunkInterpolator.java | 2 +- .../generation/math/interpolation/ElevationInterpolator.java | 2 +- .../generation/math/interpolation/Interpolator.java | 2 +- .../generation/math/interpolation/Interpolator3.java | 2 +- .../chunkgenerator/generation/math/samplers/Sampler3D.java | 2 +- .../terra/addons/chunkgenerator/palette/BiomePaletteInfo.java | 2 +- .../terra/addons/chunkgenerator/palette/PaletteHolder.java | 2 +- .../chunkgenerator/palette/slant/MultipleSlantHolder.java | 2 +- common/addons/config-biome/LICENSE | 2 +- .../src/main/java/com/dfsek/terra/addons/biome/BiomeAddon.java | 2 +- .../main/java/com/dfsek/terra/addons/biome/BiomeConfigType.java | 2 +- .../main/java/com/dfsek/terra/addons/biome/BiomeFactory.java | 2 +- .../main/java/com/dfsek/terra/addons/biome/BiomeTemplate.java | 2 +- .../java/com/dfsek/terra/addons/biome/PaletteSettingsImpl.java | 2 +- .../java/com/dfsek/terra/addons/biome/UserDefinedBiome.java | 2 +- .../java/com/dfsek/terra/addons/biome/holder/PaletteHolder.java | 2 +- .../dfsek/terra/addons/biome/holder/PaletteHolderBuilder.java | 2 +- common/addons/config-distributors/LICENSE | 2 +- .../terra/addons/feature/distributor/DistributorAddon.java | 2 +- .../feature/distributor/config/AndDistributorTemplate.java | 2 +- .../feature/distributor/config/NoDistributorTemplate.java | 2 +- .../feature/distributor/config/OrDistributorTemplate.java | 2 +- .../feature/distributor/config/PointSetDistributorTemplate.java | 2 +- .../feature/distributor/config/SamplerDistributorTemplate.java | 2 +- .../feature/distributor/config/XorDistributorTemplate.java | 2 +- .../feature/distributor/config/YesDistributorTemplate.java | 2 +- .../feature/distributor/distributors/PointSetDistributor.java | 2 +- .../feature/distributor/distributors/SamplerDistributor.java | 2 +- .../com/dfsek/terra/addons/feature/distributor/util/Point.java | 2 +- .../terra/addons/feature/distributor/util/PointTemplate.java | 2 +- common/addons/config-feature/LICENSE | 2 +- .../java/com/dfsek/terra/addons/feature/ConfiguredFeature.java | 2 +- .../main/java/com/dfsek/terra/addons/feature/FeatureAddon.java | 2 +- .../java/com/dfsek/terra/addons/feature/FeatureConfigType.java | 2 +- .../java/com/dfsek/terra/addons/feature/FeatureFactory.java | 2 +- .../java/com/dfsek/terra/addons/feature/FeatureTemplate.java | 2 +- common/addons/config-flora/LICENSE | 2 +- .../src/main/java/com/dfsek/terra/addons/flora/FloraAddon.java | 2 +- .../main/java/com/dfsek/terra/addons/flora/FloraConfigType.java | 2 +- .../main/java/com/dfsek/terra/addons/flora/FloraFactory.java | 2 +- .../main/java/com/dfsek/terra/addons/flora/FloraTemplate.java | 2 +- .../com/dfsek/terra/addons/flora/config/BlockLayerTemplate.java | 2 +- .../java/com/dfsek/terra/addons/flora/flora/gen/BlockLayer.java | 2 +- .../java/com/dfsek/terra/addons/flora/flora/gen/TerraFlora.java | 2 +- common/addons/config-locators/LICENSE | 2 +- .../com/dfsek/terra/addons/feature/locator/LocatorAddon.java | 2 +- .../feature/locator/config/AdjacentPatternLocatorTemplate.java | 2 +- .../terra/addons/feature/locator/config/AndLocatorTemplate.java | 2 +- .../feature/locator/config/GaussianRandomLocatorTemplate.java | 2 +- .../terra/addons/feature/locator/config/OrLocatorTemplate.java | 2 +- .../addons/feature/locator/config/PatternLocatorTemplate.java | 2 +- .../addons/feature/locator/config/RandomLocatorTemplate.java | 2 +- .../addons/feature/locator/config/Sampler3DLocatorTemplate.java | 2 +- .../addons/feature/locator/config/SamplerLocatorTemplate.java | 2 +- .../addons/feature/locator/config/SurfaceLocatorTemplate.java | 2 +- .../terra/addons/feature/locator/config/TopLocatorTemplate.java | 2 +- .../terra/addons/feature/locator/config/XorLocatorTemplate.java | 2 +- .../feature/locator/config/pattern/AirMatchPatternTemplate.java | 2 +- .../feature/locator/config/pattern/AndPatternTemplate.java | 2 +- .../locator/config/pattern/BlockSetMatchPatternTemplate.java | 2 +- .../feature/locator/config/pattern/NotPatternTemplate.java | 2 +- .../feature/locator/config/pattern/OrPatternTemplate.java | 2 +- .../locator/config/pattern/SingleBlockMatchPatternTemplate.java | 2 +- .../locator/config/pattern/SolidMatchPatternTemplate.java | 2 +- .../feature/locator/config/pattern/XorPatternTemplate.java | 2 +- .../addons/feature/locator/locators/AdjacentPatternLocator.java | 2 +- .../addons/feature/locator/locators/GaussianRandomLocator.java | 2 +- .../terra/addons/feature/locator/locators/PatternLocator.java | 2 +- .../terra/addons/feature/locator/locators/RandomLocator.java | 2 +- .../terra/addons/feature/locator/locators/Sampler3DLocator.java | 2 +- .../terra/addons/feature/locator/locators/SamplerLocator.java | 2 +- .../terra/addons/feature/locator/locators/SurfaceLocator.java | 2 +- .../dfsek/terra/addons/feature/locator/locators/TopLocator.java | 2 +- .../terra/addons/feature/locator/patterns/MatchPattern.java | 2 +- .../dfsek/terra/addons/feature/locator/patterns/Pattern.java | 2 +- common/addons/config-noise-function/LICENSE | 2 +- .../src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java | 2 +- .../com/dfsek/terra/addons/noise/NoiseConfigPackTemplate.java | 2 +- .../addons/noise/config/DimensionApplicableNoiseSampler.java | 2 +- .../terra/addons/noise/config/templates/DomainWarpTemplate.java | 2 +- .../terra/addons/noise/config/templates/FunctionTemplate.java | 2 +- .../addons/noise/config/templates/ImageSamplerTemplate.java | 2 +- .../terra/addons/noise/config/templates/KernelTemplate.java | 2 +- .../terra/addons/noise/config/templates/SamplerTemplate.java | 2 +- .../noise/config/templates/noise/CellularNoiseTemplate.java | 2 +- .../noise/config/templates/noise/ConstantNoiseTemplate.java | 2 +- .../config/templates/noise/ExpressionFunctionTemplate.java | 2 +- .../addons/noise/config/templates/noise/GaborNoiseTemplate.java | 2 +- .../addons/noise/config/templates/noise/NoiseTemplate.java | 2 +- .../noise/config/templates/noise/SimpleNoiseTemplate.java | 2 +- .../config/templates/noise/fractal/BrownianMotionTemplate.java | 2 +- .../noise/config/templates/noise/fractal/FractalTemplate.java | 2 +- .../noise/config/templates/noise/fractal/PingPongTemplate.java | 2 +- .../config/templates/noise/fractal/RidgedFractalTemplate.java | 2 +- .../config/templates/normalizer/ClampNormalizerTemplate.java | 2 +- .../templates/normalizer/ExpressionNormalizerTemplate.java | 2 +- .../config/templates/normalizer/LinearNormalizerTemplate.java | 2 +- .../config/templates/normalizer/NormalNormalizerTemplate.java | 2 +- .../noise/config/templates/normalizer/NormalizerTemplate.java | 2 +- .../dfsek/terra/addons/noise/normalizer/ClampNormalizer.java | 2 +- .../dfsek/terra/addons/noise/normalizer/LinearNormalizer.java | 2 +- .../dfsek/terra/addons/noise/normalizer/NormalNormalizer.java | 2 +- .../com/dfsek/terra/addons/noise/normalizer/Normalizer.java | 2 +- .../addons/noise/paralithic/defined/UserDefinedFunction.java | 2 +- .../terra/addons/noise/paralithic/noise/NoiseFunction2.java | 2 +- .../terra/addons/noise/paralithic/noise/NoiseFunction3.java | 2 +- .../dfsek/terra/addons/noise/paralithic/noise/SeedContext.java | 2 +- .../dfsek/terra/addons/noise/samplers/DomainWarpedSampler.java | 2 +- .../com/dfsek/terra/addons/noise/samplers/ImageSampler.java | 2 +- .../com/dfsek/terra/addons/noise/samplers/KernelSampler.java | 2 +- .../terra/addons/noise/samplers/noise/CellularSampler.java | 2 +- .../terra/addons/noise/samplers/noise/ConstantSampler.java | 2 +- .../terra/addons/noise/samplers/noise/ExpressionFunction.java | 2 +- .../terra/addons/noise/samplers/noise/GaborNoiseSampler.java | 2 +- .../dfsek/terra/addons/noise/samplers/noise/NoiseFunction.java | 2 +- .../noise/samplers/noise/fractal/BrownianMotionSampler.java | 2 +- .../noise/samplers/noise/fractal/FractalNoiseFunction.java | 2 +- .../addons/noise/samplers/noise/fractal/PingPongSampler.java | 2 +- .../noise/samplers/noise/fractal/RidgedFractalSampler.java | 2 +- .../noise/samplers/noise/random/GaussianNoiseSampler.java | 2 +- .../noise/samplers/noise/random/PositiveWhiteNoiseSampler.java | 2 +- .../addons/noise/samplers/noise/random/WhiteNoiseSampler.java | 2 +- .../noise/samplers/noise/simplex/OpenSimplex2SSampler.java | 2 +- .../noise/samplers/noise/simplex/OpenSimplex2Sampler.java | 2 +- .../addons/noise/samplers/noise/simplex/PerlinSampler.java | 2 +- .../addons/noise/samplers/noise/simplex/SimplexSampler.java | 2 +- .../noise/samplers/noise/simplex/SimplexStyleSampler.java | 2 +- .../addons/noise/samplers/noise/value/ValueCubicSampler.java | 2 +- .../terra/addons/noise/samplers/noise/value/ValueSampler.java | 2 +- .../addons/noise/samplers/noise/value/ValueStyleNoise.java | 2 +- .../terra/addons/numberpredicate/NumberPredicateAddon.java | 2 +- common/addons/config-ore/LICENSE | 2 +- .../src/main/java/com/dfsek/terra/addons/ore/OreAddon.java | 2 +- .../src/main/java/com/dfsek/terra/addons/ore/OreConfigType.java | 2 +- .../src/main/java/com/dfsek/terra/addons/ore/OreFactory.java | 2 +- .../src/main/java/com/dfsek/terra/addons/ore/OreTemplate.java | 2 +- .../java/com/dfsek/terra/addons/ore/ScatteredOreConfigType.java | 2 +- .../java/com/dfsek/terra/addons/ore/ScatteredOreFactory.java | 2 +- .../java/com/dfsek/terra/addons/ore/ScatteredOreTemplate.java | 2 +- .../main/java/com/dfsek/terra/addons/ore/ores/VanillaOre.java | 2 +- common/addons/config-palette/LICENSE | 2 +- .../main/java/com/dfsek/terra/addons/palette/PaletteAddon.java | 2 +- .../java/com/dfsek/terra/addons/palette/PaletteConfigType.java | 2 +- .../java/com/dfsek/terra/addons/palette/PaletteFactory.java | 2 +- .../java/com/dfsek/terra/addons/palette/PaletteTemplate.java | 2 +- .../com/dfsek/terra/addons/palette/palette/PaletteImpl.java | 2 +- .../dfsek/terra/addons/palette/palette/PaletteLayerHolder.java | 2 +- .../dfsek/terra/addons/palette/palette/PaletteLayerLoader.java | 2 +- common/addons/config-structure/LICENSE | 2 +- .../java/com/dfsek/terra/addons/structure/BiomeStructures.java | 2 +- .../dfsek/terra/addons/structure/BiomeStructuresTemplate.java | 2 +- .../java/com/dfsek/terra/addons/structure/StructureAddon.java | 2 +- .../com/dfsek/terra/addons/structure/StructureConfigType.java | 2 +- .../java/com/dfsek/terra/addons/structure/StructureFactory.java | 2 +- .../com/dfsek/terra/addons/structure/StructureTemplate.java | 2 +- .../java/com/dfsek/terra/addons/structure/TerraStructure.java | 2 +- .../com/dfsek/terra/addons/structure/structures/loot/Entry.java | 2 +- .../terra/addons/structure/structures/loot/LootTableImpl.java | 2 +- .../com/dfsek/terra/addons/structure/structures/loot/Pool.java | 2 +- .../structure/structures/loot/functions/AmountFunction.java | 2 +- .../structure/structures/loot/functions/DamageFunction.java | 2 +- .../structure/structures/loot/functions/EnchantFunction.java | 2 +- .../structure/structures/loot/functions/LootFunction.java | 2 +- common/addons/generation-stage-feature/LICENSE | 2 +- .../terra/addons/generation/feature/FeatureGenerationAddon.java | 2 +- .../terra/addons/generation/feature/FeatureGenerationStage.java | 2 +- .../terra/addons/generation/feature/config/BiomeFeatures.java | 2 +- common/addons/generation-stage-structure/LICENSE | 2 +- common/addons/language-yaml/LICENSE | 2 +- .../src/main/java/com/dfsek/terra/addons/yaml/YamlAddon.java | 2 +- common/addons/manifest-addon-loader/LICENSE | 2 +- .../com/dfsek/terra/addons/manifest/api/AddonInitializer.java | 2 +- .../com/dfsek/terra/addons/manifest/impl/ManifestAddon.java | 2 +- .../terra/addons/manifest/impl/ManifestAddonClassLoader.java | 2 +- .../dfsek/terra/addons/manifest/impl/ManifestAddonLoader.java | 2 +- .../dfsek/terra/addons/manifest/impl/config/AddonManifest.java | 2 +- .../dfsek/terra/addons/manifest/impl/config/WebsiteConfig.java | 2 +- .../addons/manifest/impl/config/loaders/VersionLoader.java | 2 +- .../addons/manifest/impl/config/loaders/VersionRangeLoader.java | 2 +- .../terra/addons/manifest/impl/exception/AddonException.java | 2 +- .../terra/addons/manifest/impl/exception/ManifestException.java | 2 +- .../manifest/impl/exception/ManifestNotPresentException.java | 2 +- common/addons/palette-block-shortcut/LICENSE | 2 +- common/addons/pipeline-image/LICENSE | 2 +- common/addons/structure-block-shortcut/LICENSE | 2 +- common/addons/structure-sponge-loader/LICENSE | 2 +- .../com/dfsek/terra/addons/sponge/SpongeSchematicAddon.java | 2 +- .../java/com/dfsek/terra/addons/sponge/SpongeStructure.java | 2 +- common/addons/structure-terrascript-loader/LICENSE | 2 +- .../com/dfsek/terra/addons/terrascript/TerraScriptAddon.java | 2 +- .../java/com/dfsek/terra/addons/terrascript/parser/Parser.java | 2 +- .../com/dfsek/terra/addons/terrascript/parser/ParserUtil.java | 2 +- .../addons/terrascript/parser/exceptions/ParseException.java | 2 +- .../com/dfsek/terra/addons/terrascript/parser/lang/Block.java | 2 +- .../addons/terrascript/parser/lang/ImplementationArguments.java | 2 +- .../com/dfsek/terra/addons/terrascript/parser/lang/Item.java | 2 +- .../com/dfsek/terra/addons/terrascript/parser/lang/Keyword.java | 2 +- .../dfsek/terra/addons/terrascript/parser/lang/Returnable.java | 2 +- .../dfsek/terra/addons/terrascript/parser/lang/Statement.java | 2 +- .../terrascript/parser/lang/constants/BooleanConstant.java | 2 +- .../terrascript/parser/lang/constants/ConstantExpression.java | 2 +- .../terrascript/parser/lang/constants/NumericConstant.java | 2 +- .../terrascript/parser/lang/constants/StringConstant.java | 2 +- .../addons/terrascript/parser/lang/functions/Function.java | 2 +- .../terrascript/parser/lang/functions/FunctionBuilder.java | 2 +- .../terrascript/parser/lang/keywords/flow/BreakKeyword.java | 2 +- .../terrascript/parser/lang/keywords/flow/ContinueKeyword.java | 2 +- .../terrascript/parser/lang/keywords/flow/FailKeyword.java | 2 +- .../terrascript/parser/lang/keywords/flow/ReturnKeyword.java | 2 +- .../terrascript/parser/lang/keywords/looplike/ForKeyword.java | 2 +- .../terrascript/parser/lang/keywords/looplike/IfKeyword.java | 2 +- .../terrascript/parser/lang/keywords/looplike/WhileKeyword.java | 2 +- .../terrascript/parser/lang/operations/BinaryOperation.java | 2 +- .../terrascript/parser/lang/operations/BooleanAndOperation.java | 2 +- .../terrascript/parser/lang/operations/BooleanNotOperation.java | 2 +- .../terrascript/parser/lang/operations/BooleanOrOperation.java | 2 +- .../parser/lang/operations/ConcatenationOperation.java | 2 +- .../terrascript/parser/lang/operations/DivisionOperation.java | 2 +- .../terrascript/parser/lang/operations/ModuloOperation.java | 2 +- .../parser/lang/operations/MultiplicationOperation.java | 2 +- .../terrascript/parser/lang/operations/NegationOperation.java | 2 +- .../parser/lang/operations/NumberAdditionOperation.java | 2 +- .../parser/lang/operations/SubtractionOperation.java | 2 +- .../terrascript/parser/lang/operations/UnaryOperation.java | 2 +- .../parser/lang/operations/statements/EqualsStatement.java | 2 +- .../operations/statements/GreaterOrEqualsThanStatement.java | 2 +- .../parser/lang/operations/statements/GreaterThanStatement.java | 2 +- .../lang/operations/statements/LessThanOrEqualsStatement.java | 2 +- .../parser/lang/operations/statements/LessThanStatement.java | 2 +- .../parser/lang/operations/statements/NotEqualsStatement.java | 2 +- .../terrascript/parser/lang/variables/BooleanVariable.java | 2 +- .../terrascript/parser/lang/variables/NumberVariable.java | 2 +- .../terrascript/parser/lang/variables/StringVariable.java | 2 +- .../addons/terrascript/parser/lang/variables/Variable.java | 2 +- .../parser/lang/variables/assign/VariableAssignmentNode.java | 2 +- .../parser/lang/variables/reference/VariableReferenceNode.java | 2 +- .../dfsek/terra/addons/terrascript/script/StructureScript.java | 2 +- .../addons/terrascript/script/TerraImplementationArguments.java | 2 +- .../script/builders/BinaryNumberFunctionBuilder.java | 2 +- .../terrascript/script/builders/BiomeFunctionBuilder.java | 2 +- .../terrascript/script/builders/BlockFunctionBuilder.java | 2 +- .../terrascript/script/builders/CheckBlockFunctionBuilder.java | 2 +- .../terrascript/script/builders/EntityFunctionBuilder.java | 2 +- .../terrascript/script/builders/GetMarkFunctionBuilder.java | 2 +- .../addons/terrascript/script/builders/LootFunctionBuilder.java | 2 +- .../addons/terrascript/script/builders/PullFunctionBuilder.java | 2 +- .../terrascript/script/builders/RandomFunctionBuilder.java | 2 +- .../terrascript/script/builders/RecursionsFunctionBuilder.java | 2 +- .../terrascript/script/builders/SetMarkFunctionBuilder.java | 2 +- .../terrascript/script/builders/StateFunctionBuilder.java | 2 +- .../terrascript/script/builders/StructureFunctionBuilder.java | 2 +- .../script/builders/UnaryBooleanFunctionBuilder.java | 2 +- .../terrascript/script/builders/UnaryNumberFunctionBuilder.java | 2 +- .../terrascript/script/builders/UnaryStringFunctionBuilder.java | 2 +- .../terrascript/script/builders/ZeroArgFunctionBuilder.java | 2 +- .../addons/terrascript/script/functions/BiomeFunction.java | 2 +- .../addons/terrascript/script/functions/BlockFunction.java | 2 +- .../addons/terrascript/script/functions/CheckBlockFunction.java | 2 +- .../addons/terrascript/script/functions/EntityFunction.java | 2 +- .../addons/terrascript/script/functions/GetMarkFunction.java | 2 +- .../terra/addons/terrascript/script/functions/LootFunction.java | 2 +- .../terra/addons/terrascript/script/functions/PullFunction.java | 2 +- .../addons/terrascript/script/functions/RandomFunction.java | 2 +- .../addons/terrascript/script/functions/RecursionsFunction.java | 2 +- .../addons/terrascript/script/functions/SetMarkFunction.java | 2 +- .../addons/terrascript/script/functions/StateFunction.java | 2 +- .../addons/terrascript/script/functions/StructureFunction.java | 2 +- .../java/com/dfsek/terra/addons/terrascript/tokenizer/Char.java | 2 +- .../com/dfsek/terra/addons/terrascript/tokenizer/Lookahead.java | 2 +- .../com/dfsek/terra/addons/terrascript/tokenizer/Position.java | 2 +- .../com/dfsek/terra/addons/terrascript/tokenizer/Token.java | 2 +- .../com/dfsek/terra/addons/terrascript/tokenizer/Tokenizer.java | 2 +- .../addons/terrascript/tokenizer/exceptions/EOFException.java | 2 +- .../terrascript/tokenizer/exceptions/FormatException.java | 2 +- .../terrascript/tokenizer/exceptions/TokenizerException.java | 2 +- .../src/test/java/structure/LookaheadTest.java | 2 +- .../src/test/java/structure/ParserTest.java | 2 +- .../com/dfsek/terra/addon/terrascript/check/CheckFunction.java | 2 +- .../terra/addon/terrascript/check/CheckFunctionBuilder.java | 2 +- common/api/src/main/java/com/dfsek/terra/api/Handle.java | 2 +- common/api/src/main/java/com/dfsek/terra/api/Platform.java | 2 +- .../api/src/main/java/com/dfsek/terra/api/addon/BaseAddon.java | 2 +- .../com/dfsek/terra/api/addon/bootstrap/BootstrapBaseAddon.java | 2 +- .../api/src/main/java/com/dfsek/terra/api/block/BlockType.java | 2 +- .../main/java/com/dfsek/terra/api/block/entity/BlockEntity.java | 2 +- .../main/java/com/dfsek/terra/api/block/entity/Container.java | 2 +- .../main/java/com/dfsek/terra/api/block/entity/MobSpawner.java | 2 +- .../main/java/com/dfsek/terra/api/block/entity/SerialState.java | 2 +- .../src/main/java/com/dfsek/terra/api/block/entity/Sign.java | 2 +- .../main/java/com/dfsek/terra/api/block/state/BlockState.java | 2 +- .../com/dfsek/terra/api/block/state/properties/Property.java | 2 +- .../terra/api/block/state/properties/base/BooleanProperty.java | 2 +- .../terra/api/block/state/properties/base/EnumProperty.java | 2 +- .../terra/api/block/state/properties/base/IntProperty.java | 2 +- .../com/dfsek/terra/api/block/state/properties/enums/Axis.java | 2 +- .../dfsek/terra/api/block/state/properties/enums/Direction.java | 2 +- .../com/dfsek/terra/api/block/state/properties/enums/Half.java | 2 +- .../dfsek/terra/api/block/state/properties/enums/RailShape.java | 2 +- .../api/block/state/properties/enums/RedstoneConnection.java | 2 +- .../terra/api/block/state/properties/enums/WallHeight.java | 2 +- .../main/java/com/dfsek/terra/api/command/CommandSender.java | 2 +- .../java/com/dfsek/terra/api/config/AbstractableTemplate.java | 2 +- .../src/main/java/com/dfsek/terra/api/config/ConfigFactory.java | 2 +- .../src/main/java/com/dfsek/terra/api/config/ConfigPack.java | 2 +- .../src/main/java/com/dfsek/terra/api/config/ConfigType.java | 2 +- common/api/src/main/java/com/dfsek/terra/api/config/Loader.java | 2 +- .../src/main/java/com/dfsek/terra/api/config/PluginConfig.java | 2 +- .../api/src/main/java/com/dfsek/terra/api/config/meta/Meta.java | 2 +- common/api/src/main/java/com/dfsek/terra/api/entity/Entity.java | 2 +- .../src/main/java/com/dfsek/terra/api/entity/EntityType.java | 2 +- common/api/src/main/java/com/dfsek/terra/api/entity/Player.java | 2 +- .../src/main/java/com/dfsek/terra/api/event/EventHandler.java | 2 +- .../src/main/java/com/dfsek/terra/api/event/EventManager.java | 2 +- .../com/dfsek/terra/api/event/events/AbstractCancellable.java | 2 +- .../main/java/com/dfsek/terra/api/event/events/Cancellable.java | 2 +- .../src/main/java/com/dfsek/terra/api/event/events/Event.java | 2 +- .../java/com/dfsek/terra/api/event/events/FailThroughEvent.java | 2 +- .../main/java/com/dfsek/terra/api/event/events/PackEvent.java | 2 +- .../terra/api/event/events/config/ConfigurationLoadEvent.java | 2 +- .../terra/api/event/events/config/pack/ConfigPackLoadEvent.java | 2 +- .../api/event/events/config/pack/ConfigPackPostLoadEvent.java | 2 +- .../api/event/events/config/pack/ConfigPackPreLoadEvent.java | 2 +- .../terra/api/event/events/config/type/ConfigTypeLoadEvent.java | 2 +- .../api/event/events/config/type/ConfigTypePostLoadEvent.java | 2 +- .../api/event/events/config/type/ConfigTypePreLoadEvent.java | 2 +- .../api/event/events/platform/PlatformInitializationEvent.java | 2 +- .../api/event/events/world/generation/EntitySpawnEvent.java | 2 +- .../api/event/events/world/generation/LootPopulateEvent.java | 2 +- .../java/com/dfsek/terra/api/event/functional/EventContext.java | 2 +- .../terra/api/event/functional/FunctionalEventHandler.java | 2 +- .../src/main/java/com/dfsek/terra/api/handle/ItemHandle.java | 2 +- .../src/main/java/com/dfsek/terra/api/handle/WorldHandle.java | 2 +- .../api/src/main/java/com/dfsek/terra/api/inject/Injector.java | 2 +- .../java/com/dfsek/terra/api/inject/annotations/Inject.java | 2 +- .../dfsek/terra/api/inject/exception/InjectionException.java | 2 +- .../main/java/com/dfsek/terra/api/inject/impl/InjectorImpl.java | 2 +- .../com/dfsek/terra/api/inventory/BlockInventoryHolder.java | 2 +- .../src/main/java/com/dfsek/terra/api/inventory/Inventory.java | 2 +- .../java/com/dfsek/terra/api/inventory/InventoryHolder.java | 2 +- .../api/src/main/java/com/dfsek/terra/api/inventory/Item.java | 2 +- .../src/main/java/com/dfsek/terra/api/inventory/ItemStack.java | 2 +- .../java/com/dfsek/terra/api/inventory/item/Damageable.java | 2 +- .../java/com/dfsek/terra/api/inventory/item/Enchantment.java | 2 +- .../main/java/com/dfsek/terra/api/inventory/item/ItemMeta.java | 2 +- .../src/main/java/com/dfsek/terra/api/noise/NoiseSampler.java | 2 +- .../src/main/java/com/dfsek/terra/api/profiler/Profiler.java | 2 +- .../api/src/main/java/com/dfsek/terra/api/profiler/Timings.java | 2 +- .../src/main/java/com/dfsek/terra/api/properties/Context.java | 2 +- .../main/java/com/dfsek/terra/api/properties/Properties.java | 2 +- .../java/com/dfsek/terra/api/properties/PropertyHolder.java | 2 +- .../java/com/dfsek/terra/api/properties/annotations/Linked.java | 2 +- .../main/java/com/dfsek/terra/api/registry/CheckedRegistry.java | 2 +- .../main/java/com/dfsek/terra/api/registry/OpenRegistry.java | 2 +- .../src/main/java/com/dfsek/terra/api/registry/Registry.java | 2 +- .../terra/api/registry/exception/DuplicateEntryException.java | 2 +- .../com/dfsek/terra/api/registry/key/StringIdentifiable.java | 2 +- .../java/com/dfsek/terra/api/registry/meta/RegistryHolder.java | 2 +- .../src/main/java/com/dfsek/terra/api/structure/LootTable.java | 2 +- .../src/main/java/com/dfsek/terra/api/structure/Structure.java | 2 +- .../main/java/com/dfsek/terra/api/structure/StructureSpawn.java | 2 +- .../terra/api/structure/configured/ConfiguredStructure.java | 2 +- .../com/dfsek/terra/api/structure/feature/BinaryColumn.java | 2 +- .../java/com/dfsek/terra/api/structure/feature/Distributor.java | 2 +- .../java/com/dfsek/terra/api/structure/feature/Feature.java | 2 +- .../java/com/dfsek/terra/api/structure/feature/Locator.java | 2 +- .../com/dfsek/terra/api/tectonic/ConfigLoadingDelegate.java | 2 +- .../main/java/com/dfsek/terra/api/tectonic/LoaderRegistrar.java | 2 +- .../src/main/java/com/dfsek/terra/api/transform/Transform.java | 2 +- .../main/java/com/dfsek/terra/api/transform/Transformer.java | 2 +- .../src/main/java/com/dfsek/terra/api/transform/Validator.java | 2 +- .../terra/api/transform/exception/AttemptsFailedException.java | 2 +- .../dfsek/terra/api/transform/exception/TransformException.java | 2 +- .../src/main/java/com/dfsek/terra/api/util/ConstantRange.java | 2 +- common/api/src/main/java/com/dfsek/terra/api/util/MathUtil.java | 2 +- .../src/main/java/com/dfsek/terra/api/util/PopulationUtil.java | 2 +- common/api/src/main/java/com/dfsek/terra/api/util/Range.java | 2 +- common/api/src/main/java/com/dfsek/terra/api/util/Rotation.java | 2 +- .../src/main/java/com/dfsek/terra/api/util/RotationUtil.java | 2 +- .../api/src/main/java/com/dfsek/terra/api/util/StringUtil.java | 2 +- .../java/com/dfsek/terra/api/util/collection/MaterialSet.java | 2 +- .../dfsek/terra/api/util/collection/ProbabilityCollection.java | 2 +- .../main/java/com/dfsek/terra/api/util/generic/Construct.java | 2 +- .../src/main/java/com/dfsek/terra/api/util/generic/Lazy.java | 2 +- .../java/com/dfsek/terra/api/util/generic/either/Either.java | 2 +- .../main/java/com/dfsek/terra/api/util/generic/pair/Pair.java | 2 +- .../java/com/dfsek/terra/api/util/mutable/MutableBoolean.java | 2 +- .../java/com/dfsek/terra/api/util/mutable/MutableDouble.java | 2 +- .../java/com/dfsek/terra/api/util/mutable/MutableInteger.java | 2 +- .../java/com/dfsek/terra/api/util/mutable/MutableNumber.java | 2 +- .../java/com/dfsek/terra/api/util/mutable/MutablePrimitive.java | 2 +- .../java/com/dfsek/terra/api/util/mutable/package-info.java | 2 +- .../com/dfsek/terra/api/util/reflection/ReflectionUtil.java | 2 +- .../main/java/com/dfsek/terra/api/util/reflection/TypeKey.java | 2 +- .../src/main/java/com/dfsek/terra/api/util/vector/Vector2.java | 2 +- .../src/main/java/com/dfsek/terra/api/util/vector/Vector3.java | 2 +- .../src/main/java/com/dfsek/terra/api/world/ServerWorld.java | 2 +- .../src/main/java/com/dfsek/terra/api/world/biome/Biome.java | 2 +- .../java/com/dfsek/terra/api/world/biome/PaletteSettings.java | 2 +- .../java/com/dfsek/terra/api/world/biome/PlatformBiome.java | 2 +- .../dfsek/terra/api/world/biome/generation/BiomeProvider.java | 2 +- .../src/main/java/com/dfsek/terra/api/world/chunk/Chunk.java | 2 +- .../main/java/com/dfsek/terra/api/world/chunk/ChunkAccess.java | 2 +- .../dfsek/terra/api/world/chunk/generation/ChunkGenerator.java | 2 +- .../com/dfsek/terra/api/world/chunk/generation/ProtoChunk.java | 2 +- .../terra/api/world/chunk/generation/stage/Chunkified.java | 2 +- .../terra/api/world/chunk/generation/stage/GenerationStage.java | 2 +- .../com/dfsek/terra/api/world/chunk/generation/util/Column.java | 2 +- .../terra/api/world/chunk/generation/util/GeneratorWrapper.java | 2 +- .../dfsek/terra/api/world/chunk/generation/util/Palette.java | 2 +- .../chunk/generation/util/provider/ChunkGeneratorProvider.java | 2 +- .../chunk/generation/util/provider/GenerationStageProvider.java | 2 +- 478 files changed, 478 insertions(+), 478 deletions(-) diff --git a/LICENSE b/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/api-addon-loader/LICENSE b/common/addons/api-addon-loader/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/api-addon-loader/LICENSE +++ b/common/addons/api-addon-loader/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/api-addon-loader/src/main/java/com/dfsek/terra/addon/loader/ApiAddonClassLoader.java b/common/addons/api-addon-loader/src/main/java/com/dfsek/terra/addon/loader/ApiAddonClassLoader.java index 31c1eda90..e511bd13f 100644 --- a/common/addons/api-addon-loader/src/main/java/com/dfsek/terra/addon/loader/ApiAddonClassLoader.java +++ b/common/addons/api-addon-loader/src/main/java/com/dfsek/terra/addon/loader/ApiAddonClassLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/api-addon-loader/src/main/java/com/dfsek/terra/addon/loader/ApiAddonLoader.java b/common/addons/api-addon-loader/src/main/java/com/dfsek/terra/addon/loader/ApiAddonLoader.java index 3d2c977f5..0611eb847 100644 --- a/common/addons/api-addon-loader/src/main/java/com/dfsek/terra/addon/loader/ApiAddonLoader.java +++ b/common/addons/api-addon-loader/src/main/java/com/dfsek/terra/addon/loader/ApiAddonLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-image-v2/LICENSE b/common/addons/biome-provider-image-v2/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/biome-provider-image-v2/LICENSE +++ b/common/addons/biome-provider-image-v2/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/biome-provider-image-v2/src/main/java/com/dfsek/terra/addons/biome/image/v2/ImageBiomeProvider.java b/common/addons/biome-provider-image-v2/src/main/java/com/dfsek/terra/addons/biome/image/v2/ImageBiomeProvider.java index 073bea70e..39599b8d4 100644 --- a/common/addons/biome-provider-image-v2/src/main/java/com/dfsek/terra/addons/biome/image/v2/ImageBiomeProvider.java +++ b/common/addons/biome-provider-image-v2/src/main/java/com/dfsek/terra/addons/biome/image/v2/ImageBiomeProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-image-v2/src/main/java/com/dfsek/terra/addons/biome/image/v2/ImageBiomeProviderAddon.java b/common/addons/biome-provider-image-v2/src/main/java/com/dfsek/terra/addons/biome/image/v2/ImageBiomeProviderAddon.java index 8c9763336..c30b0adb3 100644 --- a/common/addons/biome-provider-image-v2/src/main/java/com/dfsek/terra/addons/biome/image/v2/ImageBiomeProviderAddon.java +++ b/common/addons/biome-provider-image-v2/src/main/java/com/dfsek/terra/addons/biome/image/v2/ImageBiomeProviderAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-image-v2/src/main/java/com/dfsek/terra/addons/biome/image/v2/config/ImageProviderTemplate.java b/common/addons/biome-provider-image-v2/src/main/java/com/dfsek/terra/addons/biome/image/v2/config/ImageProviderTemplate.java index 6596a0a8d..67e6765b2 100644 --- a/common/addons/biome-provider-image-v2/src/main/java/com/dfsek/terra/addons/biome/image/v2/config/ImageProviderTemplate.java +++ b/common/addons/biome-provider-image-v2/src/main/java/com/dfsek/terra/addons/biome/image/v2/config/ImageProviderTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-image/LICENSE b/common/addons/biome-provider-image/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/biome-provider-image/LICENSE +++ b/common/addons/biome-provider-image/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/biome-provider-image/src/main/java/com/dfsek/terra/addons/biome/image/ImageBiomeProvider.java b/common/addons/biome-provider-image/src/main/java/com/dfsek/terra/addons/biome/image/ImageBiomeProvider.java index 47132b653..e16db358d 100644 --- a/common/addons/biome-provider-image/src/main/java/com/dfsek/terra/addons/biome/image/ImageBiomeProvider.java +++ b/common/addons/biome-provider-image/src/main/java/com/dfsek/terra/addons/biome/image/ImageBiomeProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-image/src/main/java/com/dfsek/terra/addons/biome/image/ImageBiomeProviderAddon.java b/common/addons/biome-provider-image/src/main/java/com/dfsek/terra/addons/biome/image/ImageBiomeProviderAddon.java index b561910bf..714876366 100644 --- a/common/addons/biome-provider-image/src/main/java/com/dfsek/terra/addons/biome/image/ImageBiomeProviderAddon.java +++ b/common/addons/biome-provider-image/src/main/java/com/dfsek/terra/addons/biome/image/ImageBiomeProviderAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-image/src/main/java/com/dfsek/terra/addons/biome/image/ImageProviderTemplate.java b/common/addons/biome-provider-image/src/main/java/com/dfsek/terra/addons/biome/image/ImageProviderTemplate.java index 01bbffab6..d445e033f 100644 --- a/common/addons/biome-provider-image/src/main/java/com/dfsek/terra/addons/biome/image/ImageProviderTemplate.java +++ b/common/addons/biome-provider-image/src/main/java/com/dfsek/terra/addons/biome/image/ImageProviderTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/LICENSE b/common/addons/biome-provider-pipeline-v2/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/biome-provider-pipeline-v2/LICENSE +++ b/common/addons/biome-provider-pipeline-v2/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/BiomePipelineAddon.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/BiomePipelineAddon.java index 509651d7d..949952a50 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/BiomePipelineAddon.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/BiomePipelineAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/BiomePipelineTemplate.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/BiomePipelineTemplate.java index 75ffb8d65..8ff6d5ac7 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/BiomePipelineTemplate.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/BiomePipelineTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/source/SamplerSourceTemplate.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/source/SamplerSourceTemplate.java index 8b98cad62..5782a6f08 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/source/SamplerSourceTemplate.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/source/SamplerSourceTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/source/SourceTemplate.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/source/SourceTemplate.java index 2c87fc98f..4c5d6cf85 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/source/SourceTemplate.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/source/SourceTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/StageTemplate.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/StageTemplate.java index d3bbe528c..60399bf8d 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/StageTemplate.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/StageTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/expander/ExpanderStageTemplate.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/expander/ExpanderStageTemplate.java index 7c1b58ad4..1f8227896 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/expander/ExpanderStageTemplate.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/expander/ExpanderStageTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/BorderListStageTemplate.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/BorderListStageTemplate.java index 0f5ccc6ed..9e292108a 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/BorderListStageTemplate.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/BorderListStageTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/BorderStageTemplate.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/BorderStageTemplate.java index 6b6bbe4f8..f2cdf370a 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/BorderStageTemplate.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/BorderStageTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/ReplaceListStageTemplate.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/ReplaceListStageTemplate.java index 53d6aff2f..2a2f7f71a 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/ReplaceListStageTemplate.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/ReplaceListStageTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/ReplaceStageTemplate.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/ReplaceStageTemplate.java index 4a62704c9..ff01f95df 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/ReplaceStageTemplate.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/ReplaceStageTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/SmoothStageTemplate.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/SmoothStageTemplate.java index 8f897c0ab..163cb9843 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/SmoothStageTemplate.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/config/stage/mutator/SmoothStageTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/BorderListStage.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/BorderListStage.java index a269fb7f2..fd45c4422 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/BorderListStage.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/BorderListStage.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/BorderStage.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/BorderStage.java index c1b5dbfba..d9caa708b 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/BorderStage.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/BorderStage.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/ReplaceListStage.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/ReplaceListStage.java index 4d86958a2..bc2278f52 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/ReplaceListStage.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/ReplaceListStage.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/ReplaceStage.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/ReplaceStage.java index b15986c82..02952d850 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/ReplaceStage.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/ReplaceStage.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/SmoothStage.java b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/SmoothStage.java index 5b8cac234..b95523f6f 100644 --- a/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/SmoothStage.java +++ b/common/addons/biome-provider-pipeline-v2/src/main/java/com/dfsek/terra/addons/biome/pipeline/v2/stage/mutators/SmoothStage.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/LICENSE b/common/addons/biome-provider-pipeline/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/biome-provider-pipeline/LICENSE +++ b/common/addons/biome-provider-pipeline/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomeHolderImpl.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomeHolderImpl.java index 73dc95675..dd56f1948 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomeHolderImpl.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomeHolderImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomePipeline.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomePipeline.java index e5f5f9ed6..7ecc57d60 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomePipeline.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomePipeline.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomePipelineAddon.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomePipelineAddon.java index 5df9c900c..9cc90642a 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomePipelineAddon.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomePipelineAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomePipelineProvider.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomePipelineProvider.java index ef952736d..4e7abbdbb 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomePipelineProvider.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/BiomePipelineProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/BiomeHolder.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/BiomeHolder.java index 5acb166a1..2f3b01597 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/BiomeHolder.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/BiomeHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/stage/Stage.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/stage/Stage.java index d007c6c8f..e6186b049 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/stage/Stage.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/stage/Stage.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/stage/type/BiomeExpander.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/stage/type/BiomeExpander.java index 4fcb9feeb..04ecf8ed4 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/stage/type/BiomeExpander.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/stage/type/BiomeExpander.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/stage/type/BiomeMutator.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/stage/type/BiomeMutator.java index 6362b582d..ff57de5c6 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/stage/type/BiomeMutator.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/api/stage/type/BiomeMutator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/BiomePipelineTemplate.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/BiomePipelineTemplate.java index 1566de524..14a5dfad2 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/BiomePipelineTemplate.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/BiomePipelineTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/BiomeProviderTemplate.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/BiomeProviderTemplate.java index 93f84e80a..e7b2ee4f4 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/BiomeProviderTemplate.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/BiomeProviderTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/SamplerSourceTemplate.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/SamplerSourceTemplate.java index b79c2e79a..743b7095a 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/SamplerSourceTemplate.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/SamplerSourceTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/SourceTemplate.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/SourceTemplate.java index 6f04cfd47..2a1fb997e 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/SourceTemplate.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/SourceTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/StageTemplate.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/StageTemplate.java index ec326ed0c..26bdb6e42 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/StageTemplate.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/StageTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/expander/ExpanderStageTemplate.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/expander/ExpanderStageTemplate.java index 9c13e1fd2..482dda91b 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/expander/ExpanderStageTemplate.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/expander/ExpanderStageTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/BorderListMutatorTemplate.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/BorderListMutatorTemplate.java index 5cb7287e1..f03338db8 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/BorderListMutatorTemplate.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/BorderListMutatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/BorderMutatorTemplate.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/BorderMutatorTemplate.java index f9b8888df..1afca776d 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/BorderMutatorTemplate.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/BorderMutatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/ReplaceListMutatorTemplate.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/ReplaceListMutatorTemplate.java index 8522f0488..cd14345ca 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/ReplaceListMutatorTemplate.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/ReplaceListMutatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/ReplaceMutatorTemplate.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/ReplaceMutatorTemplate.java index 48e3da95b..320c5e766 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/ReplaceMutatorTemplate.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/ReplaceMutatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/SmoothMutatorTemplate.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/SmoothMutatorTemplate.java index 8959a229a..117cdd983 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/SmoothMutatorTemplate.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/config/stage/mutator/SmoothMutatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/expand/FractalExpander.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/expand/FractalExpander.java index aa06967e2..3f2183573 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/expand/FractalExpander.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/expand/FractalExpander.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/BorderListMutator.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/BorderListMutator.java index 21ed29efe..18d4e4ea8 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/BorderListMutator.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/BorderListMutator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/BorderMutator.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/BorderMutator.java index 43fd9f663..2c2422e13 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/BorderMutator.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/BorderMutator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/ReplaceListMutator.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/ReplaceListMutator.java index 3939b133b..3e35983c5 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/ReplaceListMutator.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/ReplaceListMutator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/ReplaceMutator.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/ReplaceMutator.java index f64871b39..6f8c0e332 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/ReplaceMutator.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/ReplaceMutator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/SmoothMutator.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/SmoothMutator.java index 8d8d01bf2..fd92fdf19 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/SmoothMutator.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/mutator/SmoothMutator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/source/BiomeSource.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/source/BiomeSource.java index 56b67b7f4..e4ee18bae 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/source/BiomeSource.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/source/BiomeSource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/source/SamplerSource.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/source/SamplerSource.java index 7fc981d31..428f81363 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/source/SamplerSource.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/source/SamplerSource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/stages/ExpanderStage.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/stages/ExpanderStage.java index 45602fb6b..91b191cbf 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/stages/ExpanderStage.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/stages/ExpanderStage.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/stages/MutatorStage.java b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/stages/MutatorStage.java index 8efbaaa27..2bb7d4cd5 100644 --- a/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/stages/MutatorStage.java +++ b/common/addons/biome-provider-pipeline/src/main/java/com/dfsek/terra/addons/biome/pipeline/stages/MutatorStage.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-single/LICENSE b/common/addons/biome-provider-single/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/biome-provider-single/LICENSE +++ b/common/addons/biome-provider-single/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/biome-provider-single/src/main/java/com/dfsek/terra/addons/biome/single/SingleBiomeProvider.java b/common/addons/biome-provider-single/src/main/java/com/dfsek/terra/addons/biome/single/SingleBiomeProvider.java index 839508981..4f449890b 100644 --- a/common/addons/biome-provider-single/src/main/java/com/dfsek/terra/addons/biome/single/SingleBiomeProvider.java +++ b/common/addons/biome-provider-single/src/main/java/com/dfsek/terra/addons/biome/single/SingleBiomeProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-single/src/main/java/com/dfsek/terra/addons/biome/single/SingleBiomeProviderAddon.java b/common/addons/biome-provider-single/src/main/java/com/dfsek/terra/addons/biome/single/SingleBiomeProviderAddon.java index ebf355e72..e209d0295 100644 --- a/common/addons/biome-provider-single/src/main/java/com/dfsek/terra/addons/biome/single/SingleBiomeProviderAddon.java +++ b/common/addons/biome-provider-single/src/main/java/com/dfsek/terra/addons/biome/single/SingleBiomeProviderAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/biome-provider-single/src/main/java/com/dfsek/terra/addons/biome/single/SingleBiomeProviderTemplate.java b/common/addons/biome-provider-single/src/main/java/com/dfsek/terra/addons/biome/single/SingleBiomeProviderTemplate.java index 3a4c3f05e..3bcc016a9 100644 --- a/common/addons/biome-provider-single/src/main/java/com/dfsek/terra/addons/biome/single/SingleBiomeProviderTemplate.java +++ b/common/addons/biome-provider-single/src/main/java/com/dfsek/terra/addons/biome/single/SingleBiomeProviderTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/chunk-generator-noise-3d/LICENSE b/common/addons/chunk-generator-noise-3d/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/chunk-generator-noise-3d/LICENSE +++ b/common/addons/chunk-generator-noise-3d/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/NoiseChunkGenerator3DAddon.java b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/NoiseChunkGenerator3DAddon.java index f2f0c9386..cb9b32c20 100644 --- a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/NoiseChunkGenerator3DAddon.java +++ b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/NoiseChunkGenerator3DAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/config/palette/BiomePaletteTemplate.java b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/config/palette/BiomePaletteTemplate.java index a4ff986e4..edfecf3e2 100644 --- a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/config/palette/BiomePaletteTemplate.java +++ b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/config/palette/BiomePaletteTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/NoiseChunkGenerator3D.java b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/NoiseChunkGenerator3D.java index 4f891d12b..89d07b141 100644 --- a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/NoiseChunkGenerator3D.java +++ b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/NoiseChunkGenerator3D.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/ChunkInterpolator.java b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/ChunkInterpolator.java index 2a2640a91..ed29a061a 100644 --- a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/ChunkInterpolator.java +++ b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/ChunkInterpolator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/ElevationInterpolator.java b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/ElevationInterpolator.java index d5f1c03ad..89d166696 100644 --- a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/ElevationInterpolator.java +++ b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/ElevationInterpolator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/Interpolator.java b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/Interpolator.java index 74cc8fd99..fd4784e88 100644 --- a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/Interpolator.java +++ b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/Interpolator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/Interpolator3.java b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/Interpolator3.java index 5ea8ef578..47e586525 100644 --- a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/Interpolator3.java +++ b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/interpolation/Interpolator3.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/samplers/Sampler3D.java b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/samplers/Sampler3D.java index fcae0ce8c..100f014bc 100644 --- a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/samplers/Sampler3D.java +++ b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/generation/math/samplers/Sampler3D.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/palette/BiomePaletteInfo.java b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/palette/BiomePaletteInfo.java index 56555afef..938fbb596 100644 --- a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/palette/BiomePaletteInfo.java +++ b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/palette/BiomePaletteInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/palette/PaletteHolder.java b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/palette/PaletteHolder.java index 5b5673770..0f1d52f9d 100644 --- a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/palette/PaletteHolder.java +++ b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/palette/PaletteHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/palette/slant/MultipleSlantHolder.java b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/palette/slant/MultipleSlantHolder.java index 08f1d16fe..b4710cdd1 100644 --- a/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/palette/slant/MultipleSlantHolder.java +++ b/common/addons/chunk-generator-noise-3d/src/main/java/com/dfsek/terra/addons/chunkgenerator/palette/slant/MultipleSlantHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-biome/LICENSE b/common/addons/config-biome/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/config-biome/LICENSE +++ b/common/addons/config-biome/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeAddon.java b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeAddon.java index 01d80e999..0ebd8cfcf 100644 --- a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeAddon.java +++ b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeConfigType.java b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeConfigType.java index 8ed5d2aea..a21a86c34 100644 --- a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeConfigType.java +++ b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeConfigType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeFactory.java b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeFactory.java index 95029a434..562c0f6b8 100644 --- a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeFactory.java +++ b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeTemplate.java b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeTemplate.java index 9ae2d52f0..ed2948f02 100644 --- a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeTemplate.java +++ b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/BiomeTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/PaletteSettingsImpl.java b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/PaletteSettingsImpl.java index 57b56cd0e..681bc96e6 100644 --- a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/PaletteSettingsImpl.java +++ b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/PaletteSettingsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/UserDefinedBiome.java b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/UserDefinedBiome.java index 8f9ac0d11..b6778eff7 100644 --- a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/UserDefinedBiome.java +++ b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/UserDefinedBiome.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/holder/PaletteHolder.java b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/holder/PaletteHolder.java index 81a5973aa..de4cdd715 100644 --- a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/holder/PaletteHolder.java +++ b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/holder/PaletteHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/holder/PaletteHolderBuilder.java b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/holder/PaletteHolderBuilder.java index a96cbcc48..ffdde46ed 100644 --- a/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/holder/PaletteHolderBuilder.java +++ b/common/addons/config-biome/src/main/java/com/dfsek/terra/addons/biome/holder/PaletteHolderBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-distributors/LICENSE b/common/addons/config-distributors/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/config-distributors/LICENSE +++ b/common/addons/config-distributors/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/DistributorAddon.java b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/DistributorAddon.java index 0006885a7..4e4c3c747 100644 --- a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/DistributorAddon.java +++ b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/DistributorAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/AndDistributorTemplate.java b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/AndDistributorTemplate.java index 28408129f..9a8d1e0cc 100644 --- a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/AndDistributorTemplate.java +++ b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/AndDistributorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/NoDistributorTemplate.java b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/NoDistributorTemplate.java index eecc77b77..5acb0ef2c 100644 --- a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/NoDistributorTemplate.java +++ b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/NoDistributorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/OrDistributorTemplate.java b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/OrDistributorTemplate.java index a48f912ec..cba623924 100644 --- a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/OrDistributorTemplate.java +++ b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/OrDistributorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/PointSetDistributorTemplate.java b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/PointSetDistributorTemplate.java index ef8e2649b..53df1ed8e 100644 --- a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/PointSetDistributorTemplate.java +++ b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/PointSetDistributorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/SamplerDistributorTemplate.java b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/SamplerDistributorTemplate.java index 6640fbe01..524f70633 100644 --- a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/SamplerDistributorTemplate.java +++ b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/SamplerDistributorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/XorDistributorTemplate.java b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/XorDistributorTemplate.java index ffeaa146b..ba3af6853 100644 --- a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/XorDistributorTemplate.java +++ b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/XorDistributorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/YesDistributorTemplate.java b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/YesDistributorTemplate.java index a4bae8e4f..2c0f35ac7 100644 --- a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/YesDistributorTemplate.java +++ b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/config/YesDistributorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/distributors/PointSetDistributor.java b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/distributors/PointSetDistributor.java index 4285af486..89db4f13a 100644 --- a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/distributors/PointSetDistributor.java +++ b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/distributors/PointSetDistributor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/distributors/SamplerDistributor.java b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/distributors/SamplerDistributor.java index d93c85fa4..6768bc91b 100644 --- a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/distributors/SamplerDistributor.java +++ b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/distributors/SamplerDistributor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/util/Point.java b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/util/Point.java index 47248c6e2..3cd0278c9 100644 --- a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/util/Point.java +++ b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/util/Point.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/util/PointTemplate.java b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/util/PointTemplate.java index aabe7c004..c88715f8c 100644 --- a/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/util/PointTemplate.java +++ b/common/addons/config-distributors/src/main/java/com/dfsek/terra/addons/feature/distributor/util/PointTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-feature/LICENSE b/common/addons/config-feature/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/config-feature/LICENSE +++ b/common/addons/config-feature/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/ConfiguredFeature.java b/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/ConfiguredFeature.java index 46066c9fb..0fb2d02e3 100644 --- a/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/ConfiguredFeature.java +++ b/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/ConfiguredFeature.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureAddon.java b/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureAddon.java index c8fee225b..eac7d3e17 100644 --- a/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureAddon.java +++ b/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureConfigType.java b/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureConfigType.java index aeae9f9e0..804574560 100644 --- a/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureConfigType.java +++ b/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureConfigType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureFactory.java b/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureFactory.java index 7d4d2be12..afe75a9f4 100644 --- a/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureFactory.java +++ b/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureTemplate.java b/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureTemplate.java index 5e3eb95cc..2f00b38cb 100644 --- a/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureTemplate.java +++ b/common/addons/config-feature/src/main/java/com/dfsek/terra/addons/feature/FeatureTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-flora/LICENSE b/common/addons/config-flora/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/config-flora/LICENSE +++ b/common/addons/config-flora/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraAddon.java b/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraAddon.java index 132a52594..e021ca1b1 100644 --- a/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraAddon.java +++ b/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraConfigType.java b/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraConfigType.java index 30e0f3ec8..b255d60bc 100644 --- a/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraConfigType.java +++ b/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraConfigType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraFactory.java b/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraFactory.java index 14a50d55a..994c5d3c2 100644 --- a/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraFactory.java +++ b/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraTemplate.java b/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraTemplate.java index 214a17ab4..55d285459 100644 --- a/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraTemplate.java +++ b/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/FloraTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/config/BlockLayerTemplate.java b/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/config/BlockLayerTemplate.java index 6b99c8277..1b3e36155 100644 --- a/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/config/BlockLayerTemplate.java +++ b/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/config/BlockLayerTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/flora/gen/BlockLayer.java b/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/flora/gen/BlockLayer.java index d372ac2fe..089dfc7b7 100644 --- a/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/flora/gen/BlockLayer.java +++ b/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/flora/gen/BlockLayer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/flora/gen/TerraFlora.java b/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/flora/gen/TerraFlora.java index 661b820f2..146543652 100644 --- a/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/flora/gen/TerraFlora.java +++ b/common/addons/config-flora/src/main/java/com/dfsek/terra/addons/flora/flora/gen/TerraFlora.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/LICENSE b/common/addons/config-locators/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/config-locators/LICENSE +++ b/common/addons/config-locators/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/LocatorAddon.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/LocatorAddon.java index 8a0896181..f8f382221 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/LocatorAddon.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/LocatorAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/AdjacentPatternLocatorTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/AdjacentPatternLocatorTemplate.java index 9afff0a28..379649648 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/AdjacentPatternLocatorTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/AdjacentPatternLocatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/AndLocatorTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/AndLocatorTemplate.java index 3de3c59f1..399e563e7 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/AndLocatorTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/AndLocatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/GaussianRandomLocatorTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/GaussianRandomLocatorTemplate.java index 350c818c2..12c56eb9f 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/GaussianRandomLocatorTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/GaussianRandomLocatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/OrLocatorTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/OrLocatorTemplate.java index bbbb10e7f..ba2cc85b8 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/OrLocatorTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/OrLocatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/PatternLocatorTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/PatternLocatorTemplate.java index a7e7c2fa7..74db6c9d9 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/PatternLocatorTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/PatternLocatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/RandomLocatorTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/RandomLocatorTemplate.java index db73e11bd..fd0fb7d92 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/RandomLocatorTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/RandomLocatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/Sampler3DLocatorTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/Sampler3DLocatorTemplate.java index b0dfaab3d..81a0be7f8 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/Sampler3DLocatorTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/Sampler3DLocatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/SamplerLocatorTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/SamplerLocatorTemplate.java index 599d37e66..c404f36e8 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/SamplerLocatorTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/SamplerLocatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/SurfaceLocatorTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/SurfaceLocatorTemplate.java index 861adb0fd..0f1f6e1db 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/SurfaceLocatorTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/SurfaceLocatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/TopLocatorTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/TopLocatorTemplate.java index 0967e47af..881259eb9 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/TopLocatorTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/TopLocatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/XorLocatorTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/XorLocatorTemplate.java index 48dca2bb0..0a618c960 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/XorLocatorTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/XorLocatorTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/AirMatchPatternTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/AirMatchPatternTemplate.java index 41398b9c7..9848f517e 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/AirMatchPatternTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/AirMatchPatternTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/AndPatternTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/AndPatternTemplate.java index 59a786e4a..866d56337 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/AndPatternTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/AndPatternTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/BlockSetMatchPatternTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/BlockSetMatchPatternTemplate.java index 5b9be9beb..9c6af3deb 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/BlockSetMatchPatternTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/BlockSetMatchPatternTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/NotPatternTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/NotPatternTemplate.java index 6aa0d8689..80d92e7fe 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/NotPatternTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/NotPatternTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/OrPatternTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/OrPatternTemplate.java index c97873fb6..d01d711e0 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/OrPatternTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/OrPatternTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/SingleBlockMatchPatternTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/SingleBlockMatchPatternTemplate.java index 72c791971..411f77350 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/SingleBlockMatchPatternTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/SingleBlockMatchPatternTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/SolidMatchPatternTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/SolidMatchPatternTemplate.java index b3710d9f1..ab8b33d6a 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/SolidMatchPatternTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/SolidMatchPatternTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/XorPatternTemplate.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/XorPatternTemplate.java index 5250a2129..8fe84df23 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/XorPatternTemplate.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/config/pattern/XorPatternTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/AdjacentPatternLocator.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/AdjacentPatternLocator.java index 0cbf09c64..b7819a466 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/AdjacentPatternLocator.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/AdjacentPatternLocator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/GaussianRandomLocator.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/GaussianRandomLocator.java index db1279ab9..c7ce12383 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/GaussianRandomLocator.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/GaussianRandomLocator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/PatternLocator.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/PatternLocator.java index 869d3cc0e..1265bed2f 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/PatternLocator.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/PatternLocator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/RandomLocator.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/RandomLocator.java index 1f8dbd19a..04c0d3d87 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/RandomLocator.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/RandomLocator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/Sampler3DLocator.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/Sampler3DLocator.java index a91049299..5fc7d6d9c 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/Sampler3DLocator.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/Sampler3DLocator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/SamplerLocator.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/SamplerLocator.java index 42b04f4d7..362d83988 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/SamplerLocator.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/SamplerLocator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/SurfaceLocator.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/SurfaceLocator.java index 9f7fd625f..313fd636d 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/SurfaceLocator.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/SurfaceLocator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/TopLocator.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/TopLocator.java index 35547d88d..5d0209fe6 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/TopLocator.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/locators/TopLocator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/patterns/MatchPattern.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/patterns/MatchPattern.java index 78a0e0232..1035d5222 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/patterns/MatchPattern.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/patterns/MatchPattern.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/patterns/Pattern.java b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/patterns/Pattern.java index 9d6617d39..8444c17e3 100644 --- a/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/patterns/Pattern.java +++ b/common/addons/config-locators/src/main/java/com/dfsek/terra/addons/feature/locator/patterns/Pattern.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/LICENSE b/common/addons/config-noise-function/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/config-noise-function/LICENSE +++ b/common/addons/config-noise-function/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java index a7ef9a43e..24691d38f 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseConfigPackTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseConfigPackTemplate.java index d6ac6c00c..c93e7823f 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseConfigPackTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseConfigPackTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/DimensionApplicableNoiseSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/DimensionApplicableNoiseSampler.java index bc5d32555..43ded4752 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/DimensionApplicableNoiseSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/DimensionApplicableNoiseSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/DomainWarpTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/DomainWarpTemplate.java index 6780d593e..68fc1b47b 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/DomainWarpTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/DomainWarpTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/FunctionTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/FunctionTemplate.java index 543ac908a..95005043a 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/FunctionTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/FunctionTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/ImageSamplerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/ImageSamplerTemplate.java index c7359426c..a207533b7 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/ImageSamplerTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/ImageSamplerTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/KernelTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/KernelTemplate.java index 3d2478e35..a68e04137 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/KernelTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/KernelTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/SamplerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/SamplerTemplate.java index a39e9c9a2..f76cf53fc 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/SamplerTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/SamplerTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/CellularNoiseTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/CellularNoiseTemplate.java index c1fdd2122..42bd00262 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/CellularNoiseTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/CellularNoiseTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/ConstantNoiseTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/ConstantNoiseTemplate.java index 4755f5f8d..05cc8dc2a 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/ConstantNoiseTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/ConstantNoiseTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/ExpressionFunctionTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/ExpressionFunctionTemplate.java index 3268af5b0..56a84f663 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/ExpressionFunctionTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/ExpressionFunctionTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/GaborNoiseTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/GaborNoiseTemplate.java index ef32def58..e62578608 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/GaborNoiseTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/GaborNoiseTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/NoiseTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/NoiseTemplate.java index b83971c14..7680b46c5 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/NoiseTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/NoiseTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/SimpleNoiseTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/SimpleNoiseTemplate.java index 5a9c497a5..fd81f7147 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/SimpleNoiseTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/SimpleNoiseTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/BrownianMotionTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/BrownianMotionTemplate.java index d4fae6e9c..3b550a41b 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/BrownianMotionTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/BrownianMotionTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/FractalTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/FractalTemplate.java index c363235b3..eac7143af 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/FractalTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/FractalTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/PingPongTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/PingPongTemplate.java index 3092c7cb8..52d74e2cc 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/PingPongTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/PingPongTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/RidgedFractalTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/RidgedFractalTemplate.java index 7d3cd340f..da6f7c847 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/RidgedFractalTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/fractal/RidgedFractalTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/ClampNormalizerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/ClampNormalizerTemplate.java index 6e8cdb2e4..cc0fa3996 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/ClampNormalizerTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/ClampNormalizerTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/ExpressionNormalizerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/ExpressionNormalizerTemplate.java index 4254f4798..264c50f81 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/ExpressionNormalizerTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/ExpressionNormalizerTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearNormalizerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearNormalizerTemplate.java index faa0818bc..d2eccae25 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearNormalizerTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/LinearNormalizerTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/NormalNormalizerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/NormalNormalizerTemplate.java index b33e5b2b7..a9098483a 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/NormalNormalizerTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/NormalNormalizerTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/NormalizerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/NormalizerTemplate.java index 9dbbb5e51..7f67929b6 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/NormalizerTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/NormalizerTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/ClampNormalizer.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/ClampNormalizer.java index 76b85de0a..1e07a67ed 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/ClampNormalizer.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/ClampNormalizer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/LinearNormalizer.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/LinearNormalizer.java index 42678ceb5..213442bce 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/LinearNormalizer.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/LinearNormalizer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/NormalNormalizer.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/NormalNormalizer.java index c20cc8ee7..4273e2e7b 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/NormalNormalizer.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/NormalNormalizer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/Normalizer.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/Normalizer.java index 60206bc1a..539701920 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/Normalizer.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/Normalizer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/defined/UserDefinedFunction.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/defined/UserDefinedFunction.java index f55fe3e12..638af0473 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/defined/UserDefinedFunction.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/defined/UserDefinedFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/noise/NoiseFunction2.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/noise/NoiseFunction2.java index 10844d38c..1e04afebf 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/noise/NoiseFunction2.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/noise/NoiseFunction2.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/noise/NoiseFunction3.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/noise/NoiseFunction3.java index 725439ad3..b62a6636b 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/noise/NoiseFunction3.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/noise/NoiseFunction3.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/noise/SeedContext.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/noise/SeedContext.java index 78d6d3862..5b8b71530 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/noise/SeedContext.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/noise/SeedContext.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/DomainWarpedSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/DomainWarpedSampler.java index beb4d691b..7f67d93b6 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/DomainWarpedSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/DomainWarpedSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/ImageSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/ImageSampler.java index 13c9ceb6d..0ff72747d 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/ImageSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/ImageSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/KernelSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/KernelSampler.java index 96c81bca5..9715398b0 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/KernelSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/KernelSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java index 55c3e271c..2c7908bca 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/CellularSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/ConstantSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/ConstantSampler.java index a8372bfb7..cba951e06 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/ConstantSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/ConstantSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/ExpressionFunction.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/ExpressionFunction.java index 15b7dfbb0..0b70933eb 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/ExpressionFunction.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/ExpressionFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/GaborNoiseSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/GaborNoiseSampler.java index 5d0e763f9..4eea46264 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/GaborNoiseSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/GaborNoiseSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/NoiseFunction.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/NoiseFunction.java index bdc03618f..552396796 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/NoiseFunction.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/NoiseFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java index 524545514..ce44000d3 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/BrownianMotionSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/FractalNoiseFunction.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/FractalNoiseFunction.java index 6428b0b93..2228a4d29 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/FractalNoiseFunction.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/FractalNoiseFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/PingPongSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/PingPongSampler.java index 761a5deaa..06e6c78da 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/PingPongSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/PingPongSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/RidgedFractalSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/RidgedFractalSampler.java index 1b45ed820..92c578cc7 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/RidgedFractalSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/fractal/RidgedFractalSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/random/GaussianNoiseSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/random/GaussianNoiseSampler.java index 6a4be9cbe..df78392b4 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/random/GaussianNoiseSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/random/GaussianNoiseSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/random/PositiveWhiteNoiseSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/random/PositiveWhiteNoiseSampler.java index 86be91206..571947564 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/random/PositiveWhiteNoiseSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/random/PositiveWhiteNoiseSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/random/WhiteNoiseSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/random/WhiteNoiseSampler.java index 482c0cc9c..4aed9ece9 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/random/WhiteNoiseSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/random/WhiteNoiseSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/OpenSimplex2SSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/OpenSimplex2SSampler.java index 86adcee3b..5d7b01f3b 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/OpenSimplex2SSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/OpenSimplex2SSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/OpenSimplex2Sampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/OpenSimplex2Sampler.java index e86ec2234..ca973ca0c 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/OpenSimplex2Sampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/OpenSimplex2Sampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/PerlinSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/PerlinSampler.java index 8ce0c19dc..078a300a8 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/PerlinSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/PerlinSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/SimplexSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/SimplexSampler.java index 1a1f12245..c398f93d6 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/SimplexSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/SimplexSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/SimplexStyleSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/SimplexStyleSampler.java index 9b646830b..2b5188ce4 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/SimplexStyleSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/simplex/SimplexStyleSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/value/ValueCubicSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/value/ValueCubicSampler.java index 811241f52..b11da6c23 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/value/ValueCubicSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/value/ValueCubicSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/value/ValueSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/value/ValueSampler.java index f0ce72403..be415e298 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/value/ValueSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/value/ValueSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/value/ValueStyleNoise.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/value/ValueStyleNoise.java index 58212b6fe..342de1091 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/value/ValueStyleNoise.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/value/ValueStyleNoise.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-number-predicate/src/main/java/com/dfsek/terra/addons/numberpredicate/NumberPredicateAddon.java b/common/addons/config-number-predicate/src/main/java/com/dfsek/terra/addons/numberpredicate/NumberPredicateAddon.java index 541249369..f14c6fc9a 100644 --- a/common/addons/config-number-predicate/src/main/java/com/dfsek/terra/addons/numberpredicate/NumberPredicateAddon.java +++ b/common/addons/config-number-predicate/src/main/java/com/dfsek/terra/addons/numberpredicate/NumberPredicateAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-ore/LICENSE b/common/addons/config-ore/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/config-ore/LICENSE +++ b/common/addons/config-ore/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreAddon.java b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreAddon.java index 9527fa84e..ca400b9f7 100644 --- a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreAddon.java +++ b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreConfigType.java b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreConfigType.java index 5b3feebd0..df12a9406 100644 --- a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreConfigType.java +++ b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreConfigType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreFactory.java b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreFactory.java index 23d0daa8d..906298bb8 100644 --- a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreFactory.java +++ b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreTemplate.java b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreTemplate.java index 24bbd6d3c..a17d08bd7 100644 --- a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreTemplate.java +++ b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/OreTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ScatteredOreConfigType.java b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ScatteredOreConfigType.java index c9749ddde..314e46cd6 100644 --- a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ScatteredOreConfigType.java +++ b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ScatteredOreConfigType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ScatteredOreFactory.java b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ScatteredOreFactory.java index 6d9178854..c578a8e5d 100644 --- a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ScatteredOreFactory.java +++ b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ScatteredOreFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ScatteredOreTemplate.java b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ScatteredOreTemplate.java index 58448b442..9f7b23789 100644 --- a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ScatteredOreTemplate.java +++ b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ScatteredOreTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ores/VanillaOre.java b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ores/VanillaOre.java index f51ac47ef..e5f471cc3 100644 --- a/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ores/VanillaOre.java +++ b/common/addons/config-ore/src/main/java/com/dfsek/terra/addons/ore/ores/VanillaOre.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-palette/LICENSE b/common/addons/config-palette/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/config-palette/LICENSE +++ b/common/addons/config-palette/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteAddon.java b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteAddon.java index a7e7c6b10..af17d260c 100644 --- a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteAddon.java +++ b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteConfigType.java b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteConfigType.java index ff0c92800..72ec325f2 100644 --- a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteConfigType.java +++ b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteConfigType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteFactory.java b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteFactory.java index 74ee564dd..4349ae661 100644 --- a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteFactory.java +++ b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteTemplate.java b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteTemplate.java index de4af6319..eb5f219bc 100644 --- a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteTemplate.java +++ b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteImpl.java b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteImpl.java index e0a314726..96186f3d4 100644 --- a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteImpl.java +++ b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteLayerHolder.java b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteLayerHolder.java index 6ff4bdd8d..51cf079d9 100644 --- a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteLayerHolder.java +++ b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteLayerHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteLayerLoader.java b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteLayerLoader.java index 918b9abb4..afc0eec05 100644 --- a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteLayerLoader.java +++ b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteLayerLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-structure/LICENSE b/common/addons/config-structure/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/config-structure/LICENSE +++ b/common/addons/config-structure/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/BiomeStructures.java b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/BiomeStructures.java index dfebf0f79..102ead8c2 100644 --- a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/BiomeStructures.java +++ b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/BiomeStructures.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/BiomeStructuresTemplate.java b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/BiomeStructuresTemplate.java index 99e80e9bc..2a5749023 100644 --- a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/BiomeStructuresTemplate.java +++ b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/BiomeStructuresTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureAddon.java b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureAddon.java index c56823307..5987c2134 100644 --- a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureAddon.java +++ b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureConfigType.java b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureConfigType.java index cf8f662a6..c8438feec 100644 --- a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureConfigType.java +++ b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureConfigType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureFactory.java b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureFactory.java index eac1bc6ce..58296549b 100644 --- a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureFactory.java +++ b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureTemplate.java b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureTemplate.java index 5856ab5a5..9ffa481a2 100644 --- a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureTemplate.java +++ b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/StructureTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/TerraStructure.java b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/TerraStructure.java index 2fd78f77d..f84cc9350 100644 --- a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/TerraStructure.java +++ b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/TerraStructure.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/Entry.java b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/Entry.java index 106147229..da8a23579 100644 --- a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/Entry.java +++ b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/Entry.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/LootTableImpl.java b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/LootTableImpl.java index cebf93ef2..c3eccff17 100644 --- a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/LootTableImpl.java +++ b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/LootTableImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/Pool.java b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/Pool.java index dd80e03ec..8928279f8 100644 --- a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/Pool.java +++ b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/Pool.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/AmountFunction.java b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/AmountFunction.java index 2605840f6..26697c1c2 100644 --- a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/AmountFunction.java +++ b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/AmountFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/DamageFunction.java b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/DamageFunction.java index c90090199..6cb626bdd 100644 --- a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/DamageFunction.java +++ b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/DamageFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/EnchantFunction.java b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/EnchantFunction.java index e741bd9f5..2fcb41313 100644 --- a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/EnchantFunction.java +++ b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/EnchantFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/LootFunction.java b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/LootFunction.java index a881ca634..1e399a460 100644 --- a/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/LootFunction.java +++ b/common/addons/config-structure/src/main/java/com/dfsek/terra/addons/structure/structures/loot/functions/LootFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/generation-stage-feature/LICENSE b/common/addons/generation-stage-feature/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/generation-stage-feature/LICENSE +++ b/common/addons/generation-stage-feature/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/generation-stage-feature/src/main/java/com/dfsek/terra/addons/generation/feature/FeatureGenerationAddon.java b/common/addons/generation-stage-feature/src/main/java/com/dfsek/terra/addons/generation/feature/FeatureGenerationAddon.java index f1ca7d945..c18b9bc24 100644 --- a/common/addons/generation-stage-feature/src/main/java/com/dfsek/terra/addons/generation/feature/FeatureGenerationAddon.java +++ b/common/addons/generation-stage-feature/src/main/java/com/dfsek/terra/addons/generation/feature/FeatureGenerationAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/generation-stage-feature/src/main/java/com/dfsek/terra/addons/generation/feature/FeatureGenerationStage.java b/common/addons/generation-stage-feature/src/main/java/com/dfsek/terra/addons/generation/feature/FeatureGenerationStage.java index 132889d23..092b8c0e2 100644 --- a/common/addons/generation-stage-feature/src/main/java/com/dfsek/terra/addons/generation/feature/FeatureGenerationStage.java +++ b/common/addons/generation-stage-feature/src/main/java/com/dfsek/terra/addons/generation/feature/FeatureGenerationStage.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/generation-stage-feature/src/main/java/com/dfsek/terra/addons/generation/feature/config/BiomeFeatures.java b/common/addons/generation-stage-feature/src/main/java/com/dfsek/terra/addons/generation/feature/config/BiomeFeatures.java index afd10efce..fa4f28d15 100644 --- a/common/addons/generation-stage-feature/src/main/java/com/dfsek/terra/addons/generation/feature/config/BiomeFeatures.java +++ b/common/addons/generation-stage-feature/src/main/java/com/dfsek/terra/addons/generation/feature/config/BiomeFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/generation-stage-structure/LICENSE b/common/addons/generation-stage-structure/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/generation-stage-structure/LICENSE +++ b/common/addons/generation-stage-structure/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/language-yaml/LICENSE b/common/addons/language-yaml/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/language-yaml/LICENSE +++ b/common/addons/language-yaml/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/language-yaml/src/main/java/com/dfsek/terra/addons/yaml/YamlAddon.java b/common/addons/language-yaml/src/main/java/com/dfsek/terra/addons/yaml/YamlAddon.java index 08cb9751a..1e0298a09 100644 --- a/common/addons/language-yaml/src/main/java/com/dfsek/terra/addons/yaml/YamlAddon.java +++ b/common/addons/language-yaml/src/main/java/com/dfsek/terra/addons/yaml/YamlAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/manifest-addon-loader/LICENSE b/common/addons/manifest-addon-loader/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/manifest-addon-loader/LICENSE +++ b/common/addons/manifest-addon-loader/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/api/AddonInitializer.java b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/api/AddonInitializer.java index 8f195d62c..46b2949e1 100644 --- a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/api/AddonInitializer.java +++ b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/api/AddonInitializer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/ManifestAddon.java b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/ManifestAddon.java index b3c19d872..a98a96fdc 100644 --- a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/ManifestAddon.java +++ b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/ManifestAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/ManifestAddonClassLoader.java b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/ManifestAddonClassLoader.java index 109142a98..864f3dd04 100644 --- a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/ManifestAddonClassLoader.java +++ b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/ManifestAddonClassLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/ManifestAddonLoader.java b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/ManifestAddonLoader.java index 8055c2101..b9696dd8f 100644 --- a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/ManifestAddonLoader.java +++ b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/ManifestAddonLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/AddonManifest.java b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/AddonManifest.java index 97cd8332f..8fa3ff82c 100644 --- a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/AddonManifest.java +++ b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/AddonManifest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/WebsiteConfig.java b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/WebsiteConfig.java index d648223df..15929671f 100644 --- a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/WebsiteConfig.java +++ b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/WebsiteConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/loaders/VersionLoader.java b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/loaders/VersionLoader.java index 263c691d3..8d5f19b4d 100644 --- a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/loaders/VersionLoader.java +++ b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/loaders/VersionLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/loaders/VersionRangeLoader.java b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/loaders/VersionRangeLoader.java index 1f7d4d983..33243d3a0 100644 --- a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/loaders/VersionRangeLoader.java +++ b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/config/loaders/VersionRangeLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/exception/AddonException.java b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/exception/AddonException.java index 9db7b67bf..051ee66ec 100644 --- a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/exception/AddonException.java +++ b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/exception/AddonException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/exception/ManifestException.java b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/exception/ManifestException.java index e8d8ad5c7..063f106f7 100644 --- a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/exception/ManifestException.java +++ b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/exception/ManifestException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/exception/ManifestNotPresentException.java b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/exception/ManifestNotPresentException.java index 77b579d12..9248e3da2 100644 --- a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/exception/ManifestNotPresentException.java +++ b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/impl/exception/ManifestNotPresentException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/palette-block-shortcut/LICENSE b/common/addons/palette-block-shortcut/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/palette-block-shortcut/LICENSE +++ b/common/addons/palette-block-shortcut/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/pipeline-image/LICENSE b/common/addons/pipeline-image/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/pipeline-image/LICENSE +++ b/common/addons/pipeline-image/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/structure-block-shortcut/LICENSE b/common/addons/structure-block-shortcut/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/structure-block-shortcut/LICENSE +++ b/common/addons/structure-block-shortcut/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/structure-sponge-loader/LICENSE b/common/addons/structure-sponge-loader/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/structure-sponge-loader/LICENSE +++ b/common/addons/structure-sponge-loader/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/structure-sponge-loader/src/main/java/com/dfsek/terra/addons/sponge/SpongeSchematicAddon.java b/common/addons/structure-sponge-loader/src/main/java/com/dfsek/terra/addons/sponge/SpongeSchematicAddon.java index 199864cd1..d31c5b71f 100644 --- a/common/addons/structure-sponge-loader/src/main/java/com/dfsek/terra/addons/sponge/SpongeSchematicAddon.java +++ b/common/addons/structure-sponge-loader/src/main/java/com/dfsek/terra/addons/sponge/SpongeSchematicAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-sponge-loader/src/main/java/com/dfsek/terra/addons/sponge/SpongeStructure.java b/common/addons/structure-sponge-loader/src/main/java/com/dfsek/terra/addons/sponge/SpongeStructure.java index 12ce1f42b..c371d9e46 100644 --- a/common/addons/structure-sponge-loader/src/main/java/com/dfsek/terra/addons/sponge/SpongeStructure.java +++ b/common/addons/structure-sponge-loader/src/main/java/com/dfsek/terra/addons/sponge/SpongeStructure.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/LICENSE b/common/addons/structure-terrascript-loader/LICENSE index 22b8e06e5..02ee7bae3 100644 --- a/common/addons/structure-terrascript-loader/LICENSE +++ b/common/addons/structure-terrascript-loader/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Polyhedral Development +Copyright (c) 2020-2024 Polyhedral Development Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/TerraScriptAddon.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/TerraScriptAddon.java index b555b7bac..4b4ed7acd 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/TerraScriptAddon.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/TerraScriptAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/Parser.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/Parser.java index 1a24c5ee2..04d7a0b97 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/Parser.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/Parser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/ParserUtil.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/ParserUtil.java index 4fc805a8f..c669bb8e9 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/ParserUtil.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/ParserUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/exceptions/ParseException.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/exceptions/ParseException.java index 9e62ad278..2d8be44d7 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/exceptions/ParseException.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/exceptions/ParseException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Block.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Block.java index 1b49e8ca4..ea01adad6 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Block.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Block.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/ImplementationArguments.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/ImplementationArguments.java index 18c82e574..f57c5cc2f 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/ImplementationArguments.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/ImplementationArguments.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Item.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Item.java index 297319fe8..90147a948 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Item.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Item.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Keyword.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Keyword.java index e2be6b0aa..d918a115c 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Keyword.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Keyword.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Returnable.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Returnable.java index 8faaba844..4f082392a 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Returnable.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Returnable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Statement.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Statement.java index 8651cff52..a934d70b4 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Statement.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/Statement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/BooleanConstant.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/BooleanConstant.java index 7629beb16..d96f32de7 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/BooleanConstant.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/BooleanConstant.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/ConstantExpression.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/ConstantExpression.java index 668f5ab49..28d2944d6 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/ConstantExpression.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/ConstantExpression.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/NumericConstant.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/NumericConstant.java index e0fe4e352..dee638a48 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/NumericConstant.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/NumericConstant.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/StringConstant.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/StringConstant.java index db45f04b2..09ecd5ff3 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/StringConstant.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/constants/StringConstant.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/functions/Function.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/functions/Function.java index 4a31c0f62..8f1b1848b 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/functions/Function.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/functions/Function.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/functions/FunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/functions/FunctionBuilder.java index a29b11643..147720dd6 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/functions/FunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/functions/FunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/BreakKeyword.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/BreakKeyword.java index 6375b0c92..d325ca081 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/BreakKeyword.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/BreakKeyword.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/ContinueKeyword.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/ContinueKeyword.java index 5b774c4bb..a87a64c77 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/ContinueKeyword.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/ContinueKeyword.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/FailKeyword.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/FailKeyword.java index 94a9f43e6..a8f686f49 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/FailKeyword.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/FailKeyword.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/ReturnKeyword.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/ReturnKeyword.java index 01873d4f2..9e797b420 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/ReturnKeyword.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/flow/ReturnKeyword.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/looplike/ForKeyword.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/looplike/ForKeyword.java index 0cf31eac2..6240242d0 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/looplike/ForKeyword.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/looplike/ForKeyword.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/looplike/IfKeyword.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/looplike/IfKeyword.java index f7952b8f2..abe8fb216 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/looplike/IfKeyword.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/looplike/IfKeyword.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/looplike/WhileKeyword.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/looplike/WhileKeyword.java index 1d86c70a0..9d6e2cb78 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/looplike/WhileKeyword.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/keywords/looplike/WhileKeyword.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BinaryOperation.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BinaryOperation.java index 036473537..6a2c07e53 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BinaryOperation.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BinaryOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BooleanAndOperation.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BooleanAndOperation.java index e936aa172..c1c1b9b93 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BooleanAndOperation.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BooleanAndOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BooleanNotOperation.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BooleanNotOperation.java index fedeac9f6..81d903a55 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BooleanNotOperation.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BooleanNotOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BooleanOrOperation.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BooleanOrOperation.java index 34a55f566..45cc14fe6 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BooleanOrOperation.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/BooleanOrOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/ConcatenationOperation.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/ConcatenationOperation.java index 3b683733d..a406a7c04 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/ConcatenationOperation.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/ConcatenationOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/DivisionOperation.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/DivisionOperation.java index 7dea11393..d6c688f30 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/DivisionOperation.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/DivisionOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/ModuloOperation.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/ModuloOperation.java index 966726e41..0a9ead0ad 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/ModuloOperation.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/ModuloOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/MultiplicationOperation.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/MultiplicationOperation.java index 25dca639f..700a7696f 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/MultiplicationOperation.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/MultiplicationOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/NegationOperation.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/NegationOperation.java index a56feb2ca..59de8ba33 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/NegationOperation.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/NegationOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/NumberAdditionOperation.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/NumberAdditionOperation.java index 5183bd690..3ada1d252 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/NumberAdditionOperation.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/NumberAdditionOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/SubtractionOperation.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/SubtractionOperation.java index 8b8bf5585..41255450e 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/SubtractionOperation.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/SubtractionOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/UnaryOperation.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/UnaryOperation.java index 316b884d6..0aeef140a 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/UnaryOperation.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/UnaryOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/EqualsStatement.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/EqualsStatement.java index b9b892439..727fb2187 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/EqualsStatement.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/EqualsStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/GreaterOrEqualsThanStatement.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/GreaterOrEqualsThanStatement.java index 4a2b67505..30b17a45a 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/GreaterOrEqualsThanStatement.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/GreaterOrEqualsThanStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/GreaterThanStatement.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/GreaterThanStatement.java index 1119b0adf..b295ffbfb 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/GreaterThanStatement.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/GreaterThanStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/LessThanOrEqualsStatement.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/LessThanOrEqualsStatement.java index 0a72a8da4..08d67ff33 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/LessThanOrEqualsStatement.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/LessThanOrEqualsStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/LessThanStatement.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/LessThanStatement.java index c56366819..5cdc79c07 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/LessThanStatement.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/LessThanStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/NotEqualsStatement.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/NotEqualsStatement.java index fab918c89..9143c8f6a 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/NotEqualsStatement.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/operations/statements/NotEqualsStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/BooleanVariable.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/BooleanVariable.java index 9e4c8aa24..69dde1f7c 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/BooleanVariable.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/BooleanVariable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/NumberVariable.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/NumberVariable.java index 8d4cfb62b..1bbc1fc56 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/NumberVariable.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/NumberVariable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/StringVariable.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/StringVariable.java index 564e71ebf..9b33db620 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/StringVariable.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/StringVariable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/Variable.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/Variable.java index a19122f37..211d08b39 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/Variable.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/Variable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/assign/VariableAssignmentNode.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/assign/VariableAssignmentNode.java index 634ff152a..8690140ea 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/assign/VariableAssignmentNode.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/assign/VariableAssignmentNode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/reference/VariableReferenceNode.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/reference/VariableReferenceNode.java index 598828b34..1cb3043cd 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/reference/VariableReferenceNode.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/parser/lang/variables/reference/VariableReferenceNode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/StructureScript.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/StructureScript.java index 45b004a22..8412bd52d 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/StructureScript.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/StructureScript.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/TerraImplementationArguments.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/TerraImplementationArguments.java index 97e69feca..fcc7fc7a9 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/TerraImplementationArguments.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/TerraImplementationArguments.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/BinaryNumberFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/BinaryNumberFunctionBuilder.java index 66fdf3555..0658ba54b 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/BinaryNumberFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/BinaryNumberFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/BiomeFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/BiomeFunctionBuilder.java index 2b53cfef7..9ab3a0420 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/BiomeFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/BiomeFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/BlockFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/BlockFunctionBuilder.java index d0621e206..343a860db 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/BlockFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/BlockFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/CheckBlockFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/CheckBlockFunctionBuilder.java index cfef3f572..a87b67e3a 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/CheckBlockFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/CheckBlockFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/EntityFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/EntityFunctionBuilder.java index c91f89f11..9e793bc67 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/EntityFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/EntityFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/GetMarkFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/GetMarkFunctionBuilder.java index 487548ab5..f01d9c977 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/GetMarkFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/GetMarkFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/LootFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/LootFunctionBuilder.java index c26900dd1..5d4d66c99 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/LootFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/LootFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/PullFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/PullFunctionBuilder.java index e92174323..d098c3d25 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/PullFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/PullFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/RandomFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/RandomFunctionBuilder.java index b83543d9e..6ad67b8f3 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/RandomFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/RandomFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/RecursionsFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/RecursionsFunctionBuilder.java index 37827e830..53e345ac3 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/RecursionsFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/RecursionsFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/SetMarkFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/SetMarkFunctionBuilder.java index 35bf746c7..a32eeb58e 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/SetMarkFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/SetMarkFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/StateFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/StateFunctionBuilder.java index 3ff527e89..eb7aff7da 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/StateFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/StateFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/StructureFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/StructureFunctionBuilder.java index 9985c36b4..65415ff1b 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/StructureFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/StructureFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/UnaryBooleanFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/UnaryBooleanFunctionBuilder.java index 0be9cd209..b41337071 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/UnaryBooleanFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/UnaryBooleanFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/UnaryNumberFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/UnaryNumberFunctionBuilder.java index 888dedf1a..e95d2dd75 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/UnaryNumberFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/UnaryNumberFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/UnaryStringFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/UnaryStringFunctionBuilder.java index fd009b249..d597edc98 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/UnaryStringFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/UnaryStringFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/ZeroArgFunctionBuilder.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/ZeroArgFunctionBuilder.java index 55d39bd23..4c4498381 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/ZeroArgFunctionBuilder.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/builders/ZeroArgFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/BiomeFunction.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/BiomeFunction.java index 21a1d155b..c4ac1c9e4 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/BiomeFunction.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/BiomeFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/BlockFunction.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/BlockFunction.java index 28de64481..b35605fec 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/BlockFunction.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/BlockFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/CheckBlockFunction.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/CheckBlockFunction.java index 8cc0d8864..412cc1312 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/CheckBlockFunction.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/CheckBlockFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/EntityFunction.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/EntityFunction.java index cf703fbe8..f5ff5d981 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/EntityFunction.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/EntityFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/GetMarkFunction.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/GetMarkFunction.java index 613773441..ae6b7ebe3 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/GetMarkFunction.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/GetMarkFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/LootFunction.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/LootFunction.java index 67dd7fad3..eeb4e81f3 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/LootFunction.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/LootFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/PullFunction.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/PullFunction.java index 600cecae0..9e7457cd4 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/PullFunction.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/PullFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/RandomFunction.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/RandomFunction.java index 6b794d776..cd4eaac6a 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/RandomFunction.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/RandomFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/RecursionsFunction.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/RecursionsFunction.java index c19329656..d684bb4d8 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/RecursionsFunction.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/RecursionsFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/SetMarkFunction.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/SetMarkFunction.java index 908164030..4fb42690f 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/SetMarkFunction.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/SetMarkFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/StateFunction.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/StateFunction.java index bed6773a9..cbc2cd6f8 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/StateFunction.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/StateFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/StructureFunction.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/StructureFunction.java index 6eb60e8a3..8cb18a696 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/StructureFunction.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/script/functions/StructureFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Char.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Char.java index 59d949acd..301ddbb72 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Char.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Char.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Lookahead.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Lookahead.java index e7c3754c8..f5d198f36 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Lookahead.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Lookahead.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Position.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Position.java index 9edbadc93..a6dfc484b 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Position.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Position.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Token.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Token.java index b27803fc6..04e2d9310 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Token.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Token.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Tokenizer.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Tokenizer.java index 1c70a840d..09a1bd21c 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Tokenizer.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/Tokenizer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/exceptions/EOFException.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/exceptions/EOFException.java index d0855664d..f4fecd33f 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/exceptions/EOFException.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/exceptions/EOFException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/exceptions/FormatException.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/exceptions/FormatException.java index 8154b2d0d..622e3a58e 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/exceptions/FormatException.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/exceptions/FormatException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/exceptions/TokenizerException.java b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/exceptions/TokenizerException.java index c1ce67d4f..4c273c360 100644 --- a/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/exceptions/TokenizerException.java +++ b/common/addons/structure-terrascript-loader/src/main/java/com/dfsek/terra/addons/terrascript/tokenizer/exceptions/TokenizerException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/test/java/structure/LookaheadTest.java b/common/addons/structure-terrascript-loader/src/test/java/structure/LookaheadTest.java index 037e67f6e..e34513123 100644 --- a/common/addons/structure-terrascript-loader/src/test/java/structure/LookaheadTest.java +++ b/common/addons/structure-terrascript-loader/src/test/java/structure/LookaheadTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/structure-terrascript-loader/src/test/java/structure/ParserTest.java b/common/addons/structure-terrascript-loader/src/test/java/structure/ParserTest.java index f3f1b4995..cbfbfbc9c 100644 --- a/common/addons/structure-terrascript-loader/src/test/java/structure/ParserTest.java +++ b/common/addons/structure-terrascript-loader/src/test/java/structure/ParserTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/terrascript-function-check-noise-3d/src/main/java/com/dfsek/terra/addon/terrascript/check/CheckFunction.java b/common/addons/terrascript-function-check-noise-3d/src/main/java/com/dfsek/terra/addon/terrascript/check/CheckFunction.java index 5cb593a29..7c14bef0a 100644 --- a/common/addons/terrascript-function-check-noise-3d/src/main/java/com/dfsek/terra/addon/terrascript/check/CheckFunction.java +++ b/common/addons/terrascript-function-check-noise-3d/src/main/java/com/dfsek/terra/addon/terrascript/check/CheckFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/addons/terrascript-function-check-noise-3d/src/main/java/com/dfsek/terra/addon/terrascript/check/CheckFunctionBuilder.java b/common/addons/terrascript-function-check-noise-3d/src/main/java/com/dfsek/terra/addon/terrascript/check/CheckFunctionBuilder.java index 84e465b1b..546ef17a4 100644 --- a/common/addons/terrascript-function-check-noise-3d/src/main/java/com/dfsek/terra/addon/terrascript/check/CheckFunctionBuilder.java +++ b/common/addons/terrascript-function-check-noise-3d/src/main/java/com/dfsek/terra/addon/terrascript/check/CheckFunctionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra Core Addons are licensed under the terms of the MIT License. For more details, * reference the LICENSE file in this module's root directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/Handle.java b/common/api/src/main/java/com/dfsek/terra/api/Handle.java index 2bd59fbb1..c091b507d 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/Handle.java +++ b/common/api/src/main/java/com/dfsek/terra/api/Handle.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/Platform.java b/common/api/src/main/java/com/dfsek/terra/api/Platform.java index cabc44bbd..64d92136d 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/Platform.java +++ b/common/api/src/main/java/com/dfsek/terra/api/Platform.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/addon/BaseAddon.java b/common/api/src/main/java/com/dfsek/terra/api/addon/BaseAddon.java index ad695d3c5..f0718c4a0 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/addon/BaseAddon.java +++ b/common/api/src/main/java/com/dfsek/terra/api/addon/BaseAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/addon/bootstrap/BootstrapBaseAddon.java b/common/api/src/main/java/com/dfsek/terra/api/addon/bootstrap/BootstrapBaseAddon.java index 03aa177ae..61e5328a0 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/addon/bootstrap/BootstrapBaseAddon.java +++ b/common/api/src/main/java/com/dfsek/terra/api/addon/bootstrap/BootstrapBaseAddon.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/BlockType.java b/common/api/src/main/java/com/dfsek/terra/api/block/BlockType.java index 62b117e7b..471fc6f43 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/BlockType.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/BlockType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/entity/BlockEntity.java b/common/api/src/main/java/com/dfsek/terra/api/block/entity/BlockEntity.java index 40489ab84..8061c3961 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/entity/BlockEntity.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/entity/BlockEntity.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/entity/Container.java b/common/api/src/main/java/com/dfsek/terra/api/block/entity/Container.java index 5cbcba323..465f52326 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/entity/Container.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/entity/Container.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/entity/MobSpawner.java b/common/api/src/main/java/com/dfsek/terra/api/block/entity/MobSpawner.java index 780c391bd..be33ebf83 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/entity/MobSpawner.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/entity/MobSpawner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/entity/SerialState.java b/common/api/src/main/java/com/dfsek/terra/api/block/entity/SerialState.java index 6bd45df22..0c2bb5caf 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/entity/SerialState.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/entity/SerialState.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/entity/Sign.java b/common/api/src/main/java/com/dfsek/terra/api/block/entity/Sign.java index adc0bc359..dc15acfe3 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/entity/Sign.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/entity/Sign.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/state/BlockState.java b/common/api/src/main/java/com/dfsek/terra/api/block/state/BlockState.java index d62c77d8d..1af5adb6f 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/state/BlockState.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/state/BlockState.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/Property.java b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/Property.java index 1a209010c..4863eee69 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/Property.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/Property.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/base/BooleanProperty.java b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/base/BooleanProperty.java index 9044051a0..4216e8b08 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/base/BooleanProperty.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/base/BooleanProperty.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/base/EnumProperty.java b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/base/EnumProperty.java index ca3797fa6..d0362b8c8 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/base/EnumProperty.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/base/EnumProperty.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/base/IntProperty.java b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/base/IntProperty.java index 59cd63017..054f452ef 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/base/IntProperty.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/base/IntProperty.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/Axis.java b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/Axis.java index cddd00f54..07d5e777f 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/Axis.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/Axis.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/Direction.java b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/Direction.java index ea7bf8b8f..4bb0540d4 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/Direction.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/Direction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/Half.java b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/Half.java index 42b0e7123..94fb4a7e0 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/Half.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/Half.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/RailShape.java b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/RailShape.java index ed3864c69..6ccf4c5ab 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/RailShape.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/RailShape.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/RedstoneConnection.java b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/RedstoneConnection.java index a3f674e17..d506b35f0 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/RedstoneConnection.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/RedstoneConnection.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/WallHeight.java b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/WallHeight.java index 956ea2082..a866a39c7 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/WallHeight.java +++ b/common/api/src/main/java/com/dfsek/terra/api/block/state/properties/enums/WallHeight.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/command/CommandSender.java b/common/api/src/main/java/com/dfsek/terra/api/command/CommandSender.java index b58da77f2..021cb7a26 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/command/CommandSender.java +++ b/common/api/src/main/java/com/dfsek/terra/api/command/CommandSender.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/config/AbstractableTemplate.java b/common/api/src/main/java/com/dfsek/terra/api/config/AbstractableTemplate.java index 5910b1f25..a7481610e 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/config/AbstractableTemplate.java +++ b/common/api/src/main/java/com/dfsek/terra/api/config/AbstractableTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/config/ConfigFactory.java b/common/api/src/main/java/com/dfsek/terra/api/config/ConfigFactory.java index a8c94eca8..2ecd87227 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/config/ConfigFactory.java +++ b/common/api/src/main/java/com/dfsek/terra/api/config/ConfigFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/config/ConfigPack.java b/common/api/src/main/java/com/dfsek/terra/api/config/ConfigPack.java index 8e0214ff0..b3edb2c9c 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/config/ConfigPack.java +++ b/common/api/src/main/java/com/dfsek/terra/api/config/ConfigPack.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/config/ConfigType.java b/common/api/src/main/java/com/dfsek/terra/api/config/ConfigType.java index c577f533b..bf5a66e3a 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/config/ConfigType.java +++ b/common/api/src/main/java/com/dfsek/terra/api/config/ConfigType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/config/Loader.java b/common/api/src/main/java/com/dfsek/terra/api/config/Loader.java index 5b12e43c2..633067796 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/config/Loader.java +++ b/common/api/src/main/java/com/dfsek/terra/api/config/Loader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/config/PluginConfig.java b/common/api/src/main/java/com/dfsek/terra/api/config/PluginConfig.java index 7946d0ec9..c09ad141d 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/config/PluginConfig.java +++ b/common/api/src/main/java/com/dfsek/terra/api/config/PluginConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/config/meta/Meta.java b/common/api/src/main/java/com/dfsek/terra/api/config/meta/Meta.java index 4df20e7d8..c635d68be 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/config/meta/Meta.java +++ b/common/api/src/main/java/com/dfsek/terra/api/config/meta/Meta.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/entity/Entity.java b/common/api/src/main/java/com/dfsek/terra/api/entity/Entity.java index aaa53ce4e..41823f3eb 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/entity/Entity.java +++ b/common/api/src/main/java/com/dfsek/terra/api/entity/Entity.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/entity/EntityType.java b/common/api/src/main/java/com/dfsek/terra/api/entity/EntityType.java index c0bcfbedc..53cd6bbcb 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/entity/EntityType.java +++ b/common/api/src/main/java/com/dfsek/terra/api/entity/EntityType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/entity/Player.java b/common/api/src/main/java/com/dfsek/terra/api/entity/Player.java index f71c38aa6..ea7a86bb8 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/entity/Player.java +++ b/common/api/src/main/java/com/dfsek/terra/api/entity/Player.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/EventHandler.java b/common/api/src/main/java/com/dfsek/terra/api/event/EventHandler.java index 011f27614..fba181c7a 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/EventHandler.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/EventHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/EventManager.java b/common/api/src/main/java/com/dfsek/terra/api/event/EventManager.java index c705e4beb..cc035829f 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/EventManager.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/EventManager.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/AbstractCancellable.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/AbstractCancellable.java index f13858638..f7d9f5715 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/AbstractCancellable.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/AbstractCancellable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/Cancellable.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/Cancellable.java index e3967a598..810420dff 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/Cancellable.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/Cancellable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/Event.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/Event.java index 145957333..8c1c0c60f 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/Event.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/Event.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/FailThroughEvent.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/FailThroughEvent.java index 3cd44267b..e54443ae8 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/FailThroughEvent.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/FailThroughEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/PackEvent.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/PackEvent.java index cc621fb57..b1d0b82e1 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/PackEvent.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/PackEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/config/ConfigurationLoadEvent.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/config/ConfigurationLoadEvent.java index ba832dff9..d2b1994bf 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/config/ConfigurationLoadEvent.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/config/ConfigurationLoadEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/config/pack/ConfigPackLoadEvent.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/config/pack/ConfigPackLoadEvent.java index f18e32109..05eb41910 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/config/pack/ConfigPackLoadEvent.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/config/pack/ConfigPackLoadEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/config/pack/ConfigPackPostLoadEvent.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/config/pack/ConfigPackPostLoadEvent.java index b565d3c7d..72ca85d94 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/config/pack/ConfigPackPostLoadEvent.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/config/pack/ConfigPackPostLoadEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/config/pack/ConfigPackPreLoadEvent.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/config/pack/ConfigPackPreLoadEvent.java index 96816ee4f..578e7dd48 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/config/pack/ConfigPackPreLoadEvent.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/config/pack/ConfigPackPreLoadEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/config/type/ConfigTypeLoadEvent.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/config/type/ConfigTypeLoadEvent.java index 517460a7c..44f14dd83 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/config/type/ConfigTypeLoadEvent.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/config/type/ConfigTypeLoadEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/config/type/ConfigTypePostLoadEvent.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/config/type/ConfigTypePostLoadEvent.java index 358e0ea3a..5b674acc9 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/config/type/ConfigTypePostLoadEvent.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/config/type/ConfigTypePostLoadEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/config/type/ConfigTypePreLoadEvent.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/config/type/ConfigTypePreLoadEvent.java index 0028b0f04..d43672fa3 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/config/type/ConfigTypePreLoadEvent.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/config/type/ConfigTypePreLoadEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/platform/PlatformInitializationEvent.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/platform/PlatformInitializationEvent.java index 39b7c6546..cf6440820 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/platform/PlatformInitializationEvent.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/platform/PlatformInitializationEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/world/generation/EntitySpawnEvent.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/world/generation/EntitySpawnEvent.java index bebbfa21e..660f581ab 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/world/generation/EntitySpawnEvent.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/world/generation/EntitySpawnEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/events/world/generation/LootPopulateEvent.java b/common/api/src/main/java/com/dfsek/terra/api/event/events/world/generation/LootPopulateEvent.java index b03f897af..a037e2da3 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/events/world/generation/LootPopulateEvent.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/events/world/generation/LootPopulateEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/functional/EventContext.java b/common/api/src/main/java/com/dfsek/terra/api/event/functional/EventContext.java index c09396059..bcab94086 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/functional/EventContext.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/functional/EventContext.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/event/functional/FunctionalEventHandler.java b/common/api/src/main/java/com/dfsek/terra/api/event/functional/FunctionalEventHandler.java index a4af619de..d7dcade9d 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/event/functional/FunctionalEventHandler.java +++ b/common/api/src/main/java/com/dfsek/terra/api/event/functional/FunctionalEventHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/handle/ItemHandle.java b/common/api/src/main/java/com/dfsek/terra/api/handle/ItemHandle.java index 83295c5fd..b4a58dc18 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/handle/ItemHandle.java +++ b/common/api/src/main/java/com/dfsek/terra/api/handle/ItemHandle.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/handle/WorldHandle.java b/common/api/src/main/java/com/dfsek/terra/api/handle/WorldHandle.java index be1bb893a..8bc5d8b97 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/handle/WorldHandle.java +++ b/common/api/src/main/java/com/dfsek/terra/api/handle/WorldHandle.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/inject/Injector.java b/common/api/src/main/java/com/dfsek/terra/api/inject/Injector.java index 87eec5263..93a4c6836 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/inject/Injector.java +++ b/common/api/src/main/java/com/dfsek/terra/api/inject/Injector.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/inject/annotations/Inject.java b/common/api/src/main/java/com/dfsek/terra/api/inject/annotations/Inject.java index 78b0e746d..2ff80ea43 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/inject/annotations/Inject.java +++ b/common/api/src/main/java/com/dfsek/terra/api/inject/annotations/Inject.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/inject/exception/InjectionException.java b/common/api/src/main/java/com/dfsek/terra/api/inject/exception/InjectionException.java index a395d5369..d3bf10be8 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/inject/exception/InjectionException.java +++ b/common/api/src/main/java/com/dfsek/terra/api/inject/exception/InjectionException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/inject/impl/InjectorImpl.java b/common/api/src/main/java/com/dfsek/terra/api/inject/impl/InjectorImpl.java index f0e870e07..5edbca4f5 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/inject/impl/InjectorImpl.java +++ b/common/api/src/main/java/com/dfsek/terra/api/inject/impl/InjectorImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/inventory/BlockInventoryHolder.java b/common/api/src/main/java/com/dfsek/terra/api/inventory/BlockInventoryHolder.java index 3e961e42a..ed9927f53 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/inventory/BlockInventoryHolder.java +++ b/common/api/src/main/java/com/dfsek/terra/api/inventory/BlockInventoryHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/inventory/Inventory.java b/common/api/src/main/java/com/dfsek/terra/api/inventory/Inventory.java index 0b6c3ab1c..eb3f31896 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/inventory/Inventory.java +++ b/common/api/src/main/java/com/dfsek/terra/api/inventory/Inventory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/inventory/InventoryHolder.java b/common/api/src/main/java/com/dfsek/terra/api/inventory/InventoryHolder.java index 304e448c9..b7dfae4b9 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/inventory/InventoryHolder.java +++ b/common/api/src/main/java/com/dfsek/terra/api/inventory/InventoryHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/inventory/Item.java b/common/api/src/main/java/com/dfsek/terra/api/inventory/Item.java index bc9a92b6c..fc9f107a0 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/inventory/Item.java +++ b/common/api/src/main/java/com/dfsek/terra/api/inventory/Item.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/inventory/ItemStack.java b/common/api/src/main/java/com/dfsek/terra/api/inventory/ItemStack.java index 070efaf73..d3ca47e29 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/inventory/ItemStack.java +++ b/common/api/src/main/java/com/dfsek/terra/api/inventory/ItemStack.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/inventory/item/Damageable.java b/common/api/src/main/java/com/dfsek/terra/api/inventory/item/Damageable.java index 121c3652c..7ca006518 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/inventory/item/Damageable.java +++ b/common/api/src/main/java/com/dfsek/terra/api/inventory/item/Damageable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/inventory/item/Enchantment.java b/common/api/src/main/java/com/dfsek/terra/api/inventory/item/Enchantment.java index a8c7e07b3..582d567e8 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/inventory/item/Enchantment.java +++ b/common/api/src/main/java/com/dfsek/terra/api/inventory/item/Enchantment.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/inventory/item/ItemMeta.java b/common/api/src/main/java/com/dfsek/terra/api/inventory/item/ItemMeta.java index b2bc68ca9..626d7eac1 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/inventory/item/ItemMeta.java +++ b/common/api/src/main/java/com/dfsek/terra/api/inventory/item/ItemMeta.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/noise/NoiseSampler.java b/common/api/src/main/java/com/dfsek/terra/api/noise/NoiseSampler.java index 06021126e..38676c846 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/noise/NoiseSampler.java +++ b/common/api/src/main/java/com/dfsek/terra/api/noise/NoiseSampler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/profiler/Profiler.java b/common/api/src/main/java/com/dfsek/terra/api/profiler/Profiler.java index 0e8122891..d5ddc8d57 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/profiler/Profiler.java +++ b/common/api/src/main/java/com/dfsek/terra/api/profiler/Profiler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/profiler/Timings.java b/common/api/src/main/java/com/dfsek/terra/api/profiler/Timings.java index 6beae577d..12b7659f8 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/profiler/Timings.java +++ b/common/api/src/main/java/com/dfsek/terra/api/profiler/Timings.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/properties/Context.java b/common/api/src/main/java/com/dfsek/terra/api/properties/Context.java index 45e5ea07e..9d894d4b8 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/properties/Context.java +++ b/common/api/src/main/java/com/dfsek/terra/api/properties/Context.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/properties/Properties.java b/common/api/src/main/java/com/dfsek/terra/api/properties/Properties.java index 32e95ac9d..445258912 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/properties/Properties.java +++ b/common/api/src/main/java/com/dfsek/terra/api/properties/Properties.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/properties/PropertyHolder.java b/common/api/src/main/java/com/dfsek/terra/api/properties/PropertyHolder.java index 0e8fbdf5d..5d52a345d 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/properties/PropertyHolder.java +++ b/common/api/src/main/java/com/dfsek/terra/api/properties/PropertyHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/properties/annotations/Linked.java b/common/api/src/main/java/com/dfsek/terra/api/properties/annotations/Linked.java index 1845ec5b3..56b07d2a0 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/properties/annotations/Linked.java +++ b/common/api/src/main/java/com/dfsek/terra/api/properties/annotations/Linked.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/registry/CheckedRegistry.java b/common/api/src/main/java/com/dfsek/terra/api/registry/CheckedRegistry.java index 20535a293..e9db724e1 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/registry/CheckedRegistry.java +++ b/common/api/src/main/java/com/dfsek/terra/api/registry/CheckedRegistry.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/registry/OpenRegistry.java b/common/api/src/main/java/com/dfsek/terra/api/registry/OpenRegistry.java index ababb389d..67473a9cc 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/registry/OpenRegistry.java +++ b/common/api/src/main/java/com/dfsek/terra/api/registry/OpenRegistry.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/registry/Registry.java b/common/api/src/main/java/com/dfsek/terra/api/registry/Registry.java index 33995a9f5..96a9012dd 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/registry/Registry.java +++ b/common/api/src/main/java/com/dfsek/terra/api/registry/Registry.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/registry/exception/DuplicateEntryException.java b/common/api/src/main/java/com/dfsek/terra/api/registry/exception/DuplicateEntryException.java index 82afcda98..d3a38b8aa 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/registry/exception/DuplicateEntryException.java +++ b/common/api/src/main/java/com/dfsek/terra/api/registry/exception/DuplicateEntryException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/registry/key/StringIdentifiable.java b/common/api/src/main/java/com/dfsek/terra/api/registry/key/StringIdentifiable.java index 70ccfb6d5..d056ae449 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/registry/key/StringIdentifiable.java +++ b/common/api/src/main/java/com/dfsek/terra/api/registry/key/StringIdentifiable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/registry/meta/RegistryHolder.java b/common/api/src/main/java/com/dfsek/terra/api/registry/meta/RegistryHolder.java index b7a8b1530..f61735e12 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/registry/meta/RegistryHolder.java +++ b/common/api/src/main/java/com/dfsek/terra/api/registry/meta/RegistryHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/structure/LootTable.java b/common/api/src/main/java/com/dfsek/terra/api/structure/LootTable.java index 3108dd1f3..f244775d1 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/structure/LootTable.java +++ b/common/api/src/main/java/com/dfsek/terra/api/structure/LootTable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/structure/Structure.java b/common/api/src/main/java/com/dfsek/terra/api/structure/Structure.java index d5f3ca7e2..5f69c8338 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/structure/Structure.java +++ b/common/api/src/main/java/com/dfsek/terra/api/structure/Structure.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/structure/StructureSpawn.java b/common/api/src/main/java/com/dfsek/terra/api/structure/StructureSpawn.java index 09c4f785d..e85b92bd4 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/structure/StructureSpawn.java +++ b/common/api/src/main/java/com/dfsek/terra/api/structure/StructureSpawn.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/structure/configured/ConfiguredStructure.java b/common/api/src/main/java/com/dfsek/terra/api/structure/configured/ConfiguredStructure.java index 37a03996f..f44ad1f7b 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/structure/configured/ConfiguredStructure.java +++ b/common/api/src/main/java/com/dfsek/terra/api/structure/configured/ConfiguredStructure.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/structure/feature/BinaryColumn.java b/common/api/src/main/java/com/dfsek/terra/api/structure/feature/BinaryColumn.java index 9a4baab54..b4710170f 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/structure/feature/BinaryColumn.java +++ b/common/api/src/main/java/com/dfsek/terra/api/structure/feature/BinaryColumn.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/structure/feature/Distributor.java b/common/api/src/main/java/com/dfsek/terra/api/structure/feature/Distributor.java index 7f2ec0a1b..409adb37a 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/structure/feature/Distributor.java +++ b/common/api/src/main/java/com/dfsek/terra/api/structure/feature/Distributor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/structure/feature/Feature.java b/common/api/src/main/java/com/dfsek/terra/api/structure/feature/Feature.java index 5ce08b3dd..ced3faf04 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/structure/feature/Feature.java +++ b/common/api/src/main/java/com/dfsek/terra/api/structure/feature/Feature.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/structure/feature/Locator.java b/common/api/src/main/java/com/dfsek/terra/api/structure/feature/Locator.java index ac0f4be3d..58dc70f67 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/structure/feature/Locator.java +++ b/common/api/src/main/java/com/dfsek/terra/api/structure/feature/Locator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/tectonic/ConfigLoadingDelegate.java b/common/api/src/main/java/com/dfsek/terra/api/tectonic/ConfigLoadingDelegate.java index ce05d5ae1..b4a0bdaa2 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/tectonic/ConfigLoadingDelegate.java +++ b/common/api/src/main/java/com/dfsek/terra/api/tectonic/ConfigLoadingDelegate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/tectonic/LoaderRegistrar.java b/common/api/src/main/java/com/dfsek/terra/api/tectonic/LoaderRegistrar.java index ec70d4077..b766cc4fc 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/tectonic/LoaderRegistrar.java +++ b/common/api/src/main/java/com/dfsek/terra/api/tectonic/LoaderRegistrar.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/transform/Transform.java b/common/api/src/main/java/com/dfsek/terra/api/transform/Transform.java index fe7741070..87a3d78a9 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/transform/Transform.java +++ b/common/api/src/main/java/com/dfsek/terra/api/transform/Transform.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/transform/Transformer.java b/common/api/src/main/java/com/dfsek/terra/api/transform/Transformer.java index eb1427aee..feaa9dd71 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/transform/Transformer.java +++ b/common/api/src/main/java/com/dfsek/terra/api/transform/Transformer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/transform/Validator.java b/common/api/src/main/java/com/dfsek/terra/api/transform/Validator.java index 430f3df3b..43a203ff4 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/transform/Validator.java +++ b/common/api/src/main/java/com/dfsek/terra/api/transform/Validator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/transform/exception/AttemptsFailedException.java b/common/api/src/main/java/com/dfsek/terra/api/transform/exception/AttemptsFailedException.java index 694df9fb5..d101e1f49 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/transform/exception/AttemptsFailedException.java +++ b/common/api/src/main/java/com/dfsek/terra/api/transform/exception/AttemptsFailedException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/transform/exception/TransformException.java b/common/api/src/main/java/com/dfsek/terra/api/transform/exception/TransformException.java index d0625a226..218b18dc4 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/transform/exception/TransformException.java +++ b/common/api/src/main/java/com/dfsek/terra/api/transform/exception/TransformException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/ConstantRange.java b/common/api/src/main/java/com/dfsek/terra/api/util/ConstantRange.java index 68b062d21..aecf51ed2 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/ConstantRange.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/ConstantRange.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/MathUtil.java b/common/api/src/main/java/com/dfsek/terra/api/util/MathUtil.java index e57765f2e..c5c9d814d 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/MathUtil.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/MathUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/PopulationUtil.java b/common/api/src/main/java/com/dfsek/terra/api/util/PopulationUtil.java index f3ea39f10..5db33c83c 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/PopulationUtil.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/PopulationUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/Range.java b/common/api/src/main/java/com/dfsek/terra/api/util/Range.java index f42bc174d..f5a0670a1 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/Range.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/Range.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/Rotation.java b/common/api/src/main/java/com/dfsek/terra/api/util/Rotation.java index 6f0a17c71..135ca57bd 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/Rotation.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/Rotation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/RotationUtil.java b/common/api/src/main/java/com/dfsek/terra/api/util/RotationUtil.java index 96c968650..64d50a8d9 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/RotationUtil.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/RotationUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/StringUtil.java b/common/api/src/main/java/com/dfsek/terra/api/util/StringUtil.java index d48753fb2..22b934e18 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/StringUtil.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/StringUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/collection/MaterialSet.java b/common/api/src/main/java/com/dfsek/terra/api/util/collection/MaterialSet.java index a0c28b1e1..6dc868142 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/collection/MaterialSet.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/collection/MaterialSet.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/collection/ProbabilityCollection.java b/common/api/src/main/java/com/dfsek/terra/api/util/collection/ProbabilityCollection.java index 4aad8b7e1..dbf367d79 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/collection/ProbabilityCollection.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/collection/ProbabilityCollection.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/generic/Construct.java b/common/api/src/main/java/com/dfsek/terra/api/util/generic/Construct.java index 88ee6a751..3b5d17753 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/generic/Construct.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/generic/Construct.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/generic/Lazy.java b/common/api/src/main/java/com/dfsek/terra/api/util/generic/Lazy.java index 7a1a11831..da06ea98a 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/generic/Lazy.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/generic/Lazy.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/generic/either/Either.java b/common/api/src/main/java/com/dfsek/terra/api/util/generic/either/Either.java index b60a09ef4..e7409872f 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/generic/either/Either.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/generic/either/Either.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/generic/pair/Pair.java b/common/api/src/main/java/com/dfsek/terra/api/util/generic/pair/Pair.java index 424d8bea0..3ae239117 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/generic/pair/Pair.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/generic/pair/Pair.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableBoolean.java b/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableBoolean.java index 6dfef1ca5..a4385a826 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableBoolean.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableDouble.java b/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableDouble.java index 91c21a9af..3cd751770 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableDouble.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableDouble.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableInteger.java b/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableInteger.java index e66bcff43..126406697 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableInteger.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableInteger.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableNumber.java b/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableNumber.java index 8ba43fac8..ef48a935e 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableNumber.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutableNumber.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutablePrimitive.java b/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutablePrimitive.java index f4c9fd65f..096dba054 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutablePrimitive.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/mutable/MutablePrimitive.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/mutable/package-info.java b/common/api/src/main/java/com/dfsek/terra/api/util/mutable/package-info.java index fb53df1a7..703c736f5 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/mutable/package-info.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/mutable/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/reflection/ReflectionUtil.java b/common/api/src/main/java/com/dfsek/terra/api/util/reflection/ReflectionUtil.java index 2583b9ab6..0dd90b292 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/reflection/ReflectionUtil.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/reflection/ReflectionUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/reflection/TypeKey.java b/common/api/src/main/java/com/dfsek/terra/api/util/reflection/TypeKey.java index b5ae20265..a2cdc27c1 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/reflection/TypeKey.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/reflection/TypeKey.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/vector/Vector2.java b/common/api/src/main/java/com/dfsek/terra/api/util/vector/Vector2.java index 021e98122..c2b3a87fb 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/vector/Vector2.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/vector/Vector2.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/vector/Vector3.java b/common/api/src/main/java/com/dfsek/terra/api/util/vector/Vector3.java index d6d74c68a..8f6007e80 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/vector/Vector3.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/vector/Vector3.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/ServerWorld.java b/common/api/src/main/java/com/dfsek/terra/api/world/ServerWorld.java index be30a3f33..8c54302d4 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/ServerWorld.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/ServerWorld.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/biome/Biome.java b/common/api/src/main/java/com/dfsek/terra/api/world/biome/Biome.java index af52720a4..292c9937a 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/biome/Biome.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/biome/Biome.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/biome/PaletteSettings.java b/common/api/src/main/java/com/dfsek/terra/api/world/biome/PaletteSettings.java index 45a5c1a10..1c33fb223 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/biome/PaletteSettings.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/biome/PaletteSettings.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/biome/PlatformBiome.java b/common/api/src/main/java/com/dfsek/terra/api/world/biome/PlatformBiome.java index d749b4089..e1cec39cd 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/biome/PlatformBiome.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/biome/PlatformBiome.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/BiomeProvider.java b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/BiomeProvider.java index 29c4531f1..83b8723d3 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/BiomeProvider.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/BiomeProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/Chunk.java b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/Chunk.java index b1d532631..cc25f919a 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/Chunk.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/Chunk.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/ChunkAccess.java b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/ChunkAccess.java index a98d0e42e..d7039b63e 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/ChunkAccess.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/ChunkAccess.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/ChunkGenerator.java b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/ChunkGenerator.java index 0bf8d753d..a7a69ed25 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/ChunkGenerator.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/ChunkGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/ProtoChunk.java b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/ProtoChunk.java index 744bfda7f..6bd84b743 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/ProtoChunk.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/ProtoChunk.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/stage/Chunkified.java b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/stage/Chunkified.java index fe8d81f8c..144521d06 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/stage/Chunkified.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/stage/Chunkified.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/stage/GenerationStage.java b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/stage/GenerationStage.java index 0d7401910..3961ef100 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/stage/GenerationStage.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/stage/GenerationStage.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/Column.java b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/Column.java index d41d17237..0268ffc91 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/Column.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/Column.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/GeneratorWrapper.java b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/GeneratorWrapper.java index fc7044a98..2f36eb543 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/GeneratorWrapper.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/GeneratorWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/Palette.java b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/Palette.java index 19f948495..4e54fd072 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/Palette.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/Palette.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/provider/ChunkGeneratorProvider.java b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/provider/ChunkGeneratorProvider.java index 1a169da02..d5d0582ed 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/provider/ChunkGeneratorProvider.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/provider/ChunkGeneratorProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/provider/GenerationStageProvider.java b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/provider/GenerationStageProvider.java index 470db1a22..3f994d331 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/provider/GenerationStageProvider.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/chunk/generation/util/provider/GenerationStageProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Polyhedral Development + * Copyright (c) 2020-2024 Polyhedral Development * * The Terra API is licensed under the terms of the MIT License. For more details, * reference the LICENSE file in the common/api directory. From 16d8e8f29d2cb9b23af81ad5367b30a104d36ce0 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Sat, 12 Oct 2024 14:49:53 -0600 Subject: [PATCH 087/136] Fix up merge --- .../v1_21}/config/BiomeAdditionsSoundTemplate.java | 2 +- .../nms/v1_21}/config/BiomeMoodSoundTemplate.java | 2 +- .../v1_21}/config/BiomeParticleConfigTemplate.java | 6 ++++-- .../nms/v1_21}/config/EntityTypeTemplate.java | 2 +- .../nms/v1_21}/config/MusicSoundTemplate.java | 2 +- .../nms/v1_21}/config/SoundEventTemplate.java | 2 +- .../bukkit/nms/v1_21}/config/SpawnCostConfig.java | 2 +- .../nms/v1_21}/config/SpawnEntryTemplate.java | 2 +- .../nms/v1_21}/config/SpawnSettingsTemplate.java | 14 +++----------- .../bukkit/nms/v1_21}/config/SpawnTypeConfig.java | 12 +----------- .../nms/v1_21}/config/VanillaBiomeProperties.java | 2 +- .../nms/v1_21}/config/VillagerTypeTemplate.java | 2 +- 12 files changed, 17 insertions(+), 33 deletions(-) rename platforms/bukkit/nms/{v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2 => v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21}/config/BiomeAdditionsSoundTemplate.java (94%) rename platforms/bukkit/nms/{v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2 => v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21}/config/BiomeMoodSoundTemplate.java (95%) rename platforms/bukkit/nms/{v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2 => v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21}/config/BiomeParticleConfigTemplate.java (82%) rename platforms/bukkit/nms/{v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2 => v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21}/config/EntityTypeTemplate.java (92%) rename platforms/bukkit/nms/{v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2 => v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21}/config/MusicSoundTemplate.java (95%) rename platforms/bukkit/nms/{v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2 => v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21}/config/SoundEventTemplate.java (94%) rename platforms/bukkit/nms/{v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2 => v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21}/config/SpawnCostConfig.java (94%) rename platforms/bukkit/nms/{v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2 => v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21}/config/SpawnEntryTemplate.java (94%) rename platforms/bukkit/nms/{v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2 => v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21}/config/SpawnSettingsTemplate.java (73%) rename platforms/bukkit/nms/{v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2 => v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21}/config/SpawnTypeConfig.java (78%) rename platforms/bukkit/nms/{v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2 => v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21}/config/VanillaBiomeProperties.java (98%) rename platforms/bukkit/nms/{v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2 => v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21}/config/VillagerTypeTemplate.java (93%) diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeAdditionsSoundTemplate.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeAdditionsSoundTemplate.java similarity index 94% rename from platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeAdditionsSoundTemplate.java rename to platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeAdditionsSoundTemplate.java index 7a7ab41e3..3f91d4a26 100644 --- a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeAdditionsSoundTemplate.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeAdditionsSoundTemplate.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R2.config; +package com.dfsek.terra.bukkit.nms.v1_21.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeMoodSoundTemplate.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeMoodSoundTemplate.java similarity index 95% rename from platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeMoodSoundTemplate.java rename to platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeMoodSoundTemplate.java index 6740f8d4d..cf9e5ee76 100644 --- a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeMoodSoundTemplate.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeMoodSoundTemplate.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R2.config; +package com.dfsek.terra.bukkit.nms.v1_21.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeParticleConfigTemplate.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeParticleConfigTemplate.java similarity index 82% rename from platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeParticleConfigTemplate.java rename to platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeParticleConfigTemplate.java index 458ce5630..f707e0565 100644 --- a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/BiomeParticleConfigTemplate.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeParticleConfigTemplate.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R2.config; +package com.dfsek.terra.bukkit.nms.v1_21.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; @@ -6,6 +6,7 @@ import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; import com.mojang.brigadier.StringReader; import com.mojang.brigadier.exceptions.CommandSyntaxException; import net.minecraft.commands.arguments.ParticleArgument; +import net.minecraft.core.HolderLookup.Provider; import net.minecraft.core.registries.BuiltInRegistries; import net.minecraft.world.level.biome.AmbientParticleSettings; @@ -26,7 +27,8 @@ public class BiomeParticleConfigTemplate implements ObjectTemplate { MobSpawnSettings.Builder builder = new MobSpawnSettings.Builder(); for(SpawnTypeConfig spawn : spawns) { MobCategory group = spawn.getGroup(); - if (spawn.getEntries() != null) { - for(SpawnerData entry : spawn.getEntries()) { - builder.addSpawn(group, entry); - } - } else if (spawn.getEntry() != null) { - if(!used) { - logger.warn("The entry sub-field of spawns is deprecated. " + - "It is recommended to use the entries sub-field instead."); - used = true; - } + for(SpawnerData entry : spawn.getEntries()) { + builder.addSpawn(group, entry); } } for(SpawnCostConfig cost : costs) { diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnTypeConfig.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnTypeConfig.java similarity index 78% rename from platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnTypeConfig.java rename to platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnTypeConfig.java index 78c986805..835853236 100644 --- a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/SpawnTypeConfig.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnTypeConfig.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R2.config; +package com.dfsek.terra.bukkit.nms.v1_21.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; @@ -17,11 +17,6 @@ public class SpawnTypeConfig implements ObjectTemplate { @Default private List entries = null; - @Value("entry") - @Default - @Deprecated - private SpawnerData entry = null; - public MobCategory getGroup() { return group; } @@ -30,11 +25,6 @@ public class SpawnTypeConfig implements ObjectTemplate { return entries; } - @Deprecated - public SpawnerData getEntry() { - return entry; - } - @Override public SpawnTypeConfig get() { return this; diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/VanillaBiomeProperties.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VanillaBiomeProperties.java similarity index 98% rename from platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/VanillaBiomeProperties.java rename to platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VanillaBiomeProperties.java index 6cd9618ff..19dbda5f7 100644 --- a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/VanillaBiomeProperties.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VanillaBiomeProperties.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R2.config; +package com.dfsek.terra.bukkit.nms.v1_21.config; import com.dfsek.tectonic.api.config.template.ConfigTemplate; import com.dfsek.tectonic.api.config.template.annotations.Default; diff --git a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/VillagerTypeTemplate.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VillagerTypeTemplate.java similarity index 93% rename from platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/VillagerTypeTemplate.java rename to platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VillagerTypeTemplate.java index 6e022851d..a5dd41b14 100644 --- a/platforms/bukkit/nms/v1_20_R2/src/main/java/com/dfsek/terra/bukkit/nms/v1_20_R2/config/VillagerTypeTemplate.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VillagerTypeTemplate.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_20_R2.config; +package com.dfsek.terra.bukkit.nms.v1_21.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; From d45256b2f769447a6d698a08a3d41353e8450cf4 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Sat, 12 Oct 2024 14:52:11 -0600 Subject: [PATCH 088/136] Another merge fixup --- .../com/dfsek/terra/mod/config/SpawnSettingsTemplate.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java index e0a7a3598..a0e8932e5 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/config/SpawnSettingsTemplate.java @@ -11,10 +11,6 @@ import java.util.List; public class SpawnSettingsTemplate implements ObjectTemplate { - - private static final Logger logger = LoggerFactory.getLogger(SpawnTypeConfig.class); - private static boolean used = false; - @Value("spawns") @Default private List spawns = null; From 65d026a130ce47d1f46a5d77ff0f37b105ae67ef Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Sat, 12 Oct 2024 15:38:51 -0600 Subject: [PATCH 089/136] Fix Cache Deadlock --- .../addons/noise/samplers/CacheSampler.java | 36 ++++++++++--------- .../generation/CachingBiomeProvider.java | 36 ++++++++++--------- 2 files changed, 40 insertions(+), 32 deletions(-) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java index 14c42b03d..59ff6a75a 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java @@ -24,24 +24,28 @@ public class CacheSampler implements NoiseSampler { public CacheSampler(NoiseSampler sampler, int dimensions) { this.sampler = sampler; if (dimensions == 2) { - LoadingCache cache = Caffeine - .newBuilder() - .executor(CACHE_EXECUTOR) - .scheduler(Scheduler.systemScheduler()) - .initialCapacity(256) - .maximumSize(256) - .build(this::sampleNoise); - this.cache2D = ThreadLocal.withInitial(() -> Pair.of(new DoubleSeededVector2Key(0, 0, 0), cache).mutable()); + this.cache2D = ThreadLocal.withInitial(() -> { + LoadingCache cache = Caffeine + .newBuilder() + .executor(CACHE_EXECUTOR) + .scheduler(Scheduler.systemScheduler()) + .initialCapacity(256) + .maximumSize(256) + .build(this::sampleNoise); + return Pair.of(new DoubleSeededVector2Key(0, 0, 0), cache).mutable(); + }); this.cache3D = null; } else { - LoadingCache cache = Caffeine - .newBuilder() - .executor(CACHE_EXECUTOR) - .scheduler(Scheduler.systemScheduler()) - .initialCapacity(981504) - .maximumSize(981504) - .build(this::sampleNoise); - this.cache3D = ThreadLocal.withInitial(() -> Pair.of(new DoubleSeededVector3Key(0, 0, 0, 0), cache).mutable()); + this.cache3D = ThreadLocal.withInitial(() -> { + LoadingCache cache = Caffeine + .newBuilder() + .executor(CACHE_EXECUTOR) + .scheduler(Scheduler.systemScheduler()) + .initialCapacity(981504) + .maximumSize(981504) + .build(this::sampleNoise); + return Pair.of(new DoubleSeededVector3Key(0, 0, 0, 0), cache).mutable(); + }); this.cache2D = null; } } diff --git a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java index 39411a6c3..3e42ff1d1 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java +++ b/common/api/src/main/java/com/dfsek/terra/api/world/biome/generation/CachingBiomeProvider.java @@ -33,23 +33,27 @@ public class CachingBiomeProvider implements BiomeProvider, Handle { this.delegate = delegate; this.res = delegate.resolution(); - LoadingCache> cache = Caffeine - .newBuilder() - .executor(CACHE_EXECUTOR) - .scheduler(Scheduler.systemScheduler()) - .initialCapacity(256) - .maximumSize(256) - .build(this::sampleBiome); - this.baseCache = ThreadLocal.withInitial(() -> Pair.of(new SeededVector2Key(0, 0, 0), cache).mutable()); + this.baseCache = ThreadLocal.withInitial(() -> { + LoadingCache> cache = Caffeine + .newBuilder() + .executor(CACHE_EXECUTOR) + .scheduler(Scheduler.systemScheduler()) + .initialCapacity(256) + .maximumSize(256) + .build(this::sampleBiome); + return Pair.of(new SeededVector2Key(0, 0, 0), cache).mutable(); + }); - LoadingCache cache3D = Caffeine - .newBuilder() - .executor(CACHE_EXECUTOR) - .scheduler(Scheduler.systemScheduler()) - .initialCapacity(981504) - .maximumSize(981504) - .build(this::sampleBiome); - this.cache = ThreadLocal.withInitial(() -> Pair.of(new SeededVector3Key(0, 0, 0, 0), cache3D).mutable()); + this.cache = ThreadLocal.withInitial(() -> { + LoadingCache cache3D = Caffeine + .newBuilder() + .executor(CACHE_EXECUTOR) + .scheduler(Scheduler.systemScheduler()) + .initialCapacity(981504) + .maximumSize(981504) + .build(this::sampleBiome); + return Pair.of(new SeededVector3Key(0, 0, 0, 0), cache3D).mutable(); + }); From 4be23902948c9efe3984839601876df9630063a9 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Sat, 12 Oct 2024 15:43:23 -0600 Subject: [PATCH 090/136] Small cache fix --- .../com/dfsek/terra/addons/image/config/image/ImageCache.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/addons/library-image/src/main/java/com/dfsek/terra/addons/image/config/image/ImageCache.java b/common/addons/library-image/src/main/java/com/dfsek/terra/addons/image/config/image/ImageCache.java index 16d399cda..88240b7ce 100644 --- a/common/addons/library-image/src/main/java/com/dfsek/terra/addons/image/config/image/ImageCache.java +++ b/common/addons/library-image/src/main/java/com/dfsek/terra/addons/image/config/image/ImageCache.java @@ -31,8 +31,7 @@ record ImageCache(LoadingCache cache) implements Properties { ImageCache images; if(!pack.getContext().has(ImageCache.class)) { var cacheBuilder = Caffeine.newBuilder().executor(CACHE_EXECUTOR).scheduler(Scheduler.systemScheduler()); - if(config.unloadOnTimeout()) cacheBuilder.expireAfterAccess(config.getCacheTimeout(), TimeUnit.SECONDS) .executor(CACHE_EXECUTOR) - .scheduler(Scheduler.systemScheduler()); + if(config.unloadOnTimeout()) cacheBuilder.expireAfterAccess(config.getCacheTimeout(), TimeUnit.SECONDS); images = new ImageCache(cacheBuilder.build(s -> loadImage(s, files))); pack.getContext().put(images); } else images = pack.getContext().get(ImageCache.class); From 1496f2c929ae7d819ea45c8f009e009e1ea0f90d Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 13 Oct 2024 15:41:03 +0800 Subject: [PATCH 091/136] build: update jitpack repo link --- platforms/allay/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/allay/build.gradle.kts b/platforms/allay/build.gradle.kts index 26d84269f..097e5042b 100644 --- a/platforms/allay/build.gradle.kts +++ b/platforms/allay/build.gradle.kts @@ -2,7 +2,7 @@ repositories { maven("https://repo.opencollab.dev/maven-releases/") maven("https://repo.opencollab.dev/maven-snapshots/") maven("https://storehouse.okaeri.eu/repository/maven-public/") - maven("https://www.jitpack.io/") + maven("https://jitpack.io/") } dependencies { From 61ed302137712e42745959624891233ed7fe8276 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 11:07:12 +0800 Subject: [PATCH 092/136] feat: adapting terra 6.5.1 (WIP) --- README.md | 12 +- .../allaymc/terra/allay/AllayPlatform.java | 2 +- .../java/org/allaymc/terra/allay/Mapping.java | 102 +- .../terra/allay/delegate/AllayBlockState.java | 3 +- .../terra/allay/delegate/AllayBlockType.java | 4 +- .../terra/allay/delegate/AllayChunk.java | 15 +- .../allay/delegate/AllayEnchantment.java | 2 +- .../terra/allay/delegate/AllayFakeEntity.java | 2 + .../terra/allay/delegate/AllayItemMeta.java | 2 +- .../terra/allay/delegate/AllayItemType.java | 7 +- .../terra/allay/delegate/AllayProtoChunk.java | 15 +- .../terra/allay/delegate/AllayProtoWorld.java | 12 +- .../allay/delegate/AllayServerWorld.java | 15 +- .../generator/AllayGeneratorWrapper.java | 10 +- .../terra/allay/handle/AllayWorldHandle.java | 1 - ...json => je_block_default_states_1_21.json} | 0 .../biomes_JE_1_20_4_TO_BE_1_20_0.json | 194 - .../mapping/biomes_JE_1_21_to_BE_1_21_30.json | 1 + .../blocks_JE_1_20_4_TO_BE_1_20_0.json | 511874 --------------- .../mapping/blocks_JE_1_21_to_BE_1_21_30.json | 1 + .../mapping/items_JE_1_20_4_TO_BE_1_20_0.json | 7347 - .../mapping/items_JE_1_21_to_BE_1_21_30.json | 1 + .../allay/src/main/resources/plugin.json | 3 +- 23 files changed, 95 insertions(+), 519530 deletions(-) rename platforms/allay/src/main/resources/{je_block_default_states_1_20_4.json => je_block_default_states_1_21.json} (100%) delete mode 100644 platforms/allay/src/main/resources/mapping/biomes_JE_1_20_4_TO_BE_1_20_0.json create mode 100644 platforms/allay/src/main/resources/mapping/biomes_JE_1_21_to_BE_1_21_30.json delete mode 100644 platforms/allay/src/main/resources/mapping/blocks_JE_1_20_4_TO_BE_1_20_0.json create mode 100644 platforms/allay/src/main/resources/mapping/blocks_JE_1_21_to_BE_1_21_30.json delete mode 100644 platforms/allay/src/main/resources/mapping/items_JE_1_20_4_TO_BE_1_20_0.json create mode 100644 platforms/allay/src/main/resources/mapping/items_JE_1_21_to_BE_1_21_30.json diff --git a/README.md b/README.md index ebba0fec2..fe06daf5b 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,12 @@ # Terra (Allay Platform) -This fork adds support for allay +This fork adds support for allay, and if you want to build it, here are some files you may need: -if you want to build it, here are some files you may need: - -- `mapping/biomes.json` from GeyserMC/mappings -- `mapping/items.json` from GeyserMC/mappings -- `mapping/blocks.json` you should generate it using GeyserMC/mappings-generator, and it's origin name is `generator_blocks.json` -- `je_block_default_state` converted from https://zh.minecraft.wiki/w/Module:Block_state_values currently +- `mapping/biomes_JE_1_21_to_BE_1_21_30.json` from GeyserMC/mappings +- `mapping/items_JE_1_21_to_BE_1_21_30.json` from GeyserMC/mappings +- `mapping/blocks_JE_1_21_to_BE_1_21_30.json` you should generate it using GeyserMC/mappings-generator, and it's origin name is `generator_blocks.json` +- `je_block_default_states_1_21.json` converted from https://zh.minecraft.wiki/w/Module:Block_state_values currently Terra is a modern world generation modding platform, primarily for Minecraft. Terra allows complete customization of world generation with an advanced API, diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java index c69c9488d..3014da100 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java @@ -33,7 +33,7 @@ public class AllayPlatform extends AbstractPlatform { @Override public boolean reload() { - // TODO: Implement reload + // TODO: implement reload return false; } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java index 822a88aad..1bc9920b0 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -10,12 +10,7 @@ import org.allaymc.api.block.type.BlockStateSafeGetter; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.item.type.ItemType; import org.allaymc.api.item.type.ItemTypeSafeGetter; -import org.allaymc.api.registry.Registries; -import org.allaymc.api.utils.HashUtils; import org.allaymc.api.utils.JSONUtils; -import org.allaymc.updater.block.BlockStateUpdaters; -import org.allaymc.updater.item.ItemStateUpdaters; -import org.cloudburstmc.nbt.NbtMap; import java.io.IOException; import java.util.List; @@ -28,6 +23,7 @@ import java.util.TreeMap; */ @Slf4j public final class Mapping { + private static final Map> JE_BLOCK_DEFAULT_PROPERTIES = new Object2ObjectOpenHashMap<>(); private static final Map BLOCK_STATE_BE_TO_JE = new Object2ObjectOpenHashMap<>(); private static final Map BLOCK_STATE_JE_HASH_TO_BE = new Int2ObjectOpenHashMap<>(); @@ -42,12 +38,52 @@ public final class Mapping { if(!initBiomeMapping()) error(); } + public static JeBlockState blockStateBeToJe(BlockState beBlockState) { + return BLOCK_STATE_BE_TO_JE.get(beBlockState); + } + + public static BlockState blockStateJeToBe(JeBlockState jeBlockState) { + var result = BLOCK_STATE_JE_HASH_TO_BE.get(jeBlockState.getHash()); + if(result == null) { + log.warn("Failed to find be block state for {}", jeBlockState); + return BE_AIR_STATE; + } + return result; + } + + public static ItemType itemIdJeToBe(String jeItemId) { + return ITEM_ID_JE_TO_BE.get(jeItemId); + } + + // Enchantment identifiers are same in both versions + + public static String enchantmentIdBeToJe(String beEnchantmentId) { + return beEnchantmentId; + } + + public static String enchantmentIdJeToBe(String jeEnchantmentId) { + return jeEnchantmentId; + } + + public static int biomeIdJeToBe(String jeBiomeId) { + return BIOME_ID_JE_TO_BE.get(jeBiomeId); + } + + public static Map getJeBlockDefaultProperties(String jeBlockIdentifier) { + var defaultProperties = JE_BLOCK_DEFAULT_PROPERTIES.get(jeBlockIdentifier); + if( defaultProperties == null) { + log.warn("Failed to find default properties for {}", jeBlockIdentifier); + return Map.of(); + } + return defaultProperties; + } + private static void error() { throw new RuntimeException("Mapping not initialized"); } private static boolean initBiomeMapping() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/biomes_JE_1_20_4_TO_BE_1_20_0.json")) { + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/biomes_JE_1_21_to_BE_1_21_30.json")) { if (stream == null) { log.error("biomes mapping not found"); return false; @@ -57,14 +93,14 @@ public final class Mapping { BIOME_ID_JE_TO_BE.put(mapping.getKey(), mapping.getValue().get("bedrock_id")); } } catch(IOException e) { - log.error("Failed to load mapping", e); + log.error("Failed to load biomes mapping", e); return false; } return true; } private static boolean initItemMapping() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/items_JE_1_20_4_TO_BE_1_20_0.json")) { + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/items_JE_1_21_to_BE_1_21_30.json")) { if (stream == null) { log.error("items mapping not found"); return false; @@ -73,19 +109,19 @@ public final class Mapping { for(var mapping : mappings) { var item = ItemTypeSafeGetter .name((String) mapping.getValue().get("bedrock_identifier")) - // NOTICE: Should be cast to double + // NOTICE: should be cast to double .meta(((Double) mapping.getValue().get("bedrock_data")).intValue()) .itemType(); ITEM_ID_JE_TO_BE.put(mapping.getKey(), item); } } catch(IOException e) { - log.error("Failed to load mapping", e); + log.error("Failed to load items mapping", e); } return true; } private static boolean initBlockStateMapping() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/blocks_JE_1_20_4_TO_BE_1_20_0.json")) { + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/blocks_JE_1_21_to_BE_1_21_30.json")) { if (stream == null) { log.error("blocks mapping not found"); return false; @@ -99,13 +135,13 @@ public final class Mapping { BLOCK_STATE_JE_HASH_TO_BE.put(jeState.getHash(), beState); } } catch(IOException e) { - log.error("Failed to load mapping", e); + log.error("Failed to load blocks mapping", e); } return true; } private static boolean initJeBlockDefaultProperties() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("je_block_default_states_1_20_4.json")) { + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("je_block_default_states_1_21.json")) { if (stream == null) { log.error("je_block_default_states.json not found"); return false; @@ -150,44 +186,4 @@ public final class Mapping { // noinspection unchecked return JeBlockState.create(identifier, new TreeMap<>((Map) data.getOrDefault("Properties", Map.of()))); } - - public static JeBlockState blockStateBeToJe(BlockState beBlockState) { - return BLOCK_STATE_BE_TO_JE.get(beBlockState); - } - - public static BlockState blockStateJeToBe(JeBlockState jeBlockState) { - var result = BLOCK_STATE_JE_HASH_TO_BE.get(jeBlockState.getHash()); - if(result == null) { - log.warn("Failed to find be block state for {}", jeBlockState); - return BlockTypes.AIR.getDefaultState(); - } - return result; - } - - public static ItemType itemIdJeToBe(String jeItemId) { - return ITEM_ID_JE_TO_BE.get(jeItemId); - } - - // Enchantment identifiers are same in both versions - - public static String enchantmentIdBeToJe(String beEnchantmentId) { - return beEnchantmentId; - } - - public static String enchantmentIdJeToBe(String jeEnchantmentId) { - return jeEnchantmentId; - } - - public static int biomeIdJeToBe(String jeBiomeId) { - return BIOME_ID_JE_TO_BE.get(jeBiomeId); - } - - public static Map getJeBlockDefaultProperties(String jeBlockIdentifier) { - var defaultProperties = JE_BLOCK_DEFAULT_PROPERTIES.get(jeBlockIdentifier); - if( defaultProperties == null) { - log.warn("Failed to find default properties for {}", jeBlockIdentifier); - return Map.of(); - } - return defaultProperties; - } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java index 25a8c2b77..99decead0 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java @@ -7,8 +7,6 @@ import org.allaymc.terra.allay.JeBlockState; import com.dfsek.terra.api.block.BlockType; import com.dfsek.terra.api.block.state.properties.Property; -import java.util.Objects; - /** * @author daoge_cmd */ @@ -16,6 +14,7 @@ public final class AllayBlockState implements com.dfsek.terra.api.block.state.Bl public static final AllayBlockState AIR = new AllayBlockState(BlockTypes.AIR.getDefaultState(), JeBlockState.fromString("minecraft:air")); + private final BlockState allayBlockState; private final JeBlockState jeBlockState; private final boolean containsWater; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java index 2ed72858e..c76677dc9 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java @@ -1,7 +1,7 @@ package org.allaymc.terra.allay.delegate; +import org.allaymc.api.block.tag.BlockTags; import org.allaymc.api.block.type.BlockType; -import org.allaymc.api.block.type.BlockTypes; import org.allaymc.terra.allay.Mapping; import com.dfsek.terra.api.block.state.BlockState; @@ -22,7 +22,7 @@ public record AllayBlockType(BlockType allayBlockType) implements com.dfsek.t @Override public boolean isWater() { - return allayBlockType == BlockTypes.WATER || allayBlockType == BlockTypes.FLOWING_WATER; + return allayBlockType.hasBlockTag(BlockTags.WATER); } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java index 5e3a9a0f4..88bef7484 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java @@ -1,6 +1,7 @@ package org.allaymc.terra.allay.delegate; import org.allaymc.api.block.property.type.BlockPropertyTypes; +import org.allaymc.api.block.tag.BlockTags; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.world.chunk.Chunk; import org.allaymc.terra.allay.Mapping; @@ -14,18 +15,16 @@ import com.dfsek.terra.api.world.ServerWorld; */ public record AllayChunk(ServerWorld world, Chunk allayChunk) implements com.dfsek.terra.api.world.chunk.Chunk { - private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(BlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(BlockPropertyTypes.LIQUID_DEPTH.createValue(0)); @Override public void setBlock(int x, int y, int z, BlockState data, boolean physics) { - var allayBlockState = (AllayBlockState)data; - var containsWater = allayBlockState.containsWater(); - if (!containsWater) { - var oldBlock = allayChunk.getBlockState(x, y, z); - containsWater = oldBlock == BlockTypes.WATER; - } + var allayBlockState = (AllayBlockState) data; allayChunk.setBlockState(x, y, z, allayBlockState.allayBlockState()); - if (containsWater) allayChunk.setBlockState(x, y, z, WATER, 1); + var containsWater = allayBlockState.containsWater() || allayChunk.getBlockState(x, y, z).getBlockType().hasBlockTag(BlockTags.WATER); + if (containsWater) { + allayChunk.setBlockState(x, y, z, WATER, 1); + } } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java index 4ba4a0220..71e3bfa0c 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java @@ -17,7 +17,7 @@ public record AllayEnchantment(EnchantmentType allayEnchantment) implements Ench @Override public boolean conflictsWith(Enchantment other) { - return ((AllayEnchantment)other).allayEnchantment.checkIncompatible(allayEnchantment); + return ((AllayEnchantment)other).allayEnchantment.isIncompatibleWith(allayEnchantment); } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java index c4f65907a..6fcda2d2e 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java @@ -5,6 +5,8 @@ import com.dfsek.terra.api.util.vector.Vector3; import com.dfsek.terra.api.world.ServerWorld; /** + * NOTICE: Entity is not supported currently, and this is a fake implementation. + * * @author daoge_cmd */ public final class AllayFakeEntity implements Entity { diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java index 9b1775e05..ed1e58516 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java @@ -22,7 +22,7 @@ public record AllayItemMeta(ItemStack allayItemStack) implements ItemMeta { public Map getEnchantments() { Map results = new HashMap<>(); for (var allayEnchantmentInstance : allayItemStack.getEnchantments()) { - results.put(new AllayEnchantment(allayEnchantmentInstance.getType()), (int) allayEnchantmentInstance.getLevel()); + results.put(new AllayEnchantment(allayEnchantmentInstance.getType()), allayEnchantmentInstance.getLevel()); } return results; } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java index 614640631..4329aa3ee 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java @@ -2,11 +2,10 @@ package org.allaymc.terra.allay.delegate; import org.allaymc.api.item.data.ItemId; import org.allaymc.api.item.type.ItemType; +import org.allaymc.api.registry.Registries; import com.dfsek.terra.api.inventory.Item; -import org.allaymc.api.registry.Registries; - /** * @author daoge_cmd @@ -34,8 +33,4 @@ public final class AllayItemType implements Item { public ItemType getHandle() { return allayItemType; } - - public ItemType allayItemType() { - return allayItemType; - } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java index 61b2818f7..db8737400 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java @@ -1,6 +1,7 @@ package org.allaymc.terra.allay.delegate; import org.allaymc.api.block.property.type.BlockPropertyTypes; +import org.allaymc.api.block.tag.BlockTags; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.world.chunk.UnsafeChunk; import org.allaymc.terra.allay.Mapping; @@ -14,7 +15,7 @@ import com.dfsek.terra.api.world.chunk.generation.ProtoChunk; */ public record AllayProtoChunk(UnsafeChunk allayChunk) implements ProtoChunk { - private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(BlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(BlockPropertyTypes.LIQUID_DEPTH.createValue(0)); @Override public int getMaxHeight() { @@ -23,14 +24,12 @@ public record AllayProtoChunk(UnsafeChunk allayChunk) implements ProtoChunk { @Override public void setBlock(int x, int y, int z, @NotNull BlockState blockState) { - var allayBlockState = (AllayBlockState)blockState; - var containsWater = allayBlockState.containsWater(); - if (!containsWater) { - var oldBlock = allayChunk.getBlockState(x, y, z); - containsWater = oldBlock == BlockTypes.WATER; - } + var allayBlockState = (AllayBlockState) blockState; allayChunk.setBlockState(x, y, z, allayBlockState.allayBlockState()); - if (containsWater) allayChunk.setBlockState(x, y, z, WATER, 1); + var containsWater = allayBlockState.containsWater() || allayChunk.getBlockState(x, y, z).getBlockType().hasBlockTag(BlockTags.WATER); + if (containsWater) { + allayChunk.setBlockState(x, y, z, WATER, 1); + } } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java index 5a71b590d..e580e2a4a 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java @@ -1,8 +1,7 @@ package org.allaymc.terra.allay.delegate; -import com.dfsek.terra.api.util.vector.Vector3; - import org.allaymc.api.block.property.type.BlockPropertyTypes; +import org.allaymc.api.block.tag.BlockTags; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.world.generator.context.OtherChunkAccessibleContext; import org.allaymc.terra.allay.Mapping; @@ -12,6 +11,7 @@ import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.config.ConfigPack; import com.dfsek.terra.api.entity.Entity; import com.dfsek.terra.api.entity.EntityType; +import com.dfsek.terra.api.util.vector.Vector3; import com.dfsek.terra.api.world.ServerWorld; import com.dfsek.terra.api.world.biome.generation.BiomeProvider; import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; @@ -22,7 +22,7 @@ import com.dfsek.terra.api.world.chunk.generation.ProtoWorld; */ public record AllayProtoWorld(AllayServerWorld allayServerWorld, OtherChunkAccessibleContext context) implements ProtoWorld { - private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(BlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(BlockPropertyTypes.LIQUID_DEPTH.createValue(0)); @Override public int centerChunkX() { @@ -42,11 +42,7 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, OtherChunkAcces @Override public void setBlockState(int x, int y, int z, BlockState data, boolean physics) { var allayBlockState = (AllayBlockState)data; - var containsWater = allayBlockState.containsWater(); - if (!containsWater) { - var oldBlock = context.getBlockState(x, y, z).getBlockType(); - containsWater = oldBlock == BlockTypes.WATER; - } + var containsWater = allayBlockState.containsWater() || context.getBlockState(x, y, z).getBlockType().hasBlockTag(BlockTags.WATER); context.setBlockState(x, y, z, allayBlockState.allayBlockState()); if (containsWater) context.setBlockState(x, y, z, WATER, 1); } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java index 59382a4d2..5a45bdf02 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java @@ -1,7 +1,5 @@ package org.allaymc.terra.allay.delegate; -import com.dfsek.terra.api.util.vector.Vector3; - import org.allaymc.api.block.property.type.BlockPropertyTypes; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.world.Dimension; @@ -13,6 +11,7 @@ import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.config.ConfigPack; import com.dfsek.terra.api.entity.Entity; import com.dfsek.terra.api.entity.EntityType; +import com.dfsek.terra.api.util.vector.Vector3; import com.dfsek.terra.api.world.ServerWorld; import com.dfsek.terra.api.world.biome.generation.BiomeProvider; import com.dfsek.terra.api.world.chunk.Chunk; @@ -23,7 +22,7 @@ import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; */ public record AllayServerWorld(AllayGeneratorWrapper allayGeneratorWrapper, Dimension allayDimension) implements ServerWorld { - private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(BlockPropertyTypes.LIQUID_DEPTH.createValue(15)); + private static final org.allaymc.api.block.type.BlockState WATER = BlockTypes.WATER.ofState(BlockPropertyTypes.LIQUID_DEPTH.createValue(0)); @Override public Chunk getChunkAt(int x, int z) { @@ -32,14 +31,8 @@ public record AllayServerWorld(AllayGeneratorWrapper allayGeneratorWrapper, Dime @Override public void setBlockState(int x, int y, int z, BlockState data, boolean physics) { - var allayBlockState = (AllayBlockState)data; - var containsWater = allayBlockState.containsWater(); - if (!containsWater) { - var oldBlock = allayDimension.getBlockState(x, y, z).getBlockType(); - containsWater = oldBlock == BlockTypes.WATER; - } - allayDimension.setBlockState(x, y, z, allayBlockState.allayBlockState()); - if (containsWater) allayDimension.setBlockState(x, y, z, WATER, 1); + // In dimension#setBlockState() method, Water will be moved to layer 1 if it is placed at layer 0 + allayDimension.setBlockState(x, y, z, ((AllayBlockState) data).allayBlockState()); } @Override diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java index 0653ecb75..153180abc 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java @@ -5,7 +5,6 @@ import lombok.extern.slf4j.Slf4j; import org.allaymc.api.utils.AllayStringUtils; import org.allaymc.api.world.biome.BiomeType; import org.allaymc.api.world.generator.WorldGenerator; -import org.allaymc.api.world.generator.WorldGeneratorType; import org.allaymc.api.world.generator.context.NoiseContext; import org.allaymc.api.world.generator.context.PopulateContext; import org.allaymc.api.world.generator.function.Noiser; @@ -28,6 +27,7 @@ import com.dfsek.terra.api.world.info.WorldProperties; */ @Slf4j public class AllayGeneratorWrapper implements GeneratorWrapper { + protected static final String DEFAULT_PACK_NAME = "overworld"; protected static final String OPTION_PACK_NAME = "pack"; protected static final String OPTION_SEED = "seed"; @@ -54,12 +54,15 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { this.allayWorldGenerator = WorldGenerator .builder() .name("TERRA") - .preset("")// preset已经在构造函数读取完了,这边不需要传preset + .preset(preset) .noisers(new AllayNoiser()) .populators(new AllayPopulator()) .onDimensionSet(dimension -> { this.allayServerWorld = new AllayServerWorld(this, dimension); this.worldProperties = new WorldProperties() { + + private final Object fakeHandle = new Object(); + @Override public long getSeed() { return seed; @@ -77,8 +80,7 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { @Override public Object getHandle() { - // 这里留null就行,没啥用 - return null; + return fakeHandle; } }; }) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java index eea890f5c..17b505728 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java @@ -27,7 +27,6 @@ public class AllayWorldHandle implements WorldHandle { @Override public @NotNull EntityType getEntity(@NotNull String id) { - // TODO: 我们暂时不支持实体,因为端本身都没实体ai,生成实体没有意义 return new EntityType() { private final Object fakeEntityType = new Object(); @Override diff --git a/platforms/allay/src/main/resources/je_block_default_states_1_20_4.json b/platforms/allay/src/main/resources/je_block_default_states_1_21.json similarity index 100% rename from platforms/allay/src/main/resources/je_block_default_states_1_20_4.json rename to platforms/allay/src/main/resources/je_block_default_states_1_21.json diff --git a/platforms/allay/src/main/resources/mapping/biomes_JE_1_20_4_TO_BE_1_20_0.json b/platforms/allay/src/main/resources/mapping/biomes_JE_1_20_4_TO_BE_1_20_0.json deleted file mode 100644 index 063b49a87..000000000 --- a/platforms/allay/src/main/resources/mapping/biomes_JE_1_20_4_TO_BE_1_20_0.json +++ /dev/null @@ -1,194 +0,0 @@ -{ - "minecraft:badlands": { - "bedrock_id": 37 - }, - "minecraft:bamboo_jungle": { - "bedrock_id": 48 - }, - "minecraft:basalt_deltas": { - "bedrock_id": 181 - }, - "minecraft:beach": { - "bedrock_id": 16 - }, - "minecraft:birch_forest": { - "bedrock_id": 27 - }, - "minecraft:cherry_grove": { - "bedrock_id": 192 - }, - "minecraft:cold_ocean": { - "bedrock_id": 44 - }, - "minecraft:crimson_forest": { - "bedrock_id": 179 - }, - "minecraft:dark_forest": { - "bedrock_id": 29 - }, - "minecraft:deep_cold_ocean": { - "bedrock_id": 45 - }, - "minecraft:deep_dark": { - "bedrock_id": 190 - }, - "minecraft:deep_frozen_ocean": { - "bedrock_id": 47 - }, - "minecraft:deep_lukewarm_ocean": { - "bedrock_id": 43 - }, - "minecraft:deep_ocean": { - "bedrock_id": 24 - }, - "minecraft:desert": { - "bedrock_id": 2 - }, - "minecraft:dripstone_caves": { - "bedrock_id": 188 - }, - "minecraft:end_barrens": { - "bedrock_id": 9 - }, - "minecraft:end_highlands": { - "bedrock_id": 9 - }, - "minecraft:end_midlands": { - "bedrock_id": 9 - }, - "minecraft:eroded_badlands": { - "bedrock_id": 165 - }, - "minecraft:flower_forest": { - "bedrock_id": 132 - }, - "minecraft:forest": { - "bedrock_id": 4 - }, - "minecraft:frozen_ocean": { - "bedrock_id": 46 - }, - "minecraft:frozen_peaks": { - "bedrock_id": 183 - }, - "minecraft:frozen_river": { - "bedrock_id": 11 - }, - "minecraft:grove": { - "bedrock_id": 185 - }, - "minecraft:ice_spikes": { - "bedrock_id": 140 - }, - "minecraft:jagged_peaks": { - "bedrock_id": 182 - }, - "minecraft:jungle": { - "bedrock_id": 21 - }, - "minecraft:lukewarm_ocean": { - "bedrock_id": 42 - }, - "minecraft:lush_caves": { - "bedrock_id": 187 - }, - "minecraft:mangrove_swamp": { - "bedrock_id": 191 - }, - "minecraft:meadow": { - "bedrock_id": 186 - }, - "minecraft:mushroom_fields": { - "bedrock_id": 14 - }, - "minecraft:nether_wastes": { - "bedrock_id": 8 - }, - "minecraft:ocean": { - "bedrock_id": 0 - }, - "minecraft:old_growth_birch_forest": { - "bedrock_id": 155 - }, - "minecraft:old_growth_pine_taiga": { - "bedrock_id": 32 - }, - "minecraft:old_growth_spruce_taiga": { - "bedrock_id": 160 - }, - "minecraft:plains": { - "bedrock_id": 1 - }, - "minecraft:river": { - "bedrock_id": 7 - }, - "minecraft:savanna": { - "bedrock_id": 35 - }, - "minecraft:savanna_plateau": { - "bedrock_id": 36 - }, - "minecraft:small_end_islands": { - "bedrock_id": 9 - }, - "minecraft:snowy_beach": { - "bedrock_id": 26 - }, - "minecraft:snowy_plains": { - "bedrock_id": 12 - }, - "minecraft:snowy_slopes": { - "bedrock_id": 184 - }, - "minecraft:snowy_taiga": { - "bedrock_id": 30 - }, - "minecraft:soul_sand_valley": { - "bedrock_id": 178 - }, - "minecraft:sparse_jungle": { - "bedrock_id": 23 - }, - "minecraft:stony_peaks": { - "bedrock_id": 189 - }, - "minecraft:stony_shore": { - "bedrock_id": 25 - }, - "minecraft:sunflower_plains": { - "bedrock_id": 129 - }, - "minecraft:swamp": { - "bedrock_id": 6 - }, - "minecraft:taiga": { - "bedrock_id": 5 - }, - "minecraft:the_end": { - "bedrock_id": 9 - }, - "minecraft:the_void": { - "bedrock_id": 7 - }, - "minecraft:warm_ocean": { - "bedrock_id": 40 - }, - "minecraft:warped_forest": { - "bedrock_id": 180 - }, - "minecraft:windswept_forest": { - "bedrock_id": 34 - }, - "minecraft:windswept_gravelly_hills": { - "bedrock_id": 131 - }, - "minecraft:windswept_hills": { - "bedrock_id": 3 - }, - "minecraft:windswept_savanna": { - "bedrock_id": 163 - }, - "minecraft:wooded_badlands": { - "bedrock_id": 38 - } -} \ No newline at end of file diff --git a/platforms/allay/src/main/resources/mapping/biomes_JE_1_21_to_BE_1_21_30.json b/platforms/allay/src/main/resources/mapping/biomes_JE_1_21_to_BE_1_21_30.json new file mode 100644 index 000000000..6925eeb61 --- /dev/null +++ b/platforms/allay/src/main/resources/mapping/biomes_JE_1_21_to_BE_1_21_30.json @@ -0,0 +1 @@ +{ "minecraft:badlands": { "bedrock_id": 37 }, "minecraft:bamboo_jungle": { "bedrock_id": 48 }, "minecraft:basalt_deltas": { "bedrock_id": 181 }, "minecraft:beach": { "bedrock_id": 16 }, "minecraft:birch_forest": { "bedrock_id": 27 }, "minecraft:cherry_grove": { "bedrock_id": 192 }, "minecraft:cold_ocean": { "bedrock_id": 44 }, "minecraft:crimson_forest": { "bedrock_id": 179 }, "minecraft:dark_forest": { "bedrock_id": 29 }, "minecraft:deep_cold_ocean": { "bedrock_id": 45 }, "minecraft:deep_dark": { "bedrock_id": 190 }, "minecraft:deep_frozen_ocean": { "bedrock_id": 47 }, "minecraft:deep_lukewarm_ocean": { "bedrock_id": 43 }, "minecraft:deep_ocean": { "bedrock_id": 24 }, "minecraft:desert": { "bedrock_id": 2 }, "minecraft:dripstone_caves": { "bedrock_id": 188 }, "minecraft:end_barrens": { "bedrock_id": 9 }, "minecraft:end_highlands": { "bedrock_id": 9 }, "minecraft:end_midlands": { "bedrock_id": 9 }, "minecraft:eroded_badlands": { "bedrock_id": 165 }, "minecraft:flower_forest": { "bedrock_id": 132 }, "minecraft:forest": { "bedrock_id": 4 }, "minecraft:frozen_ocean": { "bedrock_id": 46 }, "minecraft:frozen_peaks": { "bedrock_id": 183 }, "minecraft:frozen_river": { "bedrock_id": 11 }, "minecraft:grove": { "bedrock_id": 185 }, "minecraft:ice_spikes": { "bedrock_id": 140 }, "minecraft:jagged_peaks": { "bedrock_id": 182 }, "minecraft:jungle": { "bedrock_id": 21 }, "minecraft:lukewarm_ocean": { "bedrock_id": 42 }, "minecraft:lush_caves": { "bedrock_id": 187 }, "minecraft:mangrove_swamp": { "bedrock_id": 191 }, "minecraft:meadow": { "bedrock_id": 186 }, "minecraft:mushroom_fields": { "bedrock_id": 14 }, "minecraft:nether_wastes": { "bedrock_id": 8 }, "minecraft:ocean": { "bedrock_id": 0 }, "minecraft:old_growth_birch_forest": { "bedrock_id": 155 }, "minecraft:old_growth_pine_taiga": { "bedrock_id": 32 }, "minecraft:old_growth_spruce_taiga": { "bedrock_id": 160 }, "minecraft:plains": { "bedrock_id": 1 }, "minecraft:river": { "bedrock_id": 7 }, "minecraft:savanna": { "bedrock_id": 35 }, "minecraft:savanna_plateau": { "bedrock_id": 36 }, "minecraft:small_end_islands": { "bedrock_id": 9 }, "minecraft:snowy_beach": { "bedrock_id": 26 }, "minecraft:snowy_plains": { "bedrock_id": 12 }, "minecraft:snowy_slopes": { "bedrock_id": 184 }, "minecraft:snowy_taiga": { "bedrock_id": 30 }, "minecraft:soul_sand_valley": { "bedrock_id": 178 }, "minecraft:sparse_jungle": { "bedrock_id": 23 }, "minecraft:stony_peaks": { "bedrock_id": 189 }, "minecraft:stony_shore": { "bedrock_id": 25 }, "minecraft:sunflower_plains": { "bedrock_id": 129 }, "minecraft:swamp": { "bedrock_id": 6 }, "minecraft:taiga": { "bedrock_id": 5 }, "minecraft:the_end": { "bedrock_id": 9 }, "minecraft:the_void": { "bedrock_id": 7 }, "minecraft:warm_ocean": { "bedrock_id": 40 }, "minecraft:warped_forest": { "bedrock_id": 180 }, "minecraft:windswept_forest": { "bedrock_id": 34 }, "minecraft:windswept_gravelly_hills": { "bedrock_id": 131 }, "minecraft:windswept_hills": { "bedrock_id": 3 }, "minecraft:windswept_savanna": { "bedrock_id": 163 }, "minecraft:wooded_badlands": { "bedrock_id": 38 } } \ No newline at end of file diff --git a/platforms/allay/src/main/resources/mapping/blocks_JE_1_20_4_TO_BE_1_20_0.json b/platforms/allay/src/main/resources/mapping/blocks_JE_1_20_4_TO_BE_1_20_0.json deleted file mode 100644 index a341f74f4..000000000 --- a/platforms/allay/src/main/resources/mapping/blocks_JE_1_20_4_TO_BE_1_20_0.json +++ /dev/null @@ -1,511874 +0,0 @@ -{ - "mappings": [ - { - "java_state": { - "Name": "minecraft:air" - }, - "bedrock_state": { - "bedrock_identifier": "air" - } - }, - { - "java_state": { - "Name": "minecraft:stone" - }, - "bedrock_state": { - "bedrock_identifier": "stone" - } - }, - { - "java_state": { - "Name": "minecraft:granite" - }, - "bedrock_state": { - "bedrock_identifier": "granite" - } - }, - { - "java_state": { - "Name": "minecraft:polished_granite" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite" - } - }, - { - "java_state": { - "Name": "minecraft:diorite" - }, - "bedrock_state": { - "bedrock_identifier": "diorite" - } - }, - { - "java_state": { - "Name": "minecraft:polished_diorite" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite" - } - }, - { - "java_state": { - "Name": "minecraft:andesite" - }, - "bedrock_state": { - "bedrock_identifier": "andesite" - } - }, - { - "java_state": { - "Name": "minecraft:polished_andesite" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite" - } - }, - { - "java_state": { - "Properties": { - "snowy": "true" - }, - "Name": "minecraft:grass_block" - }, - "bedrock_state": { - "bedrock_identifier": "grass_block" - } - }, - { - "java_state": { - "Properties": { - "snowy": "false" - }, - "Name": "minecraft:grass_block" - }, - "bedrock_state": { - "bedrock_identifier": "grass_block" - } - }, - { - "java_state": { - "Name": "minecraft:dirt" - }, - "bedrock_state": { - "bedrock_identifier": "dirt", - "state": { - "dirt_type": "normal" - } - } - }, - { - "java_state": { - "Name": "minecraft:coarse_dirt" - }, - "bedrock_state": { - "bedrock_identifier": "dirt", - "state": { - "dirt_type": "coarse" - } - } - }, - { - "java_state": { - "Properties": { - "snowy": "true" - }, - "Name": "minecraft:podzol" - }, - "bedrock_state": { - "bedrock_identifier": "podzol" - } - }, - { - "java_state": { - "Properties": { - "snowy": "false" - }, - "Name": "minecraft:podzol" - }, - "bedrock_state": { - "bedrock_identifier": "podzol" - } - }, - { - "java_state": { - "Name": "minecraft:cobblestone" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone" - } - }, - { - "java_state": { - "Name": "minecraft:oak_planks" - }, - "bedrock_state": { - "bedrock_identifier": "oak_planks" - } - }, - { - "java_state": { - "Name": "minecraft:spruce_planks" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_planks" - } - }, - { - "java_state": { - "Name": "minecraft:birch_planks" - }, - "bedrock_state": { - "bedrock_identifier": "birch_planks" - } - }, - { - "java_state": { - "Name": "minecraft:jungle_planks" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_planks" - } - }, - { - "java_state": { - "Name": "minecraft:acacia_planks" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_planks" - } - }, - { - "java_state": { - "Name": "minecraft:cherry_planks" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_planks" - } - }, - { - "java_state": { - "Name": "minecraft:dark_oak_planks" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_planks" - } - }, - { - "java_state": { - "Name": "minecraft:mangrove_planks" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_planks" - } - }, - { - "java_state": { - "Name": "minecraft:bamboo_planks" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_planks" - } - }, - { - "java_state": { - "Name": "minecraft:bamboo_mosaic" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic" - } - }, - { - "java_state": { - "Properties": { - "stage": "0" - }, - "Name": "minecraft:oak_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "oak_sapling", - "state": { - "age_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "stage": "1" - }, - "Name": "minecraft:oak_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "oak_sapling", - "state": { - "age_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "stage": "0" - }, - "Name": "minecraft:spruce_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_sapling", - "state": { - "age_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "stage": "1" - }, - "Name": "minecraft:spruce_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_sapling", - "state": { - "age_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "stage": "0" - }, - "Name": "minecraft:birch_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "birch_sapling", - "state": { - "age_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "stage": "1" - }, - "Name": "minecraft:birch_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "birch_sapling", - "state": { - "age_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "stage": "0" - }, - "Name": "minecraft:jungle_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_sapling", - "state": { - "age_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "stage": "1" - }, - "Name": "minecraft:jungle_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_sapling", - "state": { - "age_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "stage": "0" - }, - "Name": "minecraft:acacia_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_sapling", - "state": { - "age_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "stage": "1" - }, - "Name": "minecraft:acacia_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_sapling", - "state": { - "age_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "stage": "0" - }, - "Name": "minecraft:cherry_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_sapling", - "state": { - "age_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "stage": "1" - }, - "Name": "minecraft:cherry_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_sapling", - "state": { - "age_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "stage": "0" - }, - "Name": "minecraft:dark_oak_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_sapling", - "state": { - "age_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "stage": "1" - }, - "Name": "minecraft:dark_oak_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_sapling", - "state": { - "age_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "0", - "hanging": "true", - "age": "0" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "0", - "hanging": "true", - "age": "0" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "1", - "hanging": "true", - "age": "0" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "1", - "hanging": "true", - "age": "0" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "0", - "hanging": "false", - "age": "0" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "0", - "hanging": "false", - "age": "0" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "1", - "hanging": "false", - "age": "0" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "1", - "hanging": "false", - "age": "0" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "0", - "hanging": "true", - "age": "1" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "0", - "hanging": "true", - "age": "1" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "1", - "hanging": "true", - "age": "1" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "1", - "hanging": "true", - "age": "1" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "0", - "hanging": "false", - "age": "1" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "0", - "hanging": "false", - "age": "1" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "1", - "hanging": "false", - "age": "1" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "1", - "hanging": "false", - "age": "1" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "0", - "hanging": "true", - "age": "2" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "0", - "hanging": "true", - "age": "2" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "1", - "hanging": "true", - "age": "2" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "1", - "hanging": "true", - "age": "2" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "0", - "hanging": "false", - "age": "2" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "0", - "hanging": "false", - "age": "2" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "1", - "hanging": "false", - "age": "2" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "1", - "hanging": "false", - "age": "2" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "0", - "hanging": "true", - "age": "3" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "0", - "hanging": "true", - "age": "3" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "1", - "hanging": "true", - "age": "3" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "1", - "hanging": "true", - "age": "3" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "0", - "hanging": "false", - "age": "3" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "0", - "hanging": "false", - "age": "3" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "1", - "hanging": "false", - "age": "3" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "1", - "hanging": "false", - "age": "3" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "0", - "hanging": "true", - "age": "4" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "0", - "hanging": "true", - "age": "4" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "1", - "hanging": "true", - "age": "4" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "1", - "hanging": "true", - "age": "4" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "0", - "hanging": "false", - "age": "4" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "0", - "hanging": "false", - "age": "4" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 0, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "stage": "1", - "hanging": "false", - "age": "4" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "stage": "1", - "hanging": "false", - "age": "4" - }, - "Name": "minecraft:mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_propagule", - "state": { - "propagule_stage": 1, - "hanging": false - } - } - }, - { - "java_state": { - "Name": "minecraft:bedrock" - }, - "bedrock_state": { - "bedrock_identifier": "bedrock", - "state": { - "infiniburn_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "level": "0" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "water", - "state": { - "liquid_depth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "level": "1" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 1 - } - } - }, - { - "java_state": { - "Properties": { - "level": "2" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 2 - } - } - }, - { - "java_state": { - "Properties": { - "level": "3" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 3 - } - } - }, - { - "java_state": { - "Properties": { - "level": "4" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 4 - } - } - }, - { - "java_state": { - "Properties": { - "level": "5" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 5 - } - } - }, - { - "java_state": { - "Properties": { - "level": "6" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 6 - } - } - }, - { - "java_state": { - "Properties": { - "level": "7" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "level": "8" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 8 - } - } - }, - { - "java_state": { - "Properties": { - "level": "9" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 9 - } - } - }, - { - "java_state": { - "Properties": { - "level": "10" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 10 - } - } - }, - { - "java_state": { - "Properties": { - "level": "11" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 11 - } - } - }, - { - "java_state": { - "Properties": { - "level": "12" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 12 - } - } - }, - { - "java_state": { - "Properties": { - "level": "13" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 13 - } - } - }, - { - "java_state": { - "Properties": { - "level": "14" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 14 - } - } - }, - { - "java_state": { - "Properties": { - "level": "15" - }, - "Name": "minecraft:water" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_water", - "state": { - "liquid_depth": 15 - } - } - }, - { - "java_state": { - "Properties": { - "level": "0" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "lava", - "state": { - "liquid_depth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "level": "1" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 1 - } - } - }, - { - "java_state": { - "Properties": { - "level": "2" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 2 - } - } - }, - { - "java_state": { - "Properties": { - "level": "3" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 3 - } - } - }, - { - "java_state": { - "Properties": { - "level": "4" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 4 - } - } - }, - { - "java_state": { - "Properties": { - "level": "5" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 5 - } - } - }, - { - "java_state": { - "Properties": { - "level": "6" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 6 - } - } - }, - { - "java_state": { - "Properties": { - "level": "7" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "level": "8" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 8 - } - } - }, - { - "java_state": { - "Properties": { - "level": "9" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 9 - } - } - }, - { - "java_state": { - "Properties": { - "level": "10" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 10 - } - } - }, - { - "java_state": { - "Properties": { - "level": "11" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 11 - } - } - }, - { - "java_state": { - "Properties": { - "level": "12" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 12 - } - } - }, - { - "java_state": { - "Properties": { - "level": "13" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 13 - } - } - }, - { - "java_state": { - "Properties": { - "level": "14" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 14 - } - } - }, - { - "java_state": { - "Properties": { - "level": "15" - }, - "Name": "minecraft:lava" - }, - "bedrock_state": { - "bedrock_identifier": "flowing_lava", - "state": { - "liquid_depth": 15 - } - } - }, - { - "java_state": { - "Name": "minecraft:sand" - }, - "bedrock_state": { - "bedrock_identifier": "sand", - "state": { - "sand_type": "normal" - } - } - }, - { - "java_state": { - "Properties": { - "dusted": "0" - }, - "Name": "minecraft:suspicious_sand" - }, - "bedrock_state": { - "bedrock_identifier": "suspicious_sand", - "state": { - "hanging": false, - "brushed_progress": 0 - } - } - }, - { - "java_state": { - "Properties": { - "dusted": "1" - }, - "Name": "minecraft:suspicious_sand" - }, - "bedrock_state": { - "bedrock_identifier": "suspicious_sand", - "state": { - "hanging": false, - "brushed_progress": 1 - } - } - }, - { - "java_state": { - "Properties": { - "dusted": "2" - }, - "Name": "minecraft:suspicious_sand" - }, - "bedrock_state": { - "bedrock_identifier": "suspicious_sand", - "state": { - "hanging": false, - "brushed_progress": 2 - } - } - }, - { - "java_state": { - "Properties": { - "dusted": "3" - }, - "Name": "minecraft:suspicious_sand" - }, - "bedrock_state": { - "bedrock_identifier": "suspicious_sand", - "state": { - "hanging": false, - "brushed_progress": 3 - } - } - }, - { - "java_state": { - "Name": "minecraft:red_sand" - }, - "bedrock_state": { - "bedrock_identifier": "sand", - "state": { - "sand_type": "red" - } - } - }, - { - "java_state": { - "Name": "minecraft:gravel" - }, - "bedrock_state": { - "bedrock_identifier": "gravel" - } - }, - { - "java_state": { - "Properties": { - "dusted": "0" - }, - "Name": "minecraft:suspicious_gravel" - }, - "bedrock_state": { - "bedrock_identifier": "suspicious_gravel", - "state": { - "hanging": false, - "brushed_progress": 0 - } - } - }, - { - "java_state": { - "Properties": { - "dusted": "1" - }, - "Name": "minecraft:suspicious_gravel" - }, - "bedrock_state": { - "bedrock_identifier": "suspicious_gravel", - "state": { - "hanging": false, - "brushed_progress": 1 - } - } - }, - { - "java_state": { - "Properties": { - "dusted": "2" - }, - "Name": "minecraft:suspicious_gravel" - }, - "bedrock_state": { - "bedrock_identifier": "suspicious_gravel", - "state": { - "hanging": false, - "brushed_progress": 2 - } - } - }, - { - "java_state": { - "Properties": { - "dusted": "3" - }, - "Name": "minecraft:suspicious_gravel" - }, - "bedrock_state": { - "bedrock_identifier": "suspicious_gravel", - "state": { - "hanging": false, - "brushed_progress": 3 - } - } - }, - { - "java_state": { - "Name": "minecraft:gold_ore" - }, - "bedrock_state": { - "bedrock_identifier": "gold_ore" - } - }, - { - "java_state": { - "Name": "minecraft:deepslate_gold_ore" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_gold_ore" - } - }, - { - "java_state": { - "Name": "minecraft:iron_ore" - }, - "bedrock_state": { - "bedrock_identifier": "iron_ore" - } - }, - { - "java_state": { - "Name": "minecraft:deepslate_iron_ore" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_iron_ore" - } - }, - { - "java_state": { - "Name": "minecraft:coal_ore" - }, - "bedrock_state": { - "bedrock_identifier": "coal_ore" - } - }, - { - "java_state": { - "Name": "minecraft:deepslate_coal_ore" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_coal_ore" - } - }, - { - "java_state": { - "Name": "minecraft:nether_gold_ore" - }, - "bedrock_state": { - "bedrock_identifier": "nether_gold_ore" - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:oak_log" - }, - "bedrock_state": { - "bedrock_identifier": "oak_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:oak_log" - }, - "bedrock_state": { - "bedrock_identifier": "oak_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:oak_log" - }, - "bedrock_state": { - "bedrock_identifier": "oak_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:spruce_log" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:spruce_log" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:spruce_log" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:birch_log" - }, - "bedrock_state": { - "bedrock_identifier": "birch_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:birch_log" - }, - "bedrock_state": { - "bedrock_identifier": "birch_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:birch_log" - }, - "bedrock_state": { - "bedrock_identifier": "birch_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:jungle_log" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:jungle_log" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:jungle_log" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:acacia_log" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:acacia_log" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:acacia_log" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:cherry_log" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:cherry_log" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:cherry_log" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:dark_oak_log" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:dark_oak_log" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:dark_oak_log" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:mangrove_log" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:mangrove_log" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:mangrove_log" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:mangrove_roots" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_roots" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:mangrove_roots" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_roots" - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:muddy_mangrove_roots" - }, - "bedrock_state": { - "bedrock_identifier": "muddy_mangrove_roots", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:muddy_mangrove_roots" - }, - "bedrock_state": { - "bedrock_identifier": "muddy_mangrove_roots", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:muddy_mangrove_roots" - }, - "bedrock_state": { - "bedrock_identifier": "muddy_mangrove_roots", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:bamboo_block" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_block", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:bamboo_block" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_block", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:bamboo_block" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_block", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_spruce_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_spruce_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_spruce_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_spruce_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_spruce_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_spruce_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_birch_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_birch_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_birch_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_birch_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_birch_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_birch_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_jungle_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_jungle_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_jungle_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_jungle_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_jungle_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_jungle_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_acacia_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_acacia_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_acacia_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_acacia_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_acacia_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_acacia_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_cherry_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_cherry_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_cherry_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_cherry_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_cherry_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_cherry_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_dark_oak_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_dark_oak_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_dark_oak_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_dark_oak_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_dark_oak_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_dark_oak_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_oak_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_oak_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_oak_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_oak_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_oak_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_oak_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_mangrove_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_mangrove_log", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_mangrove_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_mangrove_log", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_mangrove_log" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_mangrove_log", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_bamboo_block" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_bamboo_block", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_bamboo_block" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_bamboo_block", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_bamboo_block" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_bamboo_block", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:oak_wood" - }, - "bedrock_state": { - "bedrock_identifier": "oak_wood", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:oak_wood" - }, - "bedrock_state": { - "bedrock_identifier": "oak_wood", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:oak_wood" - }, - "bedrock_state": { - "bedrock_identifier": "oak_wood", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:spruce_wood" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_wood", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:spruce_wood" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_wood", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:spruce_wood" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_wood", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:birch_wood" - }, - "bedrock_state": { - "bedrock_identifier": "birch_wood", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:birch_wood" - }, - "bedrock_state": { - "bedrock_identifier": "birch_wood", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:birch_wood" - }, - "bedrock_state": { - "bedrock_identifier": "birch_wood", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:jungle_wood" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_wood", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:jungle_wood" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_wood", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:jungle_wood" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_wood", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:acacia_wood" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_wood", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:acacia_wood" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_wood", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:acacia_wood" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_wood", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:cherry_wood" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_wood", - "state": { - "stripped_bit": false, - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:cherry_wood" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_wood", - "state": { - "stripped_bit": false, - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:cherry_wood" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_wood", - "state": { - "stripped_bit": false, - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:dark_oak_wood" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_wood", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:dark_oak_wood" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_wood", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:dark_oak_wood" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_wood", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:mangrove_wood" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_wood", - "state": { - "stripped_bit": false, - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:mangrove_wood" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_wood", - "state": { - "stripped_bit": false, - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:mangrove_wood" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_wood", - "state": { - "stripped_bit": false, - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_oak_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_oak_wood", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_oak_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_oak_wood", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_oak_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_oak_wood", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_spruce_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_spruce_wood", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_spruce_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_spruce_wood", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_spruce_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_spruce_wood", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_birch_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_birch_wood", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_birch_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_birch_wood", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_birch_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_birch_wood", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_jungle_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_jungle_wood", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_jungle_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_jungle_wood", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_jungle_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_jungle_wood", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_acacia_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_acacia_wood", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_acacia_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_acacia_wood", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_acacia_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_acacia_wood", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_cherry_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_cherry_wood", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_cherry_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_cherry_wood", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_cherry_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_cherry_wood", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_dark_oak_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_dark_oak_wood", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_dark_oak_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_dark_oak_wood", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_dark_oak_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_dark_oak_wood", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_mangrove_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_mangrove_wood", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_mangrove_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_mangrove_wood", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_mangrove_wood" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_mangrove_wood", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:spruce_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:birch_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "birch_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:jungle_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:acacia_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:cherry_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:dark_oak_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:mangrove_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "1" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "1" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "2" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "2" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "3" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "3" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "4" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "4" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "5" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "5" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "6" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "6" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "true", - "distance": "7" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": true, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "persistent": "false", - "distance": "7" - }, - "Name": "minecraft:flowering_azalea_leaves" - }, - "bedrock_state": { - "bedrock_identifier": "azalea_leaves_flowered", - "state": { - "persistent_bit": false, - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:sponge" - }, - "bedrock_state": { - "bedrock_identifier": "sponge", - "state": { - "sponge_type": "dry" - } - } - }, - { - "java_state": { - "Name": "minecraft:wet_sponge" - }, - "bedrock_state": { - "bedrock_identifier": "sponge", - "state": { - "sponge_type": "wet" - } - } - }, - { - "java_state": { - "Name": "minecraft:glass" - }, - "bedrock_state": { - "bedrock_identifier": "glass" - } - }, - { - "java_state": { - "Name": "minecraft:lapis_ore" - }, - "bedrock_state": { - "bedrock_identifier": "lapis_ore" - } - }, - { - "java_state": { - "Name": "minecraft:deepslate_lapis_ore" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_lapis_ore" - } - }, - { - "java_state": { - "Name": "minecraft:lapis_block" - }, - "bedrock_state": { - "bedrock_identifier": "lapis_block" - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "facing": "north" - }, - "Name": "minecraft:dispenser" - }, - "bedrock_state": { - "bedrock_identifier": "dispenser", - "state": { - "facing_direction": 2, - "triggered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "facing": "north" - }, - "Name": "minecraft:dispenser" - }, - "bedrock_state": { - "bedrock_identifier": "dispenser", - "state": { - "facing_direction": 2, - "triggered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "facing": "east" - }, - "Name": "minecraft:dispenser" - }, - "bedrock_state": { - "bedrock_identifier": "dispenser", - "state": { - "facing_direction": 5, - "triggered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "facing": "east" - }, - "Name": "minecraft:dispenser" - }, - "bedrock_state": { - "bedrock_identifier": "dispenser", - "state": { - "facing_direction": 5, - "triggered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "facing": "south" - }, - "Name": "minecraft:dispenser" - }, - "bedrock_state": { - "bedrock_identifier": "dispenser", - "state": { - "facing_direction": 3, - "triggered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "facing": "south" - }, - "Name": "minecraft:dispenser" - }, - "bedrock_state": { - "bedrock_identifier": "dispenser", - "state": { - "facing_direction": 3, - "triggered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "facing": "west" - }, - "Name": "minecraft:dispenser" - }, - "bedrock_state": { - "bedrock_identifier": "dispenser", - "state": { - "facing_direction": 4, - "triggered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "facing": "west" - }, - "Name": "minecraft:dispenser" - }, - "bedrock_state": { - "bedrock_identifier": "dispenser", - "state": { - "facing_direction": 4, - "triggered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "facing": "up" - }, - "Name": "minecraft:dispenser" - }, - "bedrock_state": { - "bedrock_identifier": "dispenser", - "state": { - "facing_direction": 1, - "triggered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "facing": "up" - }, - "Name": "minecraft:dispenser" - }, - "bedrock_state": { - "bedrock_identifier": "dispenser", - "state": { - "facing_direction": 1, - "triggered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "facing": "down" - }, - "Name": "minecraft:dispenser" - }, - "bedrock_state": { - "bedrock_identifier": "dispenser", - "state": { - "facing_direction": 0, - "triggered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "facing": "down" - }, - "Name": "minecraft:dispenser" - }, - "bedrock_state": { - "bedrock_identifier": "dispenser", - "state": { - "facing_direction": 0, - "triggered_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:sandstone" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone", - "state": { - "sand_stone_type": "default" - } - } - }, - { - "java_state": { - "Name": "minecraft:chiseled_sandstone" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone", - "state": { - "sand_stone_type": "heiroglyphs" - } - } - }, - { - "java_state": { - "Name": "minecraft:cut_sandstone" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone", - "state": { - "sand_stone_type": "cut" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "harp" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "basedrum" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "snare" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "hat" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "bass" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "flute" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "guitar" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "chime" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "iron_xylophone" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "cow_bell" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "didgeridoo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "bit" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "banjo" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "pling" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "zombie" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "creeper" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "dragon" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "wither_skeleton" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "piglin" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "0", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "0", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "1", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "1", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "2", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "2", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "3", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "3", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "4", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "4", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "5", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "5", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "6", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "6", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "7", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "7", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "8", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "8", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "9", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "9", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "10", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "10", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "11", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "11", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "12", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "12", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "13", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "13", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "14", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "14", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "15", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "15", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "16", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "16", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "17", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "17", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "18", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "18", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "19", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "19", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "20", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "20", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "21", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "21", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "22", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "22", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "23", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "23", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "note": "24", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "note": "24", - "instrument": "custom_head" - }, - "Name": "minecraft:note_block" - }, - "bedrock_state": { - "bedrock_identifier": "noteblock" - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:white_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:orange_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:magenta_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:light_blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:yellow_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:lime_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:pink_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:light_gray_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:cyan_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:purple_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:blue_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:brown_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:green_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:red_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "north" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "north" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "south" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "south" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "west" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "west" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "true", - "facing": "east" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "head", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": true, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "part": "foot", - "occupied": "false", - "facing": "east" - }, - "Name": "minecraft:black_bed" - }, - "bedrock_state": { - "bedrock_identifier": "bed", - "state": { - "head_piece_bit": false, - "occupied_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "north_south", - "powered": "true" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 0, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "north_south", - "powered": "true" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 0, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "east_west", - "powered": "true" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 1, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "east_west", - "powered": "true" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 1, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_east", - "powered": "true" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 2, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_east", - "powered": "true" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 2, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_west", - "powered": "true" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 3, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_west", - "powered": "true" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 3, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_north", - "powered": "true" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 4, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_north", - "powered": "true" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 4, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_south", - "powered": "true" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 5, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_south", - "powered": "true" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 5, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "north_south", - "powered": "false" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 0, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "north_south", - "powered": "false" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 0, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "east_west", - "powered": "false" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 1, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "east_west", - "powered": "false" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 1, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_east", - "powered": "false" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 2, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_east", - "powered": "false" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 2, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_west", - "powered": "false" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 3, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_west", - "powered": "false" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 3, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_north", - "powered": "false" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 4, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_north", - "powered": "false" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 4, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_south", - "powered": "false" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 5, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_south", - "powered": "false" - }, - "Name": "minecraft:powered_rail" - }, - "bedrock_state": { - "bedrock_identifier": "golden_rail", - "state": { - "rail_direction": 5, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "north_south", - "powered": "true" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 0, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "north_south", - "powered": "true" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 0, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "east_west", - "powered": "true" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 1, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "east_west", - "powered": "true" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 1, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_east", - "powered": "true" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 2, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_east", - "powered": "true" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 2, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_west", - "powered": "true" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 3, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_west", - "powered": "true" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 3, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_north", - "powered": "true" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 4, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_north", - "powered": "true" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 4, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_south", - "powered": "true" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 5, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_south", - "powered": "true" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 5, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "north_south", - "powered": "false" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 0, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "north_south", - "powered": "false" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 0, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "east_west", - "powered": "false" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 1, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "east_west", - "powered": "false" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 1, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_east", - "powered": "false" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 2, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_east", - "powered": "false" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 2, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_west", - "powered": "false" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 3, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_west", - "powered": "false" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 3, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_north", - "powered": "false" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 4, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_north", - "powered": "false" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 4, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_south", - "powered": "false" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 5, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_south", - "powered": "false" - }, - "Name": "minecraft:detector_rail" - }, - "bedrock_state": { - "bedrock_identifier": "detector_rail", - "state": { - "rail_direction": 5, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "extended": "true" - }, - "Name": "minecraft:sticky_piston" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "extended": "true" - }, - "Name": "minecraft:sticky_piston" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "extended": "true" - }, - "Name": "minecraft:sticky_piston" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "extended": "true" - }, - "Name": "minecraft:sticky_piston" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "up", - "extended": "true" - }, - "Name": "minecraft:sticky_piston" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "down", - "extended": "true" - }, - "Name": "minecraft:sticky_piston" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston", - "state": { - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "extended": "false" - }, - "Name": "minecraft:sticky_piston" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "extended": "false" - }, - "Name": "minecraft:sticky_piston" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "extended": "false" - }, - "Name": "minecraft:sticky_piston" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "extended": "false" - }, - "Name": "minecraft:sticky_piston" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "up", - "extended": "false" - }, - "Name": "minecraft:sticky_piston" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "down", - "extended": "false" - }, - "Name": "minecraft:sticky_piston" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston", - "state": { - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Name": "minecraft:cobweb" - }, - "bedrock_state": { - "bedrock_identifier": "web" - } - }, - { - "java_state": { - "Name": "minecraft:short_grass" - }, - "bedrock_state": { - "bedrock_identifier": "short_grass" - } - }, - { - "java_state": { - "Name": "minecraft:fern" - }, - "bedrock_state": { - "bedrock_identifier": "fern" - } - }, - { - "java_state": { - "Name": "minecraft:dead_bush" - }, - "bedrock_state": { - "bedrock_identifier": "deadbush" - } - }, - { - "java_state": { - "Name": "minecraft:seagrass" - }, - "bedrock_state": { - "bedrock_identifier": "seagrass", - "state": { - "sea_grass_type": "default" - } - } - }, - { - "java_state": { - "Properties": { - "half": "upper" - }, - "Name": "minecraft:tall_seagrass" - }, - "bedrock_state": { - "bedrock_identifier": "seagrass", - "state": { - "sea_grass_type": "double_top" - } - } - }, - { - "java_state": { - "Properties": { - "half": "lower" - }, - "Name": "minecraft:tall_seagrass" - }, - "bedrock_state": { - "bedrock_identifier": "seagrass", - "state": { - "sea_grass_type": "double_bot" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "extended": "true" - }, - "Name": "minecraft:piston" - }, - "bedrock_state": { - "bedrock_identifier": "piston", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "extended": "true" - }, - "Name": "minecraft:piston" - }, - "bedrock_state": { - "bedrock_identifier": "piston", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "extended": "true" - }, - "Name": "minecraft:piston" - }, - "bedrock_state": { - "bedrock_identifier": "piston", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "extended": "true" - }, - "Name": "minecraft:piston" - }, - "bedrock_state": { - "bedrock_identifier": "piston", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "up", - "extended": "true" - }, - "Name": "minecraft:piston" - }, - "bedrock_state": { - "bedrock_identifier": "piston", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "down", - "extended": "true" - }, - "Name": "minecraft:piston" - }, - "bedrock_state": { - "bedrock_identifier": "piston", - "state": { - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "extended": "false" - }, - "Name": "minecraft:piston" - }, - "bedrock_state": { - "bedrock_identifier": "piston", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "extended": "false" - }, - "Name": "minecraft:piston" - }, - "bedrock_state": { - "bedrock_identifier": "piston", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "extended": "false" - }, - "Name": "minecraft:piston" - }, - "bedrock_state": { - "bedrock_identifier": "piston", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "extended": "false" - }, - "Name": "minecraft:piston" - }, - "bedrock_state": { - "bedrock_identifier": "piston", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "up", - "extended": "false" - }, - "Name": "minecraft:piston" - }, - "bedrock_state": { - "bedrock_identifier": "piston", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "down", - "extended": "false" - }, - "Name": "minecraft:piston" - }, - "bedrock_state": { - "bedrock_identifier": "piston", - "state": { - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "short": "true", - "facing": "north" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "piston_arm_collision", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "short": "true", - "facing": "north" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston_arm_collision", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "short": "false", - "facing": "north" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "piston_arm_collision", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "short": "false", - "facing": "north" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston_arm_collision", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "short": "true", - "facing": "east" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "piston_arm_collision", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "short": "true", - "facing": "east" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston_arm_collision", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "short": "false", - "facing": "east" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "piston_arm_collision", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "short": "false", - "facing": "east" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston_arm_collision", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "short": "true", - "facing": "south" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "piston_arm_collision", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "short": "true", - "facing": "south" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston_arm_collision", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "short": "false", - "facing": "south" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "piston_arm_collision", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "short": "false", - "facing": "south" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston_arm_collision", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "short": "true", - "facing": "west" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "piston_arm_collision", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "short": "true", - "facing": "west" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston_arm_collision", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "short": "false", - "facing": "west" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "piston_arm_collision", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "short": "false", - "facing": "west" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston_arm_collision", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "short": "true", - "facing": "up" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "piston_arm_collision", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "short": "true", - "facing": "up" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston_arm_collision", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "short": "false", - "facing": "up" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "piston_arm_collision", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "short": "false", - "facing": "up" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston_arm_collision", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "short": "true", - "facing": "down" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "piston_arm_collision", - "state": { - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "short": "true", - "facing": "down" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston_arm_collision", - "state": { - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "short": "false", - "facing": "down" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "piston_arm_collision", - "state": { - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "short": "false", - "facing": "down" - }, - "Name": "minecraft:piston_head" - }, - "bedrock_state": { - "bedrock_identifier": "sticky_piston_arm_collision", - "state": { - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Name": "minecraft:white_wool" - }, - "bedrock_state": { - "bedrock_identifier": "white_wool" - } - }, - { - "java_state": { - "Name": "minecraft:orange_wool" - }, - "bedrock_state": { - "bedrock_identifier": "orange_wool" - } - }, - { - "java_state": { - "Name": "minecraft:magenta_wool" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_wool" - } - }, - { - "java_state": { - "Name": "minecraft:light_blue_wool" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_wool" - } - }, - { - "java_state": { - "Name": "minecraft:yellow_wool" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_wool" - } - }, - { - "java_state": { - "Name": "minecraft:lime_wool" - }, - "bedrock_state": { - "bedrock_identifier": "lime_wool" - } - }, - { - "java_state": { - "Name": "minecraft:pink_wool" - }, - "bedrock_state": { - "bedrock_identifier": "pink_wool" - } - }, - { - "java_state": { - "Name": "minecraft:gray_wool" - }, - "bedrock_state": { - "bedrock_identifier": "gray_wool" - } - }, - { - "java_state": { - "Name": "minecraft:light_gray_wool" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_wool" - } - }, - { - "java_state": { - "Name": "minecraft:cyan_wool" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_wool" - } - }, - { - "java_state": { - "Name": "minecraft:purple_wool" - }, - "bedrock_state": { - "bedrock_identifier": "purple_wool" - } - }, - { - "java_state": { - "Name": "minecraft:blue_wool" - }, - "bedrock_state": { - "bedrock_identifier": "blue_wool" - } - }, - { - "java_state": { - "Name": "minecraft:brown_wool" - }, - "bedrock_state": { - "bedrock_identifier": "brown_wool" - } - }, - { - "java_state": { - "Name": "minecraft:green_wool" - }, - "bedrock_state": { - "bedrock_identifier": "green_wool" - } - }, - { - "java_state": { - "Name": "minecraft:red_wool" - }, - "bedrock_state": { - "bedrock_identifier": "red_wool" - } - }, - { - "java_state": { - "Name": "minecraft:black_wool" - }, - "bedrock_state": { - "bedrock_identifier": "black_wool" - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "facing": "north" - }, - "Name": "minecraft:moving_piston" - }, - "bedrock_state": { - "bedrock_identifier": "moving_block" - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "facing": "north" - }, - "Name": "minecraft:moving_piston" - }, - "bedrock_state": { - "bedrock_identifier": "moving_block" - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "facing": "east" - }, - "Name": "minecraft:moving_piston" - }, - "bedrock_state": { - "bedrock_identifier": "moving_block" - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "facing": "east" - }, - "Name": "minecraft:moving_piston" - }, - "bedrock_state": { - "bedrock_identifier": "moving_block" - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "facing": "south" - }, - "Name": "minecraft:moving_piston" - }, - "bedrock_state": { - "bedrock_identifier": "moving_block" - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "facing": "south" - }, - "Name": "minecraft:moving_piston" - }, - "bedrock_state": { - "bedrock_identifier": "moving_block" - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "facing": "west" - }, - "Name": "minecraft:moving_piston" - }, - "bedrock_state": { - "bedrock_identifier": "moving_block" - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "facing": "west" - }, - "Name": "minecraft:moving_piston" - }, - "bedrock_state": { - "bedrock_identifier": "moving_block" - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "facing": "up" - }, - "Name": "minecraft:moving_piston" - }, - "bedrock_state": { - "bedrock_identifier": "moving_block" - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "facing": "up" - }, - "Name": "minecraft:moving_piston" - }, - "bedrock_state": { - "bedrock_identifier": "moving_block" - } - }, - { - "java_state": { - "Properties": { - "type": "normal", - "facing": "down" - }, - "Name": "minecraft:moving_piston" - }, - "bedrock_state": { - "bedrock_identifier": "moving_block" - } - }, - { - "java_state": { - "Properties": { - "type": "sticky", - "facing": "down" - }, - "Name": "minecraft:moving_piston" - }, - "bedrock_state": { - "bedrock_identifier": "moving_block" - } - }, - { - "java_state": { - "Name": "minecraft:dandelion" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_flower" - } - }, - { - "java_state": { - "Name": "minecraft:torchflower" - }, - "bedrock_state": { - "bedrock_identifier": "torchflower" - } - }, - { - "java_state": { - "Name": "minecraft:poppy" - }, - "bedrock_state": { - "bedrock_identifier": "poppy" - } - }, - { - "java_state": { - "Name": "minecraft:blue_orchid" - }, - "bedrock_state": { - "bedrock_identifier": "blue_orchid" - } - }, - { - "java_state": { - "Name": "minecraft:allium" - }, - "bedrock_state": { - "bedrock_identifier": "allium" - } - }, - { - "java_state": { - "Name": "minecraft:azure_bluet" - }, - "bedrock_state": { - "bedrock_identifier": "azure_bluet" - } - }, - { - "java_state": { - "Name": "minecraft:red_tulip" - }, - "bedrock_state": { - "bedrock_identifier": "red_tulip" - } - }, - { - "java_state": { - "Name": "minecraft:orange_tulip" - }, - "bedrock_state": { - "bedrock_identifier": "orange_tulip" - } - }, - { - "java_state": { - "Name": "minecraft:white_tulip" - }, - "bedrock_state": { - "bedrock_identifier": "white_tulip" - } - }, - { - "java_state": { - "Name": "minecraft:pink_tulip" - }, - "bedrock_state": { - "bedrock_identifier": "pink_tulip" - } - }, - { - "java_state": { - "Name": "minecraft:oxeye_daisy" - }, - "bedrock_state": { - "bedrock_identifier": "oxeye_daisy" - } - }, - { - "java_state": { - "Name": "minecraft:cornflower" - }, - "bedrock_state": { - "bedrock_identifier": "cornflower" - } - }, - { - "java_state": { - "Name": "minecraft:wither_rose" - }, - "bedrock_state": { - "bedrock_identifier": "wither_rose" - } - }, - { - "java_state": { - "Name": "minecraft:lily_of_the_valley" - }, - "bedrock_state": { - "bedrock_identifier": "lily_of_the_valley" - } - }, - { - "java_state": { - "Name": "minecraft:brown_mushroom" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom" - } - }, - { - "java_state": { - "Name": "minecraft:red_mushroom" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom" - } - }, - { - "java_state": { - "Name": "minecraft:gold_block" - }, - "bedrock_state": { - "bedrock_identifier": "gold_block" - } - }, - { - "java_state": { - "Name": "minecraft:iron_block" - }, - "bedrock_state": { - "bedrock_identifier": "iron_block" - } - }, - { - "java_state": { - "Name": "minecraft:bricks" - }, - "bedrock_state": { - "bedrock_identifier": "brick_block" - } - }, - { - "java_state": { - "Properties": { - "unstable": "true" - }, - "Name": "minecraft:tnt" - }, - "bedrock_state": { - "bedrock_identifier": "tnt", - "state": { - "explode_bit": false, - "allow_underwater_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "unstable": "false" - }, - "Name": "minecraft:tnt" - }, - "bedrock_state": { - "bedrock_identifier": "tnt", - "state": { - "explode_bit": false, - "allow_underwater_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "bookshelf" - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 63, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 31, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 47, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 15, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 55, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 23, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 39, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 7, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 59, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 27, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 43, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 11, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 51, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 19, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 35, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 3, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 61, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 29, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 45, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 13, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 53, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 21, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 37, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 5, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 57, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 25, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 41, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 9, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 49, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 17, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 33, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 1, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 62, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 30, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 46, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 14, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 54, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 22, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 38, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 6, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 58, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 26, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 42, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 10, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 50, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 18, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 34, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 2, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 60, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 28, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 44, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 12, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 52, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 20, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 36, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 4, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 56, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 24, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 40, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 8, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 48, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 16, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 32, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "north" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 0, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 63, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 31, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 47, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 15, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 55, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 23, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 39, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 7, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 59, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 27, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 43, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 11, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 51, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 19, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 35, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 3, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 61, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 29, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 45, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 13, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 53, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 21, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 37, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 5, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 57, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 25, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 41, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 9, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 49, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 17, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 33, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 1, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 62, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 30, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 46, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 14, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 54, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 22, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 38, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 6, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 58, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 26, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 42, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 10, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 50, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 18, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 34, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 2, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 60, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 28, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 44, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 12, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 52, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 20, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 36, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 4, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 56, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 24, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 40, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 8, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 48, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 16, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 32, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "south" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 0, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 63, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 31, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 47, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 15, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 55, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 23, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 39, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 7, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 59, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 27, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 43, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 11, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 51, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 19, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 35, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 3, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 61, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 29, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 45, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 13, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 53, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 21, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 37, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 5, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 57, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 25, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 41, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 9, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 49, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 17, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 33, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 1, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 62, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 30, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 46, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 14, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 54, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 22, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 38, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 6, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 58, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 26, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 42, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 10, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 50, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 18, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 34, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 2, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 60, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 28, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 44, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 12, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 52, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 20, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 36, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 4, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 56, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 24, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 40, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 8, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 48, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 16, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 32, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "west" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 0, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 63, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 31, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 47, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 15, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 55, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 23, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 39, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 7, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 59, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 27, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 43, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 11, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 51, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 19, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 35, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 3, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 61, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 29, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 45, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 13, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 53, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 21, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 37, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 5, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 57, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 25, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 41, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 9, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 49, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 17, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 33, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "true", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 1, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 62, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 30, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 46, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 14, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 54, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 22, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 38, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 6, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 58, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 26, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 42, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 10, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 50, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 18, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 34, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "true", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 2, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 60, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 28, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 44, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 12, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 52, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 20, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 36, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "true", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 4, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 56, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 24, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 40, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "true", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 8, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 48, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "true", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 16, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "true", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 32, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "slot_5_occupied": "false", - "slot_4_occupied": "false", - "slot_3_occupied": "false", - "slot_2_occupied": "false", - "slot_1_occupied": "false", - "slot_0_occupied": "false", - "facing": "east" - }, - "Name": "minecraft:chiseled_bookshelf" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_bookshelf", - "state": { - "books_stored": 0, - "direction": 3 - } - } - }, - { - "java_state": { - "Name": "minecraft:mossy_cobblestone" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone" - } - }, - { - "java_state": { - "Name": "minecraft:obsidian" - }, - "bedrock_state": { - "bedrock_identifier": "obsidian" - } - }, - { - "java_state": { - "Name": "minecraft:torch" - }, - "bedrock_state": { - "bedrock_identifier": "torch", - "state": { - "torch_facing_direction": "top" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "torch", - "state": { - "torch_facing_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "torch", - "state": { - "torch_facing_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "torch", - "state": { - "torch_facing_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "torch", - "state": { - "torch_facing_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "0" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "1" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "2" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "3" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "4" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "5" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "6" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "7" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "8" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "9" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "10" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "11" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "12" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "13" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "14" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "age": "15" - }, - "Name": "minecraft:fire" - }, - "bedrock_state": { - "bedrock_identifier": "fire", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Name": "minecraft:soul_fire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_fire", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Name": "minecraft:spawner" - }, - "bedrock_state": { - "bedrock_identifier": "mob_spawner" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "single", - "facing": "north" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "single", - "facing": "north" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "left", - "facing": "north" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "left", - "facing": "north" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "right", - "facing": "north" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "right", - "facing": "north" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "single", - "facing": "south" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "single", - "facing": "south" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "left", - "facing": "south" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "left", - "facing": "south" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "right", - "facing": "south" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "right", - "facing": "south" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "single", - "facing": "west" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "single", - "facing": "west" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "left", - "facing": "west" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "left", - "facing": "west" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "right", - "facing": "west" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "right", - "facing": "west" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "single", - "facing": "east" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "single", - "facing": "east" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "left", - "facing": "east" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "left", - "facing": "east" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "right", - "facing": "east" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "right", - "facing": "east" - }, - "Name": "minecraft:chest" - }, - "bedrock_state": { - "bedrock_identifier": "chest", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "0", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "0", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "0", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "0", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "0", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "0", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "0", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "0", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "0", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "1", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "1", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "1", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "1", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "1", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "1", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "1", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "1", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "1", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "2", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "2", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "2", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "2", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "2", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "2", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "2", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "2", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "2", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "3", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "3", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "3", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "3", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "3", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "3", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "3", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "3", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "3", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "4", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "4", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "4", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "4", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "4", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "4", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "4", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "4", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "4", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "5", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "5", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "5", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "5", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "5", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "5", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "5", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "5", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "5", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "6", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "6", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "6", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "6", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "6", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "6", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "6", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "6", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "6", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "7", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "7", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "7", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "7", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "7", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "7", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "7", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "7", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "7", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "8", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "8", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "8", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "8", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "8", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "8", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "8", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "8", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "8", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "9", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "9", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "9", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "9", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "9", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "9", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "9", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "9", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "9", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "10", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "10", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "10", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "10", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "10", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "10", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "10", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "10", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "10", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "11", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "11", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "11", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "11", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "11", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "11", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "11", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "11", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "11", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "12", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "12", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "12", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "12", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "12", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "12", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "12", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "12", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "12", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "13", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "13", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "13", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "13", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "13", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "13", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "13", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "13", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "13", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "14", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "14", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "14", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "14", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "14", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "14", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "14", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "14", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "14", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "15", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "15", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "15", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "15", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "15", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "15", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "15", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "15", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "15", - "north": "up", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "0", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "0", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "0", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "0", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "0", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "0", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "0", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "0", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "0", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "1", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "1", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "1", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "1", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "1", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "1", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "1", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "1", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "1", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "2", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "2", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "2", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "2", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "2", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "2", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "2", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "2", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "2", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "3", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "3", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "3", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "3", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "3", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "3", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "3", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "3", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "3", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "4", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "4", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "4", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "4", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "4", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "4", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "4", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "4", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "4", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "5", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "5", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "5", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "5", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "5", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "5", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "5", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "5", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "5", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "6", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "6", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "6", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "6", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "6", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "6", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "6", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "6", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "6", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "7", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "7", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "7", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "7", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "7", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "7", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "7", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "7", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "7", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "8", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "8", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "8", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "8", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "8", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "8", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "8", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "8", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "8", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "9", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "9", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "9", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "9", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "9", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "9", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "9", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "9", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "9", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "10", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "10", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "10", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "10", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "10", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "10", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "10", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "10", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "10", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "11", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "11", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "11", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "11", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "11", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "11", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "11", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "11", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "11", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "12", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "12", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "12", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "12", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "12", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "12", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "12", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "12", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "12", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "13", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "13", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "13", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "13", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "13", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "13", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "13", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "13", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "13", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "14", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "14", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "14", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "14", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "14", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "14", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "14", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "14", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "14", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "15", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "15", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "15", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "15", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "15", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "15", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "15", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "15", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "15", - "north": "side", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "0", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "0", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "0", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "0", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "0", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "0", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "0", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "0", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "0", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "1", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "1", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "1", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "1", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "1", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "1", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "1", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "1", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "1", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "2", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "2", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "2", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "2", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "2", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "2", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "2", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "2", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "2", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "3", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "3", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "3", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "3", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "3", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "3", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "3", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "3", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "3", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "4", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "4", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "4", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "4", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "4", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "4", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "4", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "4", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "4", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "5", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "5", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "5", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "5", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "5", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "5", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "5", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "5", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "5", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "6", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "6", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "6", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "6", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "6", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "6", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "6", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "6", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "6", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "7", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "7", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "7", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "7", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "7", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "7", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "7", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "7", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "7", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "8", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "8", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "8", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "8", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "8", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "8", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "8", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "8", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "8", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "9", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "9", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "9", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "9", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "9", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "9", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "9", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "9", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "9", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "10", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "10", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "10", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "10", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "10", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "10", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "10", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "10", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "10", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "11", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "11", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "11", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "11", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "11", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "11", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "11", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "11", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "11", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "12", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "12", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "12", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "12", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "12", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "12", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "12", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "12", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "12", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "13", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "13", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "13", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "13", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "13", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "13", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "13", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "13", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "13", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "14", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "14", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "14", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "14", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "14", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "14", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "14", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "14", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "14", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "15", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "15", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "15", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "15", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "15", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "15", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "15", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "15", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "15", - "north": "none", - "east": "up" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "0", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "0", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "0", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "0", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "0", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "0", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "0", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "0", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "0", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "1", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "1", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "1", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "1", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "1", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "1", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "1", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "1", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "1", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "2", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "2", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "2", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "2", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "2", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "2", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "2", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "2", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "2", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "3", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "3", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "3", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "3", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "3", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "3", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "3", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "3", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "3", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "4", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "4", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "4", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "4", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "4", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "4", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "4", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "4", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "4", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "5", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "5", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "5", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "5", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "5", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "5", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "5", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "5", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "5", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "6", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "6", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "6", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "6", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "6", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "6", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "6", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "6", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "6", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "7", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "7", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "7", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "7", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "7", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "7", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "7", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "7", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "7", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "8", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "8", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "8", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "8", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "8", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "8", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "8", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "8", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "8", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "9", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "9", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "9", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "9", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "9", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "9", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "9", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "9", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "9", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "10", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "10", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "10", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "10", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "10", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "10", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "10", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "10", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "10", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "11", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "11", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "11", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "11", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "11", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "11", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "11", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "11", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "11", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "12", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "12", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "12", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "12", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "12", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "12", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "12", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "12", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "12", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "13", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "13", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "13", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "13", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "13", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "13", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "13", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "13", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "13", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "14", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "14", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "14", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "14", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "14", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "14", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "14", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "14", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "14", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "15", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "15", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "15", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "15", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "15", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "15", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "15", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "15", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "15", - "north": "up", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "0", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "0", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "0", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "0", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "0", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "0", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "0", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "0", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "0", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "1", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "1", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "1", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "1", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "1", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "1", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "1", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "1", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "1", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "2", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "2", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "2", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "2", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "2", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "2", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "2", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "2", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "2", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "3", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "3", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "3", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "3", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "3", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "3", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "3", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "3", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "3", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "4", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "4", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "4", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "4", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "4", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "4", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "4", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "4", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "4", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "5", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "5", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "5", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "5", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "5", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "5", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "5", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "5", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "5", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "6", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "6", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "6", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "6", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "6", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "6", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "6", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "6", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "6", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "7", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "7", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "7", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "7", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "7", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "7", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "7", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "7", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "7", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "8", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "8", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "8", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "8", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "8", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "8", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "8", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "8", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "8", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "9", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "9", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "9", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "9", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "9", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "9", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "9", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "9", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "9", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "10", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "10", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "10", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "10", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "10", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "10", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "10", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "10", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "10", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "11", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "11", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "11", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "11", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "11", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "11", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "11", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "11", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "11", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "12", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "12", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "12", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "12", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "12", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "12", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "12", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "12", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "12", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "13", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "13", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "13", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "13", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "13", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "13", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "13", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "13", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "13", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "14", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "14", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "14", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "14", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "14", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "14", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "14", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "14", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "14", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "15", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "15", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "15", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "15", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "15", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "15", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "15", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "15", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "15", - "north": "side", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "0", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "0", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "0", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "0", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "0", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "0", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "0", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "0", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "0", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "1", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "1", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "1", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "1", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "1", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "1", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "1", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "1", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "1", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "2", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "2", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "2", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "2", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "2", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "2", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "2", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "2", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "2", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "3", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "3", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "3", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "3", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "3", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "3", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "3", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "3", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "3", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "4", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "4", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "4", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "4", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "4", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "4", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "4", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "4", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "4", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "5", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "5", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "5", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "5", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "5", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "5", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "5", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "5", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "5", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "6", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "6", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "6", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "6", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "6", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "6", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "6", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "6", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "6", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "7", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "7", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "7", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "7", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "7", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "7", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "7", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "7", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "7", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "8", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "8", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "8", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "8", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "8", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "8", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "8", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "8", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "8", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "9", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "9", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "9", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "9", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "9", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "9", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "9", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "9", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "9", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "10", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "10", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "10", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "10", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "10", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "10", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "10", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "10", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "10", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "11", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "11", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "11", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "11", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "11", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "11", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "11", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "11", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "11", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "12", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "12", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "12", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "12", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "12", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "12", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "12", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "12", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "12", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "13", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "13", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "13", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "13", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "13", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "13", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "13", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "13", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "13", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "14", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "14", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "14", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "14", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "14", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "14", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "14", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "14", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "14", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "15", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "15", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "15", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "15", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "15", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "15", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "15", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "15", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "15", - "north": "none", - "east": "side" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "0", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "0", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "0", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "0", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "0", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "0", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "0", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "0", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "0", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "1", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "1", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "1", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "1", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "1", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "1", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "1", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "1", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "1", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "2", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "2", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "2", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "2", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "2", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "2", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "2", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "2", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "2", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "3", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "3", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "3", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "3", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "3", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "3", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "3", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "3", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "3", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "4", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "4", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "4", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "4", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "4", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "4", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "4", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "4", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "4", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "5", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "5", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "5", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "5", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "5", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "5", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "5", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "5", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "5", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "6", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "6", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "6", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "6", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "6", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "6", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "6", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "6", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "6", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "7", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "7", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "7", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "7", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "7", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "7", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "7", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "7", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "7", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "8", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "8", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "8", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "8", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "8", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "8", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "8", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "8", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "8", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "9", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "9", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "9", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "9", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "9", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "9", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "9", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "9", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "9", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "10", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "10", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "10", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "10", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "10", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "10", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "10", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "10", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "10", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "11", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "11", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "11", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "11", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "11", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "11", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "11", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "11", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "11", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "12", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "12", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "12", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "12", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "12", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "12", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "12", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "12", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "12", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "13", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "13", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "13", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "13", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "13", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "13", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "13", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "13", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "13", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "14", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "14", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "14", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "14", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "14", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "14", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "14", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "14", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "14", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "15", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "15", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "15", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "15", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "15", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "15", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "15", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "15", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "15", - "north": "up", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "0", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "0", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "0", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "0", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "0", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "0", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "0", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "0", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "0", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "1", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "1", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "1", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "1", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "1", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "1", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "1", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "1", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "1", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "2", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "2", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "2", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "2", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "2", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "2", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "2", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "2", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "2", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "3", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "3", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "3", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "3", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "3", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "3", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "3", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "3", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "3", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "4", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "4", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "4", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "4", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "4", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "4", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "4", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "4", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "4", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "5", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "5", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "5", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "5", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "5", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "5", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "5", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "5", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "5", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "6", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "6", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "6", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "6", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "6", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "6", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "6", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "6", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "6", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "7", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "7", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "7", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "7", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "7", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "7", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "7", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "7", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "7", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "8", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "8", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "8", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "8", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "8", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "8", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "8", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "8", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "8", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "9", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "9", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "9", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "9", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "9", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "9", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "9", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "9", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "9", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "10", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "10", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "10", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "10", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "10", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "10", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "10", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "10", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "10", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "11", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "11", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "11", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "11", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "11", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "11", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "11", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "11", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "11", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "12", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "12", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "12", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "12", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "12", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "12", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "12", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "12", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "12", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "13", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "13", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "13", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "13", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "13", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "13", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "13", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "13", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "13", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "14", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "14", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "14", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "14", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "14", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "14", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "14", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "14", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "14", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "15", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "15", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "15", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "15", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "15", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "15", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "15", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "15", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "15", - "north": "side", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "0", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "0", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "0", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "0", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "0", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "0", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "0", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "0", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "0", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "1", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "1", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "1", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "1", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "1", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "1", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "1", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "1", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "1", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "2", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "2", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "2", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "2", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "2", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "2", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "2", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "2", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "2", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "3", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "3", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "3", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "3", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "3", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "3", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "3", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "3", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "3", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "4", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "4", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "4", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "4", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "4", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "4", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "4", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "4", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "4", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "5", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "5", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "5", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "5", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "5", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "5", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "5", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "5", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "5", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "6", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "6", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "6", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "6", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "6", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "6", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "6", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "6", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "6", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "7", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "7", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "7", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "7", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "7", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "7", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "7", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "7", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "7", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "8", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "8", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "8", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "8", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "8", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "8", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "8", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "8", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "8", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "9", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "9", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "9", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "9", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "9", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "9", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "9", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "9", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "9", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "10", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "10", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "10", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "10", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "10", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "10", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "10", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "10", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "10", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "11", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "11", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "11", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "11", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "11", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "11", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "11", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "11", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "11", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "12", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "12", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "12", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "12", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "12", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "12", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "12", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "12", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "12", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "13", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "13", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "13", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "13", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "13", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "13", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "13", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "13", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "13", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "14", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "14", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "14", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "14", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "14", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "14", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "14", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "14", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "14", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "up", - "power": "15", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "up", - "power": "15", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "up", - "power": "15", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "side", - "power": "15", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "side", - "power": "15", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "side", - "power": "15", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "up", - "south": "none", - "power": "15", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "side", - "south": "none", - "power": "15", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "south": "none", - "power": "15", - "north": "none", - "east": "none" - }, - "Name": "minecraft:redstone_wire" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_wire", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Name": "minecraft:diamond_ore" - }, - "bedrock_state": { - "bedrock_identifier": "diamond_ore" - } - }, - { - "java_state": { - "Name": "minecraft:deepslate_diamond_ore" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_diamond_ore" - } - }, - { - "java_state": { - "Name": "minecraft:diamond_block" - }, - "bedrock_state": { - "bedrock_identifier": "diamond_block" - } - }, - { - "java_state": { - "Name": "minecraft:crafting_table" - }, - "bedrock_state": { - "bedrock_identifier": "crafting_table" - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:wheat" - }, - "bedrock_state": { - "bedrock_identifier": "wheat", - "state": { - "growth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:wheat" - }, - "bedrock_state": { - "bedrock_identifier": "wheat", - "state": { - "growth": 1 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:wheat" - }, - "bedrock_state": { - "bedrock_identifier": "wheat", - "state": { - "growth": 2 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:wheat" - }, - "bedrock_state": { - "bedrock_identifier": "wheat", - "state": { - "growth": 3 - } - } - }, - { - "java_state": { - "Properties": { - "age": "4" - }, - "Name": "minecraft:wheat" - }, - "bedrock_state": { - "bedrock_identifier": "wheat", - "state": { - "growth": 4 - } - } - }, - { - "java_state": { - "Properties": { - "age": "5" - }, - "Name": "minecraft:wheat" - }, - "bedrock_state": { - "bedrock_identifier": "wheat", - "state": { - "growth": 5 - } - } - }, - { - "java_state": { - "Properties": { - "age": "6" - }, - "Name": "minecraft:wheat" - }, - "bedrock_state": { - "bedrock_identifier": "wheat", - "state": { - "growth": 6 - } - } - }, - { - "java_state": { - "Properties": { - "age": "7" - }, - "Name": "minecraft:wheat" - }, - "bedrock_state": { - "bedrock_identifier": "wheat", - "state": { - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "moisture": "0" - }, - "Name": "minecraft:farmland" - }, - "bedrock_state": { - "bedrock_identifier": "farmland", - "state": { - "moisturized_amount": 0 - } - } - }, - { - "java_state": { - "Properties": { - "moisture": "1" - }, - "Name": "minecraft:farmland" - }, - "bedrock_state": { - "bedrock_identifier": "farmland", - "state": { - "moisturized_amount": 1 - } - } - }, - { - "java_state": { - "Properties": { - "moisture": "2" - }, - "Name": "minecraft:farmland" - }, - "bedrock_state": { - "bedrock_identifier": "farmland", - "state": { - "moisturized_amount": 2 - } - } - }, - { - "java_state": { - "Properties": { - "moisture": "3" - }, - "Name": "minecraft:farmland" - }, - "bedrock_state": { - "bedrock_identifier": "farmland", - "state": { - "moisturized_amount": 3 - } - } - }, - { - "java_state": { - "Properties": { - "moisture": "4" - }, - "Name": "minecraft:farmland" - }, - "bedrock_state": { - "bedrock_identifier": "farmland", - "state": { - "moisturized_amount": 4 - } - } - }, - { - "java_state": { - "Properties": { - "moisture": "5" - }, - "Name": "minecraft:farmland" - }, - "bedrock_state": { - "bedrock_identifier": "farmland", - "state": { - "moisturized_amount": 5 - } - } - }, - { - "java_state": { - "Properties": { - "moisture": "6" - }, - "Name": "minecraft:farmland" - }, - "bedrock_state": { - "bedrock_identifier": "farmland", - "state": { - "moisturized_amount": 6 - } - } - }, - { - "java_state": { - "Properties": { - "moisture": "7" - }, - "Name": "minecraft:farmland" - }, - "bedrock_state": { - "bedrock_identifier": "farmland", - "state": { - "moisturized_amount": 7 - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "north" - }, - "Name": "minecraft:furnace" - }, - "bedrock_state": { - "bedrock_identifier": "lit_furnace", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "north" - }, - "Name": "minecraft:furnace" - }, - "bedrock_state": { - "bedrock_identifier": "furnace", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "south" - }, - "Name": "minecraft:furnace" - }, - "bedrock_state": { - "bedrock_identifier": "lit_furnace", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "south" - }, - "Name": "minecraft:furnace" - }, - "bedrock_state": { - "bedrock_identifier": "furnace", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "west" - }, - "Name": "minecraft:furnace" - }, - "bedrock_state": { - "bedrock_identifier": "lit_furnace", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "west" - }, - "Name": "minecraft:furnace" - }, - "bedrock_state": { - "bedrock_identifier": "furnace", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "east" - }, - "Name": "minecraft:furnace" - }, - "bedrock_state": { - "bedrock_identifier": "lit_furnace", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "east" - }, - "Name": "minecraft:furnace" - }, - "bedrock_state": { - "bedrock_identifier": "furnace", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15" - }, - "Name": "minecraft:oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15" - }, - "Name": "minecraft:spruce_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15" - }, - "Name": "minecraft:birch_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15" - }, - "Name": "minecraft:acacia_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15" - }, - "Name": "minecraft:cherry_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15" - }, - "Name": "minecraft:jungle_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15" - }, - "Name": "minecraft:dark_oak_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15" - }, - "Name": "minecraft:mangrove_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15" - }, - "Name": "minecraft:bamboo_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:ladder" - }, - "bedrock_state": { - "bedrock_identifier": "ladder", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:ladder" - }, - "bedrock_state": { - "bedrock_identifier": "ladder", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:ladder" - }, - "bedrock_state": { - "bedrock_identifier": "ladder", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:ladder" - }, - "bedrock_state": { - "bedrock_identifier": "ladder", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:ladder" - }, - "bedrock_state": { - "bedrock_identifier": "ladder", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:ladder" - }, - "bedrock_state": { - "bedrock_identifier": "ladder", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:ladder" - }, - "bedrock_state": { - "bedrock_identifier": "ladder", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:ladder" - }, - "bedrock_state": { - "bedrock_identifier": "ladder", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "north_south" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "north_south" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "east_west" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "east_west" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_east" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_east" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_west" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_west" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_north" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_north" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_south" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_south" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "south_east" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "south_east" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "south_west" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "south_west" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "north_west" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "north_west" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "north_east" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "north_east" - }, - "Name": "minecraft:rail" - }, - "bedrock_state": { - "bedrock_identifier": "rail", - "state": { - "rail_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:spruce_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:spruce_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:spruce_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:spruce_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:spruce_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:spruce_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:spruce_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:spruce_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:birch_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:birch_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:birch_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:birch_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:birch_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:birch_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:birch_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:birch_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:acacia_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:acacia_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:acacia_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:acacia_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:acacia_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:acacia_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:acacia_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:acacia_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:cherry_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:cherry_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:cherry_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:cherry_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:cherry_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:cherry_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:cherry_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:cherry_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:jungle_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:jungle_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:jungle_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:jungle_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:jungle_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:jungle_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:jungle_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:jungle_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:dark_oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:dark_oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:dark_oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:dark_oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:dark_oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:dark_oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:dark_oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:dark_oak_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "darkoak_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:mangrove_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:mangrove_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:mangrove_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:mangrove_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:mangrove_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:mangrove_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:mangrove_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:mangrove_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:bamboo_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:bamboo_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:bamboo_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:bamboo_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:bamboo_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:bamboo_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:bamboo_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:bamboo_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:spruce_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:birch_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:acacia_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:cherry_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:jungle_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:dark_oak_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:crimson_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:warped_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:mangrove_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "true" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": true, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": false, - "facing_direction": 3, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 1, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 2, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 3, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": false, - "facing_direction": 4, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 5, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 6, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 7, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 9, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 10, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 11, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": false, - "facing_direction": 5, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 13, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 14, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15", - "attached": "false" - }, - "Name": "minecraft:bamboo_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 15, - "attached_bit": false, - "facing_direction": 2, - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "oak_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:spruce_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:spruce_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:spruce_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:spruce_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:spruce_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:spruce_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:spruce_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:spruce_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:birch_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:birch_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:birch_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:birch_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:birch_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:birch_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:birch_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:birch_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "birch_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:acacia_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:acacia_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:acacia_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:acacia_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:acacia_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:acacia_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:acacia_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:acacia_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:cherry_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:cherry_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:cherry_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:cherry_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:cherry_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:cherry_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:cherry_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:cherry_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:jungle_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:jungle_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:jungle_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:jungle_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:jungle_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:jungle_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:jungle_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:jungle_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:dark_oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:dark_oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:dark_oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:dark_oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:dark_oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:dark_oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:dark_oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:dark_oak_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:mangrove_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:mangrove_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:mangrove_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:mangrove_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:mangrove_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:mangrove_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:mangrove_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:mangrove_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:crimson_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:crimson_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:crimson_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:crimson_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:crimson_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:crimson_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:crimson_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:crimson_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:warped_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:warped_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:warped_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:warped_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:warped_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:warped_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:warped_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:warped_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:bamboo_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:bamboo_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 8, - "attached_bit": true, - "facing_direction": 2, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:bamboo_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:bamboo_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 0, - "attached_bit": true, - "facing_direction": 3, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:bamboo_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:bamboo_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 4, - "attached_bit": true, - "facing_direction": 4, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:bamboo_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:bamboo_wall_hanging_sign" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_hanging_sign", - "state": { - "ground_sign_direction": 12, - "attached_bit": true, - "facing_direction": 5, - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": true, - "lever_direction": "up_north_south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": false, - "lever_direction": "up_north_south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": false, - "lever_direction": "up_north_south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": true, - "lever_direction": "up_north_south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": true, - "lever_direction": "up_east_west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": false, - "lever_direction": "up_east_west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": false, - "lever_direction": "up_east_west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": true, - "lever_direction": "up_east_west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": true, - "lever_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": false, - "lever_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": true, - "lever_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": false, - "lever_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": true, - "lever_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": false, - "lever_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": true, - "lever_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": false, - "lever_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": true, - "lever_direction": "down_north_south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": false, - "lever_direction": "down_north_south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": false, - "lever_direction": "down_north_south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": true, - "lever_direction": "down_north_south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": true, - "lever_direction": "down_east_west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": false, - "lever_direction": "down_east_west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": false, - "lever_direction": "down_east_west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:lever" - }, - "bedrock_state": { - "bedrock_identifier": "lever", - "state": { - "open_bit": true, - "lever_direction": "down_east_west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true" - }, - "Name": "minecraft:stone_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "stone_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false" - }, - "Name": "minecraft:stone_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "stone_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:iron_door" - }, - "bedrock_state": { - "bedrock_identifier": "iron_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true" - }, - "Name": "minecraft:oak_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false" - }, - "Name": "minecraft:oak_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true" - }, - "Name": "minecraft:spruce_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false" - }, - "Name": "minecraft:spruce_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true" - }, - "Name": "minecraft:birch_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false" - }, - "Name": "minecraft:birch_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true" - }, - "Name": "minecraft:jungle_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false" - }, - "Name": "minecraft:jungle_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true" - }, - "Name": "minecraft:acacia_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false" - }, - "Name": "minecraft:acacia_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true" - }, - "Name": "minecraft:cherry_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false" - }, - "Name": "minecraft:cherry_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true" - }, - "Name": "minecraft:dark_oak_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false" - }, - "Name": "minecraft:dark_oak_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true" - }, - "Name": "minecraft:mangrove_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false" - }, - "Name": "minecraft:mangrove_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true" - }, - "Name": "minecraft:bamboo_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false" - }, - "Name": "minecraft:bamboo_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:redstone_ore" - }, - "bedrock_state": { - "bedrock_identifier": "lit_redstone_ore" - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:redstone_ore" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_ore" - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:deepslate_redstone_ore" - }, - "bedrock_state": { - "bedrock_identifier": "lit_deepslate_redstone_ore" - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:deepslate_redstone_ore" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_redstone_ore" - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:redstone_torch" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_torch", - "state": { - "torch_facing_direction": "top" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:redstone_torch" - }, - "bedrock_state": { - "bedrock_identifier": "unlit_redstone_torch", - "state": { - "torch_facing_direction": "top" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "north" - }, - "Name": "minecraft:redstone_wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_torch", - "state": { - "torch_facing_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "north" - }, - "Name": "minecraft:redstone_wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "unlit_redstone_torch", - "state": { - "torch_facing_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "south" - }, - "Name": "minecraft:redstone_wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_torch", - "state": { - "torch_facing_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "south" - }, - "Name": "minecraft:redstone_wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "unlit_redstone_torch", - "state": { - "torch_facing_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "west" - }, - "Name": "minecraft:redstone_wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_torch", - "state": { - "torch_facing_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "west" - }, - "Name": "minecraft:redstone_wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "unlit_redstone_torch", - "state": { - "torch_facing_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "east" - }, - "Name": "minecraft:redstone_wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_torch", - "state": { - "torch_facing_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "east" - }, - "Name": "minecraft:redstone_wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "unlit_redstone_torch", - "state": { - "torch_facing_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:stone_button" - }, - "bedrock_state": { - "bedrock_identifier": "stone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "layers": "1" - }, - "Name": "minecraft:snow" - }, - "bedrock_state": { - "bedrock_identifier": "snow_layer", - "state": { - "covered_bit": false, - "height": 0 - } - } - }, - { - "java_state": { - "Properties": { - "layers": "2" - }, - "Name": "minecraft:snow" - }, - "bedrock_state": { - "bedrock_identifier": "snow_layer", - "state": { - "covered_bit": false, - "height": 1 - } - } - }, - { - "java_state": { - "Properties": { - "layers": "3" - }, - "Name": "minecraft:snow" - }, - "bedrock_state": { - "bedrock_identifier": "snow_layer", - "state": { - "covered_bit": false, - "height": 2 - } - } - }, - { - "java_state": { - "Properties": { - "layers": "4" - }, - "Name": "minecraft:snow" - }, - "bedrock_state": { - "bedrock_identifier": "snow_layer", - "state": { - "covered_bit": false, - "height": 3 - } - } - }, - { - "java_state": { - "Properties": { - "layers": "5" - }, - "Name": "minecraft:snow" - }, - "bedrock_state": { - "bedrock_identifier": "snow_layer", - "state": { - "covered_bit": false, - "height": 4 - } - } - }, - { - "java_state": { - "Properties": { - "layers": "6" - }, - "Name": "minecraft:snow" - }, - "bedrock_state": { - "bedrock_identifier": "snow_layer", - "state": { - "covered_bit": false, - "height": 5 - } - } - }, - { - "java_state": { - "Properties": { - "layers": "7" - }, - "Name": "minecraft:snow" - }, - "bedrock_state": { - "bedrock_identifier": "snow_layer", - "state": { - "covered_bit": false, - "height": 6 - } - } - }, - { - "java_state": { - "Properties": { - "layers": "8" - }, - "Name": "minecraft:snow" - }, - "bedrock_state": { - "bedrock_identifier": "snow_layer", - "state": { - "covered_bit": false, - "height": 7 - } - } - }, - { - "java_state": { - "Name": "minecraft:ice" - }, - "bedrock_state": { - "bedrock_identifier": "ice" - } - }, - { - "java_state": { - "Name": "minecraft:snow_block" - }, - "bedrock_state": { - "bedrock_identifier": "snow" - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "age": "4" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "age": "5" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "age": "6" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "age": "7" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "age": "8" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "age": "9" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "age": "10" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "age": "11" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "age": "12" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "age": "13" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "age": "14" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "age": "15" - }, - "Name": "minecraft:cactus" - }, - "bedrock_state": { - "bedrock_identifier": "cactus", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Name": "minecraft:clay" - }, - "bedrock_state": { - "bedrock_identifier": "clay" - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "age": "4" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "age": "5" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "age": "6" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "age": "7" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "age": "8" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "age": "9" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "age": "10" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "age": "11" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "age": "12" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "age": "13" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "age": "14" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "age": "15" - }, - "Name": "minecraft:sugar_cane" - }, - "bedrock_state": { - "bedrock_identifier": "reeds", - "state": { - "age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "has_record": "true" - }, - "Name": "minecraft:jukebox" - }, - "bedrock_state": { - "bedrock_identifier": "jukebox" - } - }, - { - "java_state": { - "Properties": { - "has_record": "false" - }, - "Name": "minecraft:jukebox" - }, - "bedrock_state": { - "bedrock_identifier": "jukebox" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "oak_fence" - } - }, - { - "java_state": { - "Name": "minecraft:netherrack" - }, - "bedrock_state": { - "bedrock_identifier": "netherrack" - } - }, - { - "java_state": { - "Name": "minecraft:soul_sand" - }, - "bedrock_state": { - "bedrock_identifier": "soul_sand" - } - }, - { - "java_state": { - "Name": "minecraft:soul_soil" - }, - "bedrock_state": { - "bedrock_identifier": "soul_soil" - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:basalt" - }, - "bedrock_state": { - "bedrock_identifier": "basalt", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:basalt" - }, - "bedrock_state": { - "bedrock_identifier": "basalt", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:basalt" - }, - "bedrock_state": { - "bedrock_identifier": "basalt", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:polished_basalt" - }, - "bedrock_state": { - "bedrock_identifier": "polished_basalt", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:polished_basalt" - }, - "bedrock_state": { - "bedrock_identifier": "polished_basalt", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:polished_basalt" - }, - "bedrock_state": { - "bedrock_identifier": "polished_basalt", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Name": "minecraft:soul_torch" - }, - "bedrock_state": { - "bedrock_identifier": "soul_torch", - "state": { - "torch_facing_direction": "top" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:soul_wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "soul_torch", - "state": { - "torch_facing_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:soul_wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "soul_torch", - "state": { - "torch_facing_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:soul_wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "soul_torch", - "state": { - "torch_facing_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:soul_wall_torch" - }, - "bedrock_state": { - "bedrock_identifier": "soul_torch", - "state": { - "torch_facing_direction": "west" - } - } - }, - { - "java_state": { - "Name": "minecraft:glowstone" - }, - "bedrock_state": { - "bedrock_identifier": "glowstone" - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:nether_portal" - }, - "bedrock_state": { - "bedrock_identifier": "portal", - "state": { - "portal_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:nether_portal" - }, - "bedrock_state": { - "bedrock_identifier": "portal", - "state": { - "portal_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:carved_pumpkin" - }, - "bedrock_state": { - "bedrock_identifier": "carved_pumpkin", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:carved_pumpkin" - }, - "bedrock_state": { - "bedrock_identifier": "carved_pumpkin", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:carved_pumpkin" - }, - "bedrock_state": { - "bedrock_identifier": "carved_pumpkin", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:carved_pumpkin" - }, - "bedrock_state": { - "bedrock_identifier": "carved_pumpkin", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:jack_o_lantern" - }, - "bedrock_state": { - "bedrock_identifier": "lit_pumpkin", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:jack_o_lantern" - }, - "bedrock_state": { - "bedrock_identifier": "lit_pumpkin", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:jack_o_lantern" - }, - "bedrock_state": { - "bedrock_identifier": "lit_pumpkin", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:jack_o_lantern" - }, - "bedrock_state": { - "bedrock_identifier": "lit_pumpkin", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "bites": "0" - }, - "Name": "minecraft:cake" - }, - "bedrock_state": { - "bedrock_identifier": "cake", - "state": { - "bite_counter": 0 - } - } - }, - { - "java_state": { - "Properties": { - "bites": "1" - }, - "Name": "minecraft:cake" - }, - "bedrock_state": { - "bedrock_identifier": "cake", - "state": { - "bite_counter": 1 - } - } - }, - { - "java_state": { - "Properties": { - "bites": "2" - }, - "Name": "minecraft:cake" - }, - "bedrock_state": { - "bedrock_identifier": "cake", - "state": { - "bite_counter": 2 - } - } - }, - { - "java_state": { - "Properties": { - "bites": "3" - }, - "Name": "minecraft:cake" - }, - "bedrock_state": { - "bedrock_identifier": "cake", - "state": { - "bite_counter": 3 - } - } - }, - { - "java_state": { - "Properties": { - "bites": "4" - }, - "Name": "minecraft:cake" - }, - "bedrock_state": { - "bedrock_identifier": "cake", - "state": { - "bite_counter": 4 - } - } - }, - { - "java_state": { - "Properties": { - "bites": "5" - }, - "Name": "minecraft:cake" - }, - "bedrock_state": { - "bedrock_identifier": "cake", - "state": { - "bite_counter": 5 - } - } - }, - { - "java_state": { - "Properties": { - "bites": "6" - }, - "Name": "minecraft:cake" - }, - "bedrock_state": { - "bedrock_identifier": "cake", - "state": { - "bite_counter": 6 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "north", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "north", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "north", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "north", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "south", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "south", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "south", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "south", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "west", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "west", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "west", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "west", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "east", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "east", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "east", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "east", - "delay": "1" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 0, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "north", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "north", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "north", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "north", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "south", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "south", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "south", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "south", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "west", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "west", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "west", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "west", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "east", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "east", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "east", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "east", - "delay": "2" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 1, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "north", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "north", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "north", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "north", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "south", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "south", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "south", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "south", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "west", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "west", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "west", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "west", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "east", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "east", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "east", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "east", - "delay": "3" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 2, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "north", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "north", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "north", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "north", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "south", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "south", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "south", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "south", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "west", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "west", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "west", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "west", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "true", - "facing": "east", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "true", - "facing": "east", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "locked": "false", - "facing": "east", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "powered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "locked": "false", - "facing": "east", - "delay": "4" - }, - "Name": "minecraft:repeater" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_repeater", - "state": { - "repeater_delay": 3, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Name": "minecraft:white_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:orange_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:magenta_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:light_blue_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:yellow_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:lime_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:pink_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:gray_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:light_gray_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:cyan_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:purple_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:blue_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:brown_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:green_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:red_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass" - } - }, - { - "java_state": { - "Name": "minecraft:black_stained_glass" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "birch_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Name": "minecraft:stone_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "stonebrick", - "state": { - "stone_brick_type": "default" - } - } - }, - { - "java_state": { - "Name": "minecraft:mossy_stone_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "stonebrick", - "state": { - "stone_brick_type": "mossy" - } - } - }, - { - "java_state": { - "Name": "minecraft:cracked_stone_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "stonebrick", - "state": { - "stone_brick_type": "cracked" - } - } - }, - { - "java_state": { - "Name": "minecraft:chiseled_stone_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "stonebrick", - "state": { - "stone_brick_type": "chiseled" - } - } - }, - { - "java_state": { - "Name": "minecraft:packed_mud" - }, - "bedrock_state": { - "bedrock_identifier": "packed_mud" - } - }, - { - "java_state": { - "Name": "minecraft:mud_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "mud_bricks" - } - }, - { - "java_state": { - "Name": "minecraft:infested_stone" - }, - "bedrock_state": { - "bedrock_identifier": "monster_egg", - "state": { - "monster_egg_stone_type": "stone" - } - } - }, - { - "java_state": { - "Name": "minecraft:infested_cobblestone" - }, - "bedrock_state": { - "bedrock_identifier": "monster_egg", - "state": { - "monster_egg_stone_type": "cobblestone" - } - } - }, - { - "java_state": { - "Name": "minecraft:infested_stone_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "monster_egg", - "state": { - "monster_egg_stone_type": "stone_brick" - } - } - }, - { - "java_state": { - "Name": "minecraft:infested_mossy_stone_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "monster_egg", - "state": { - "monster_egg_stone_type": "mossy_stone_brick" - } - } - }, - { - "java_state": { - "Name": "minecraft:infested_cracked_stone_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "monster_egg", - "state": { - "monster_egg_stone_type": "cracked_stone_brick" - } - } - }, - { - "java_state": { - "Name": "minecraft:infested_chiseled_stone_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "monster_egg", - "state": { - "monster_egg_stone_type": "chiseled_stone_brick" - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:brown_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "brown_mushroom_block", - "state": { - "huge_mushroom_bits": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:red_mushroom_block" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:mushroom_stem" - }, - "bedrock_state": { - "bedrock_identifier": "red_mushroom_block", - "state": { - "huge_mushroom_bits": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:iron_bars" - }, - "bedrock_state": { - "bedrock_identifier": "iron_bars" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "axis": "x" - }, - "Name": "minecraft:chain" - }, - "bedrock_state": { - "bedrock_identifier": "chain", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "axis": "x" - }, - "Name": "minecraft:chain" - }, - "bedrock_state": { - "bedrock_identifier": "chain", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "axis": "y" - }, - "Name": "minecraft:chain" - }, - "bedrock_state": { - "bedrock_identifier": "chain", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "axis": "y" - }, - "Name": "minecraft:chain" - }, - "bedrock_state": { - "bedrock_identifier": "chain", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "axis": "z" - }, - "Name": "minecraft:chain" - }, - "bedrock_state": { - "bedrock_identifier": "chain", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "axis": "z" - }, - "Name": "minecraft:chain" - }, - "bedrock_state": { - "bedrock_identifier": "chain", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "glass_pane" - } - }, - { - "java_state": { - "Name": "minecraft:pumpkin" - }, - "bedrock_state": { - "bedrock_identifier": "pumpkin", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Name": "minecraft:melon" - }, - "bedrock_state": { - "bedrock_identifier": "melon_block" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:attached_pumpkin_stem" - }, - "bedrock_state": { - "bedrock_identifier": "pumpkin_stem", - "state": { - "facing_direction": 2, - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:attached_pumpkin_stem" - }, - "bedrock_state": { - "bedrock_identifier": "pumpkin_stem", - "state": { - "facing_direction": 3, - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:attached_pumpkin_stem" - }, - "bedrock_state": { - "bedrock_identifier": "pumpkin_stem", - "state": { - "facing_direction": 4, - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:attached_pumpkin_stem" - }, - "bedrock_state": { - "bedrock_identifier": "pumpkin_stem", - "state": { - "facing_direction": 5, - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:attached_melon_stem" - }, - "bedrock_state": { - "bedrock_identifier": "melon_stem", - "state": { - "facing_direction": 2, - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:attached_melon_stem" - }, - "bedrock_state": { - "bedrock_identifier": "melon_stem", - "state": { - "facing_direction": 3, - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:attached_melon_stem" - }, - "bedrock_state": { - "bedrock_identifier": "melon_stem", - "state": { - "facing_direction": 4, - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:attached_melon_stem" - }, - "bedrock_state": { - "bedrock_identifier": "melon_stem", - "state": { - "facing_direction": 5, - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:pumpkin_stem" - }, - "bedrock_state": { - "bedrock_identifier": "pumpkin_stem", - "state": { - "facing_direction": 0, - "growth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:pumpkin_stem" - }, - "bedrock_state": { - "bedrock_identifier": "pumpkin_stem", - "state": { - "facing_direction": 0, - "growth": 1 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:pumpkin_stem" - }, - "bedrock_state": { - "bedrock_identifier": "pumpkin_stem", - "state": { - "facing_direction": 0, - "growth": 2 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:pumpkin_stem" - }, - "bedrock_state": { - "bedrock_identifier": "pumpkin_stem", - "state": { - "facing_direction": 0, - "growth": 3 - } - } - }, - { - "java_state": { - "Properties": { - "age": "4" - }, - "Name": "minecraft:pumpkin_stem" - }, - "bedrock_state": { - "bedrock_identifier": "pumpkin_stem", - "state": { - "facing_direction": 0, - "growth": 4 - } - } - }, - { - "java_state": { - "Properties": { - "age": "5" - }, - "Name": "minecraft:pumpkin_stem" - }, - "bedrock_state": { - "bedrock_identifier": "pumpkin_stem", - "state": { - "facing_direction": 0, - "growth": 5 - } - } - }, - { - "java_state": { - "Properties": { - "age": "6" - }, - "Name": "minecraft:pumpkin_stem" - }, - "bedrock_state": { - "bedrock_identifier": "pumpkin_stem", - "state": { - "facing_direction": 0, - "growth": 6 - } - } - }, - { - "java_state": { - "Properties": { - "age": "7" - }, - "Name": "minecraft:pumpkin_stem" - }, - "bedrock_state": { - "bedrock_identifier": "pumpkin_stem", - "state": { - "facing_direction": 0, - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:melon_stem" - }, - "bedrock_state": { - "bedrock_identifier": "melon_stem", - "state": { - "facing_direction": 0, - "growth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:melon_stem" - }, - "bedrock_state": { - "bedrock_identifier": "melon_stem", - "state": { - "facing_direction": 0, - "growth": 1 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:melon_stem" - }, - "bedrock_state": { - "bedrock_identifier": "melon_stem", - "state": { - "facing_direction": 0, - "growth": 2 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:melon_stem" - }, - "bedrock_state": { - "bedrock_identifier": "melon_stem", - "state": { - "facing_direction": 0, - "growth": 3 - } - } - }, - { - "java_state": { - "Properties": { - "age": "4" - }, - "Name": "minecraft:melon_stem" - }, - "bedrock_state": { - "bedrock_identifier": "melon_stem", - "state": { - "facing_direction": 0, - "growth": 4 - } - } - }, - { - "java_state": { - "Properties": { - "age": "5" - }, - "Name": "minecraft:melon_stem" - }, - "bedrock_state": { - "bedrock_identifier": "melon_stem", - "state": { - "facing_direction": 0, - "growth": 5 - } - } - }, - { - "java_state": { - "Properties": { - "age": "6" - }, - "Name": "minecraft:melon_stem" - }, - "bedrock_state": { - "bedrock_identifier": "melon_stem", - "state": { - "facing_direction": 0, - "growth": 6 - } - } - }, - { - "java_state": { - "Properties": { - "age": "7" - }, - "Name": "minecraft:melon_stem" - }, - "bedrock_state": { - "bedrock_identifier": "melon_stem", - "state": { - "facing_direction": 0, - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:vine" - }, - "bedrock_state": { - "bedrock_identifier": "vine", - "state": { - "vine_direction_bits": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 63 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 55 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 63 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 55 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 61 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 53 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 61 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 53 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 59 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 51 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 59 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 51 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 57 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 49 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 57 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 49 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 47 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 39 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 47 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 39 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 45 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 37 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 45 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 37 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 43 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 35 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 43 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 35 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 41 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 33 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 41 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 33 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 31 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 23 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 31 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 23 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 29 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 21 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 29 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 21 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 27 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 19 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 27 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 19 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 25 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 17 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 25 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 17 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 62 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 54 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 62 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 54 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 60 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 52 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 60 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 52 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 58 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 50 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 58 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 50 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 56 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 48 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 56 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 48 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 46 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 38 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 46 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 38 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 44 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 36 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 44 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 36 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 42 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 34 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 42 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 34 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 40 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 32 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 40 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 32 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 30 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 22 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 30 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 22 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 28 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 20 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 28 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 20 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 26 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 18 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 26 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 18 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 24 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 16 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 24 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 16 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:glow_lichen" - }, - "bedrock_state": { - "bedrock_identifier": "glow_lichen", - "state": { - "multi_face_direction_bits": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mud_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "snowy": "true" - }, - "Name": "minecraft:mycelium" - }, - "bedrock_state": { - "bedrock_identifier": "mycelium" - } - }, - { - "java_state": { - "Properties": { - "snowy": "false" - }, - "Name": "minecraft:mycelium" - }, - "bedrock_state": { - "bedrock_identifier": "mycelium" - } - }, - { - "java_state": { - "Name": "minecraft:lily_pad" - }, - "bedrock_state": { - "bedrock_identifier": "waterlily" - } - }, - { - "java_state": { - "Name": "minecraft:nether_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:nether_brick_fence" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_fence" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:nether_wart" - }, - "bedrock_state": { - "bedrock_identifier": "nether_wart", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:nether_wart" - }, - "bedrock_state": { - "bedrock_identifier": "nether_wart", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:nether_wart" - }, - "bedrock_state": { - "bedrock_identifier": "nether_wart", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:nether_wart" - }, - "bedrock_state": { - "bedrock_identifier": "nether_wart", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Name": "minecraft:enchanting_table" - }, - "bedrock_state": { - "bedrock_identifier": "enchanting_table" - } - }, - { - "java_state": { - "Properties": { - "has_bottle_2": "true", - "has_bottle_1": "true", - "has_bottle_0": "true" - }, - "Name": "minecraft:brewing_stand" - }, - "bedrock_state": { - "bedrock_identifier": "brewing_stand", - "state": { - "brewing_stand_slot_c_bit": true, - "brewing_stand_slot_a_bit": true, - "brewing_stand_slot_b_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "has_bottle_2": "false", - "has_bottle_1": "true", - "has_bottle_0": "true" - }, - "Name": "minecraft:brewing_stand" - }, - "bedrock_state": { - "bedrock_identifier": "brewing_stand", - "state": { - "brewing_stand_slot_c_bit": false, - "brewing_stand_slot_a_bit": true, - "brewing_stand_slot_b_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "has_bottle_2": "true", - "has_bottle_1": "false", - "has_bottle_0": "true" - }, - "Name": "minecraft:brewing_stand" - }, - "bedrock_state": { - "bedrock_identifier": "brewing_stand", - "state": { - "brewing_stand_slot_c_bit": true, - "brewing_stand_slot_a_bit": true, - "brewing_stand_slot_b_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "has_bottle_2": "false", - "has_bottle_1": "false", - "has_bottle_0": "true" - }, - "Name": "minecraft:brewing_stand" - }, - "bedrock_state": { - "bedrock_identifier": "brewing_stand", - "state": { - "brewing_stand_slot_c_bit": false, - "brewing_stand_slot_a_bit": true, - "brewing_stand_slot_b_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "has_bottle_2": "true", - "has_bottle_1": "true", - "has_bottle_0": "false" - }, - "Name": "minecraft:brewing_stand" - }, - "bedrock_state": { - "bedrock_identifier": "brewing_stand", - "state": { - "brewing_stand_slot_c_bit": true, - "brewing_stand_slot_a_bit": false, - "brewing_stand_slot_b_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "has_bottle_2": "false", - "has_bottle_1": "true", - "has_bottle_0": "false" - }, - "Name": "minecraft:brewing_stand" - }, - "bedrock_state": { - "bedrock_identifier": "brewing_stand", - "state": { - "brewing_stand_slot_c_bit": false, - "brewing_stand_slot_a_bit": false, - "brewing_stand_slot_b_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "has_bottle_2": "true", - "has_bottle_1": "false", - "has_bottle_0": "false" - }, - "Name": "minecraft:brewing_stand" - }, - "bedrock_state": { - "bedrock_identifier": "brewing_stand", - "state": { - "brewing_stand_slot_c_bit": true, - "brewing_stand_slot_a_bit": false, - "brewing_stand_slot_b_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "has_bottle_2": "false", - "has_bottle_1": "false", - "has_bottle_0": "false" - }, - "Name": "minecraft:brewing_stand" - }, - "bedrock_state": { - "bedrock_identifier": "brewing_stand", - "state": { - "brewing_stand_slot_c_bit": false, - "brewing_stand_slot_a_bit": false, - "brewing_stand_slot_b_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:cauldron" - }, - "bedrock_state": { - "bedrock_identifier": "cauldron", - "state": { - "fill_level": 0, - "cauldron_liquid": "water" - } - } - }, - { - "java_state": { - "Properties": { - "level": "1" - }, - "Name": "minecraft:water_cauldron" - }, - "bedrock_state": { - "bedrock_identifier": "cauldron", - "state": { - "fill_level": 3, - "cauldron_liquid": "water" - } - } - }, - { - "java_state": { - "Properties": { - "level": "2" - }, - "Name": "minecraft:water_cauldron" - }, - "bedrock_state": { - "bedrock_identifier": "cauldron", - "state": { - "fill_level": 4, - "cauldron_liquid": "water" - } - } - }, - { - "java_state": { - "Properties": { - "level": "3" - }, - "Name": "minecraft:water_cauldron" - }, - "bedrock_state": { - "bedrock_identifier": "cauldron", - "state": { - "fill_level": 6, - "cauldron_liquid": "water" - } - } - }, - { - "java_state": { - "Name": "minecraft:lava_cauldron" - }, - "bedrock_state": { - "bedrock_identifier": "cauldron", - "state": { - "fill_level": 6, - "cauldron_liquid": "lava" - } - } - }, - { - "java_state": { - "Properties": { - "level": "1" - }, - "Name": "minecraft:powder_snow_cauldron" - }, - "bedrock_state": { - "bedrock_identifier": "cauldron", - "state": { - "fill_level": 3, - "cauldron_liquid": "powder_snow" - } - } - }, - { - "java_state": { - "Properties": { - "level": "2" - }, - "Name": "minecraft:powder_snow_cauldron" - }, - "bedrock_state": { - "bedrock_identifier": "cauldron", - "state": { - "fill_level": 4, - "cauldron_liquid": "powder_snow" - } - } - }, - { - "java_state": { - "Properties": { - "level": "3" - }, - "Name": "minecraft:powder_snow_cauldron" - }, - "bedrock_state": { - "bedrock_identifier": "cauldron", - "state": { - "fill_level": 6, - "cauldron_liquid": "powder_snow" - } - } - }, - { - "java_state": { - "Name": "minecraft:end_portal" - }, - "bedrock_state": { - "bedrock_identifier": "end_portal" - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "eye": "true" - }, - "Name": "minecraft:end_portal_frame" - }, - "bedrock_state": { - "bedrock_identifier": "end_portal_frame", - "state": { - "end_portal_eye_bit": true, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "eye": "true" - }, - "Name": "minecraft:end_portal_frame" - }, - "bedrock_state": { - "bedrock_identifier": "end_portal_frame", - "state": { - "end_portal_eye_bit": true, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "eye": "true" - }, - "Name": "minecraft:end_portal_frame" - }, - "bedrock_state": { - "bedrock_identifier": "end_portal_frame", - "state": { - "end_portal_eye_bit": true, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "eye": "true" - }, - "Name": "minecraft:end_portal_frame" - }, - "bedrock_state": { - "bedrock_identifier": "end_portal_frame", - "state": { - "end_portal_eye_bit": true, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "eye": "false" - }, - "Name": "minecraft:end_portal_frame" - }, - "bedrock_state": { - "bedrock_identifier": "end_portal_frame", - "state": { - "end_portal_eye_bit": false, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "eye": "false" - }, - "Name": "minecraft:end_portal_frame" - }, - "bedrock_state": { - "bedrock_identifier": "end_portal_frame", - "state": { - "end_portal_eye_bit": false, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "eye": "false" - }, - "Name": "minecraft:end_portal_frame" - }, - "bedrock_state": { - "bedrock_identifier": "end_portal_frame", - "state": { - "end_portal_eye_bit": false, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "eye": "false" - }, - "Name": "minecraft:end_portal_frame" - }, - "bedrock_state": { - "bedrock_identifier": "end_portal_frame", - "state": { - "end_portal_eye_bit": false, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Name": "minecraft:end_stone" - }, - "bedrock_state": { - "bedrock_identifier": "end_stone" - } - }, - { - "java_state": { - "Name": "minecraft:dragon_egg" - }, - "bedrock_state": { - "bedrock_identifier": "dragon_egg" - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:redstone_lamp" - }, - "bedrock_state": { - "bedrock_identifier": "lit_redstone_lamp" - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:redstone_lamp" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_lamp" - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "age": "0" - }, - "Name": "minecraft:cocoa" - }, - "bedrock_state": { - "bedrock_identifier": "cocoa", - "state": { - "age": 0, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "age": "0" - }, - "Name": "minecraft:cocoa" - }, - "bedrock_state": { - "bedrock_identifier": "cocoa", - "state": { - "age": 0, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "age": "0" - }, - "Name": "minecraft:cocoa" - }, - "bedrock_state": { - "bedrock_identifier": "cocoa", - "state": { - "age": 0, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "age": "0" - }, - "Name": "minecraft:cocoa" - }, - "bedrock_state": { - "bedrock_identifier": "cocoa", - "state": { - "age": 0, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "age": "1" - }, - "Name": "minecraft:cocoa" - }, - "bedrock_state": { - "bedrock_identifier": "cocoa", - "state": { - "age": 1, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "age": "1" - }, - "Name": "minecraft:cocoa" - }, - "bedrock_state": { - "bedrock_identifier": "cocoa", - "state": { - "age": 1, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "age": "1" - }, - "Name": "minecraft:cocoa" - }, - "bedrock_state": { - "bedrock_identifier": "cocoa", - "state": { - "age": 1, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "age": "1" - }, - "Name": "minecraft:cocoa" - }, - "bedrock_state": { - "bedrock_identifier": "cocoa", - "state": { - "age": 1, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "age": "2" - }, - "Name": "minecraft:cocoa" - }, - "bedrock_state": { - "bedrock_identifier": "cocoa", - "state": { - "age": 2, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "age": "2" - }, - "Name": "minecraft:cocoa" - }, - "bedrock_state": { - "bedrock_identifier": "cocoa", - "state": { - "age": 2, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "age": "2" - }, - "Name": "minecraft:cocoa" - }, - "bedrock_state": { - "bedrock_identifier": "cocoa", - "state": { - "age": 2, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "age": "2" - }, - "Name": "minecraft:cocoa" - }, - "bedrock_state": { - "bedrock_identifier": "cocoa", - "state": { - "age": 2, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Name": "minecraft:emerald_ore" - }, - "bedrock_state": { - "bedrock_identifier": "emerald_ore" - } - }, - { - "java_state": { - "Name": "minecraft:deepslate_emerald_ore" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_emerald_ore" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:ender_chest" - }, - "bedrock_state": { - "bedrock_identifier": "ender_chest", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:ender_chest" - }, - "bedrock_state": { - "bedrock_identifier": "ender_chest", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:ender_chest" - }, - "bedrock_state": { - "bedrock_identifier": "ender_chest", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:ender_chest" - }, - "bedrock_state": { - "bedrock_identifier": "ender_chest", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:ender_chest" - }, - "bedrock_state": { - "bedrock_identifier": "ender_chest", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:ender_chest" - }, - "bedrock_state": { - "bedrock_identifier": "ender_chest", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:ender_chest" - }, - "bedrock_state": { - "bedrock_identifier": "ender_chest", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:ender_chest" - }, - "bedrock_state": { - "bedrock_identifier": "ender_chest", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "attached": "true" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": true, - "attached_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "attached": "true" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": false, - "attached_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "attached": "true" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": true, - "attached_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "attached": "true" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": false, - "attached_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "attached": "true" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": true, - "attached_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "attached": "true" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": false, - "attached_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "attached": "true" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": true, - "attached_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "attached": "true" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": false, - "attached_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "attached": "false" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": true, - "attached_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "attached": "false" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": false, - "attached_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "attached": "false" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": true, - "attached_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "attached": "false" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": false, - "attached_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "attached": "false" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": true, - "attached_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "attached": "false" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": false, - "attached_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "attached": "false" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": true, - "attached_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "attached": "false" - }, - "Name": "minecraft:tripwire_hook" - }, - "bedrock_state": { - "bedrock_identifier": "tripwire_hook", - "state": { - "powered_bit": false, - "attached_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "true" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "true", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": true, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "true", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "false", - "east": "true", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "true", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "true", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": true, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "true", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "true", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "south": "false", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "south": "false", - "powered": "false", - "north": "false", - "east": "false", - "disarmed": "false", - "attached": "false" - }, - "Name": "minecraft:tripwire" - }, - "bedrock_state": { - "bedrock_identifier": "trip_wire", - "state": { - "powered_bit": false, - "suspended_bit": true, - "disarmed_bit": false, - "attached_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:emerald_block" - }, - "bedrock_state": { - "bedrock_identifier": "emerald_block" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:spruce_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:birch_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "birch_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:jungle_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "conditional": "true" - }, - "Name": "minecraft:command_block" - }, - "bedrock_state": { - "bedrock_identifier": "command_block", - "state": { - "conditional_bit": true, - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "conditional": "true" - }, - "Name": "minecraft:command_block" - }, - "bedrock_state": { - "bedrock_identifier": "command_block", - "state": { - "conditional_bit": true, - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "conditional": "true" - }, - "Name": "minecraft:command_block" - }, - "bedrock_state": { - "bedrock_identifier": "command_block", - "state": { - "conditional_bit": true, - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "conditional": "true" - }, - "Name": "minecraft:command_block" - }, - "bedrock_state": { - "bedrock_identifier": "command_block", - "state": { - "conditional_bit": true, - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "up", - "conditional": "true" - }, - "Name": "minecraft:command_block" - }, - "bedrock_state": { - "bedrock_identifier": "command_block", - "state": { - "conditional_bit": true, - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "down", - "conditional": "true" - }, - "Name": "minecraft:command_block" - }, - "bedrock_state": { - "bedrock_identifier": "command_block", - "state": { - "conditional_bit": true, - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "conditional": "false" - }, - "Name": "minecraft:command_block" - }, - "bedrock_state": { - "bedrock_identifier": "command_block", - "state": { - "conditional_bit": false, - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "conditional": "false" - }, - "Name": "minecraft:command_block" - }, - "bedrock_state": { - "bedrock_identifier": "command_block", - "state": { - "conditional_bit": false, - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "conditional": "false" - }, - "Name": "minecraft:command_block" - }, - "bedrock_state": { - "bedrock_identifier": "command_block", - "state": { - "conditional_bit": false, - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "conditional": "false" - }, - "Name": "minecraft:command_block" - }, - "bedrock_state": { - "bedrock_identifier": "command_block", - "state": { - "conditional_bit": false, - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "up", - "conditional": "false" - }, - "Name": "minecraft:command_block" - }, - "bedrock_state": { - "bedrock_identifier": "command_block", - "state": { - "conditional_bit": false, - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "down", - "conditional": "false" - }, - "Name": "minecraft:command_block" - }, - "bedrock_state": { - "bedrock_identifier": "command_block", - "state": { - "conditional_bit": false, - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Name": "minecraft:beacon" - }, - "bedrock_state": { - "bedrock_identifier": "beacon" - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_cobblestone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_cobblestone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Name": "minecraft:flower_pot" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_torchflower" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_oak_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_spruce_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_birch_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_jungle_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_acacia_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_cherry_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_dark_oak_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_mangrove_propagule" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_fern" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_dandelion" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_poppy" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_blue_orchid" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_allium" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_azure_bluet" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_red_tulip" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_orange_tulip" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_white_tulip" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_pink_tulip" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_oxeye_daisy" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_cornflower" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_lily_of_the_valley" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_wither_rose" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_red_mushroom" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_brown_mushroom" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_dead_bush" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_cactus" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:carrots" - }, - "bedrock_state": { - "bedrock_identifier": "carrots", - "state": { - "growth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:carrots" - }, - "bedrock_state": { - "bedrock_identifier": "carrots", - "state": { - "growth": 1 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:carrots" - }, - "bedrock_state": { - "bedrock_identifier": "carrots", - "state": { - "growth": 2 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:carrots" - }, - "bedrock_state": { - "bedrock_identifier": "carrots", - "state": { - "growth": 3 - } - } - }, - { - "java_state": { - "Properties": { - "age": "4" - }, - "Name": "minecraft:carrots" - }, - "bedrock_state": { - "bedrock_identifier": "carrots", - "state": { - "growth": 4 - } - } - }, - { - "java_state": { - "Properties": { - "age": "5" - }, - "Name": "minecraft:carrots" - }, - "bedrock_state": { - "bedrock_identifier": "carrots", - "state": { - "growth": 5 - } - } - }, - { - "java_state": { - "Properties": { - "age": "6" - }, - "Name": "minecraft:carrots" - }, - "bedrock_state": { - "bedrock_identifier": "carrots", - "state": { - "growth": 6 - } - } - }, - { - "java_state": { - "Properties": { - "age": "7" - }, - "Name": "minecraft:carrots" - }, - "bedrock_state": { - "bedrock_identifier": "carrots", - "state": { - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:potatoes" - }, - "bedrock_state": { - "bedrock_identifier": "potatoes", - "state": { - "growth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:potatoes" - }, - "bedrock_state": { - "bedrock_identifier": "potatoes", - "state": { - "growth": 1 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:potatoes" - }, - "bedrock_state": { - "bedrock_identifier": "potatoes", - "state": { - "growth": 2 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:potatoes" - }, - "bedrock_state": { - "bedrock_identifier": "potatoes", - "state": { - "growth": 3 - } - } - }, - { - "java_state": { - "Properties": { - "age": "4" - }, - "Name": "minecraft:potatoes" - }, - "bedrock_state": { - "bedrock_identifier": "potatoes", - "state": { - "growth": 4 - } - } - }, - { - "java_state": { - "Properties": { - "age": "5" - }, - "Name": "minecraft:potatoes" - }, - "bedrock_state": { - "bedrock_identifier": "potatoes", - "state": { - "growth": 5 - } - } - }, - { - "java_state": { - "Properties": { - "age": "6" - }, - "Name": "minecraft:potatoes" - }, - "bedrock_state": { - "bedrock_identifier": "potatoes", - "state": { - "growth": 6 - } - } - }, - { - "java_state": { - "Properties": { - "age": "7" - }, - "Name": "minecraft:potatoes" - }, - "bedrock_state": { - "bedrock_identifier": "potatoes", - "state": { - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "wooden_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:spruce_button" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:birch_button" - }, - "bedrock_state": { - "bedrock_identifier": "birch_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:jungle_button" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:acacia_button" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:cherry_button" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:dark_oak_button" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:mangrove_button" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:bamboo_button" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15", - "powered": "true" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15", - "powered": "false" - }, - "Name": "minecraft:skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north" - }, - "Name": "minecraft:skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north" - }, - "Name": "minecraft:skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south" - }, - "Name": "minecraft:skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south" - }, - "Name": "minecraft:skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west" - }, - "Name": "minecraft:skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west" - }, - "Name": "minecraft:skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east" - }, - "Name": "minecraft:skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east" - }, - "Name": "minecraft:skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15", - "powered": "true" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15", - "powered": "false" - }, - "Name": "minecraft:wither_skeleton_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north" - }, - "Name": "minecraft:wither_skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north" - }, - "Name": "minecraft:wither_skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south" - }, - "Name": "minecraft:wither_skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south" - }, - "Name": "minecraft:wither_skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west" - }, - "Name": "minecraft:wither_skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west" - }, - "Name": "minecraft:wither_skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east" - }, - "Name": "minecraft:wither_skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east" - }, - "Name": "minecraft:wither_skeleton_wall_skull" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15", - "powered": "true" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15", - "powered": "false" - }, - "Name": "minecraft:zombie_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north" - }, - "Name": "minecraft:zombie_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north" - }, - "Name": "minecraft:zombie_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south" - }, - "Name": "minecraft:zombie_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south" - }, - "Name": "minecraft:zombie_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west" - }, - "Name": "minecraft:zombie_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west" - }, - "Name": "minecraft:zombie_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east" - }, - "Name": "minecraft:zombie_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east" - }, - "Name": "minecraft:zombie_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15", - "powered": "true" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15", - "powered": "false" - }, - "Name": "minecraft:player_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north" - }, - "Name": "minecraft:player_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north" - }, - "Name": "minecraft:player_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south" - }, - "Name": "minecraft:player_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south" - }, - "Name": "minecraft:player_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west" - }, - "Name": "minecraft:player_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west" - }, - "Name": "minecraft:player_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east" - }, - "Name": "minecraft:player_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east" - }, - "Name": "minecraft:player_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15", - "powered": "true" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15", - "powered": "false" - }, - "Name": "minecraft:creeper_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north" - }, - "Name": "minecraft:creeper_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north" - }, - "Name": "minecraft:creeper_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south" - }, - "Name": "minecraft:creeper_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south" - }, - "Name": "minecraft:creeper_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west" - }, - "Name": "minecraft:creeper_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west" - }, - "Name": "minecraft:creeper_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east" - }, - "Name": "minecraft:creeper_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east" - }, - "Name": "minecraft:creeper_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15", - "powered": "true" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15", - "powered": "false" - }, - "Name": "minecraft:dragon_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north" - }, - "Name": "minecraft:dragon_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north" - }, - "Name": "minecraft:dragon_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south" - }, - "Name": "minecraft:dragon_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south" - }, - "Name": "minecraft:dragon_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west" - }, - "Name": "minecraft:dragon_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west" - }, - "Name": "minecraft:dragon_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east" - }, - "Name": "minecraft:dragon_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east" - }, - "Name": "minecraft:dragon_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15", - "powered": "true" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15", - "powered": "false" - }, - "Name": "minecraft:piglin_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north" - }, - "Name": "minecraft:piglin_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north" - }, - "Name": "minecraft:piglin_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south" - }, - "Name": "minecraft:piglin_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south" - }, - "Name": "minecraft:piglin_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west" - }, - "Name": "minecraft:piglin_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west" - }, - "Name": "minecraft:piglin_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east" - }, - "Name": "minecraft:piglin_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east" - }, - "Name": "minecraft:piglin_wall_head" - }, - "bedrock_state": { - "bedrock_identifier": "skull", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:anvil" - }, - "bedrock_state": { - "bedrock_identifier": "anvil", - "state": { - "damage": "undamaged", - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:anvil" - }, - "bedrock_state": { - "bedrock_identifier": "anvil", - "state": { - "damage": "undamaged", - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:anvil" - }, - "bedrock_state": { - "bedrock_identifier": "anvil", - "state": { - "damage": "undamaged", - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:anvil" - }, - "bedrock_state": { - "bedrock_identifier": "anvil", - "state": { - "damage": "undamaged", - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:chipped_anvil" - }, - "bedrock_state": { - "bedrock_identifier": "anvil", - "state": { - "damage": "slightly_damaged", - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:chipped_anvil" - }, - "bedrock_state": { - "bedrock_identifier": "anvil", - "state": { - "damage": "slightly_damaged", - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:chipped_anvil" - }, - "bedrock_state": { - "bedrock_identifier": "anvil", - "state": { - "damage": "slightly_damaged", - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:chipped_anvil" - }, - "bedrock_state": { - "bedrock_identifier": "anvil", - "state": { - "damage": "slightly_damaged", - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:damaged_anvil" - }, - "bedrock_state": { - "bedrock_identifier": "anvil", - "state": { - "damage": "very_damaged", - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:damaged_anvil" - }, - "bedrock_state": { - "bedrock_identifier": "anvil", - "state": { - "damage": "very_damaged", - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:damaged_anvil" - }, - "bedrock_state": { - "bedrock_identifier": "anvil", - "state": { - "damage": "very_damaged", - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:damaged_anvil" - }, - "bedrock_state": { - "bedrock_identifier": "anvil", - "state": { - "damage": "very_damaged", - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "single", - "facing": "north" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "single", - "facing": "north" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "left", - "facing": "north" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "left", - "facing": "north" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "right", - "facing": "north" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "right", - "facing": "north" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "single", - "facing": "south" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "single", - "facing": "south" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "left", - "facing": "south" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "left", - "facing": "south" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "right", - "facing": "south" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "right", - "facing": "south" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "single", - "facing": "west" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "single", - "facing": "west" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "left", - "facing": "west" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "left", - "facing": "west" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "right", - "facing": "west" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "right", - "facing": "west" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "single", - "facing": "east" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "single", - "facing": "east" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "left", - "facing": "east" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "left", - "facing": "east" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "right", - "facing": "east" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "right", - "facing": "east" - }, - "Name": "minecraft:trapped_chest" - }, - "bedrock_state": { - "bedrock_identifier": "trapped_chest", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "power": "0" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "power": "1" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "power": "2" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "power": "3" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "power": "4" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "power": "5" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "power": "6" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "power": "7" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "power": "8" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "power": "9" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "power": "10" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "power": "11" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "power": "12" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "power": "13" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "power": "14" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "power": "15" - }, - "Name": "minecraft:light_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "light_weighted_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "power": "0" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "power": "1" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "power": "2" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "power": "3" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "power": "4" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "power": "5" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "power": "6" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "power": "7" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "power": "8" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "power": "9" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "power": "10" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "power": "11" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "power": "12" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "power": "13" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "power": "14" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "power": "15" - }, - "Name": "minecraft:heavy_weighted_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_weighted_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "mode": "compare", - "facing": "north" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "powered_comparator", - "state": { - "output_subtract_bit": false, - "minecraft:cardinal_direction": "north", - "output_lit_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "mode": "compare", - "facing": "north" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_comparator", - "state": { - "output_subtract_bit": false, - "minecraft:cardinal_direction": "north", - "output_lit_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "mode": "subtract", - "facing": "north" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "powered_comparator", - "state": { - "output_subtract_bit": true, - "minecraft:cardinal_direction": "north", - "output_lit_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "mode": "subtract", - "facing": "north" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_comparator", - "state": { - "output_subtract_bit": true, - "minecraft:cardinal_direction": "north", - "output_lit_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "mode": "compare", - "facing": "south" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "powered_comparator", - "state": { - "output_subtract_bit": false, - "minecraft:cardinal_direction": "south", - "output_lit_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "mode": "compare", - "facing": "south" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_comparator", - "state": { - "output_subtract_bit": false, - "minecraft:cardinal_direction": "south", - "output_lit_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "mode": "subtract", - "facing": "south" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "powered_comparator", - "state": { - "output_subtract_bit": true, - "minecraft:cardinal_direction": "south", - "output_lit_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "mode": "subtract", - "facing": "south" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_comparator", - "state": { - "output_subtract_bit": true, - "minecraft:cardinal_direction": "south", - "output_lit_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "mode": "compare", - "facing": "west" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "powered_comparator", - "state": { - "output_subtract_bit": false, - "minecraft:cardinal_direction": "west", - "output_lit_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "mode": "compare", - "facing": "west" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_comparator", - "state": { - "output_subtract_bit": false, - "minecraft:cardinal_direction": "west", - "output_lit_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "mode": "subtract", - "facing": "west" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "powered_comparator", - "state": { - "output_subtract_bit": true, - "minecraft:cardinal_direction": "west", - "output_lit_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "mode": "subtract", - "facing": "west" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_comparator", - "state": { - "output_subtract_bit": true, - "minecraft:cardinal_direction": "west", - "output_lit_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "mode": "compare", - "facing": "east" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "powered_comparator", - "state": { - "output_subtract_bit": false, - "minecraft:cardinal_direction": "east", - "output_lit_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "mode": "compare", - "facing": "east" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_comparator", - "state": { - "output_subtract_bit": false, - "minecraft:cardinal_direction": "east", - "output_lit_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "mode": "subtract", - "facing": "east" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "powered_comparator", - "state": { - "output_subtract_bit": true, - "minecraft:cardinal_direction": "east", - "output_lit_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "mode": "subtract", - "facing": "east" - }, - "Name": "minecraft:comparator" - }, - "bedrock_state": { - "bedrock_identifier": "unpowered_comparator", - "state": { - "output_subtract_bit": true, - "minecraft:cardinal_direction": "east", - "output_lit_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "power": "0", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "power": "1", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "power": "2", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "power": "3", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "power": "4", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "power": "5", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "power": "6", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "power": "7", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "power": "8", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "power": "9", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "power": "10", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "power": "11", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "power": "12", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "power": "13", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "power": "14", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "power": "15", - "inverted": "true" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector_inverted", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "power": "0", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "power": "1", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 1 - } - } - }, - { - "java_state": { - "Properties": { - "power": "2", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 2 - } - } - }, - { - "java_state": { - "Properties": { - "power": "3", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 3 - } - } - }, - { - "java_state": { - "Properties": { - "power": "4", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 4 - } - } - }, - { - "java_state": { - "Properties": { - "power": "5", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 5 - } - } - }, - { - "java_state": { - "Properties": { - "power": "6", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 6 - } - } - }, - { - "java_state": { - "Properties": { - "power": "7", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 7 - } - } - }, - { - "java_state": { - "Properties": { - "power": "8", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 8 - } - } - }, - { - "java_state": { - "Properties": { - "power": "9", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 9 - } - } - }, - { - "java_state": { - "Properties": { - "power": "10", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 10 - } - } - }, - { - "java_state": { - "Properties": { - "power": "11", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 11 - } - } - }, - { - "java_state": { - "Properties": { - "power": "12", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 12 - } - } - }, - { - "java_state": { - "Properties": { - "power": "13", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 13 - } - } - }, - { - "java_state": { - "Properties": { - "power": "14", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 14 - } - } - }, - { - "java_state": { - "Properties": { - "power": "15", - "inverted": "false" - }, - "Name": "minecraft:daylight_detector" - }, - "bedrock_state": { - "bedrock_identifier": "daylight_detector", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Name": "minecraft:redstone_block" - }, - "bedrock_state": { - "bedrock_identifier": "redstone_block" - } - }, - { - "java_state": { - "Name": "minecraft:nether_quartz_ore" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_ore" - } - }, - { - "java_state": { - "Properties": { - "facing": "down", - "enabled": "true" - }, - "Name": "minecraft:hopper" - }, - "bedrock_state": { - "bedrock_identifier": "hopper", - "state": { - "facing_direction": 0, - "toggle_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "enabled": "true" - }, - "Name": "minecraft:hopper" - }, - "bedrock_state": { - "bedrock_identifier": "hopper", - "state": { - "facing_direction": 2, - "toggle_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "enabled": "true" - }, - "Name": "minecraft:hopper" - }, - "bedrock_state": { - "bedrock_identifier": "hopper", - "state": { - "facing_direction": 3, - "toggle_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "enabled": "true" - }, - "Name": "minecraft:hopper" - }, - "bedrock_state": { - "bedrock_identifier": "hopper", - "state": { - "facing_direction": 4, - "toggle_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "enabled": "true" - }, - "Name": "minecraft:hopper" - }, - "bedrock_state": { - "bedrock_identifier": "hopper", - "state": { - "facing_direction": 5, - "toggle_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "facing": "down", - "enabled": "false" - }, - "Name": "minecraft:hopper" - }, - "bedrock_state": { - "bedrock_identifier": "hopper", - "state": { - "facing_direction": 0, - "toggle_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "enabled": "false" - }, - "Name": "minecraft:hopper" - }, - "bedrock_state": { - "bedrock_identifier": "hopper", - "state": { - "facing_direction": 2, - "toggle_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "enabled": "false" - }, - "Name": "minecraft:hopper" - }, - "bedrock_state": { - "bedrock_identifier": "hopper", - "state": { - "facing_direction": 3, - "toggle_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "enabled": "false" - }, - "Name": "minecraft:hopper" - }, - "bedrock_state": { - "bedrock_identifier": "hopper", - "state": { - "facing_direction": 4, - "toggle_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "enabled": "false" - }, - "Name": "minecraft:hopper" - }, - "bedrock_state": { - "bedrock_identifier": "hopper", - "state": { - "facing_direction": 5, - "toggle_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:quartz_block" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_block", - "state": { - "chisel_type": "default", - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Name": "minecraft:chiseled_quartz_block" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_block", - "state": { - "chisel_type": "chiseled", - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:quartz_pillar" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_block", - "state": { - "chisel_type": "lines", - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:quartz_pillar" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_block", - "state": { - "chisel_type": "lines", - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:quartz_pillar" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_block", - "state": { - "chisel_type": "lines", - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "north_south", - "powered": "true" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 0, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "north_south", - "powered": "true" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 0, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "east_west", - "powered": "true" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 1, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "east_west", - "powered": "true" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 1, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_east", - "powered": "true" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 2, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_east", - "powered": "true" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 2, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_west", - "powered": "true" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 3, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_west", - "powered": "true" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 3, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_north", - "powered": "true" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 4, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_north", - "powered": "true" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 4, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_south", - "powered": "true" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 5, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_south", - "powered": "true" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 5, - "rail_data_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "north_south", - "powered": "false" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 0, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "north_south", - "powered": "false" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 0, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "east_west", - "powered": "false" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 1, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "east_west", - "powered": "false" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 1, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_east", - "powered": "false" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 2, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_east", - "powered": "false" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 2, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_west", - "powered": "false" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 3, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_west", - "powered": "false" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 3, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_north", - "powered": "false" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 4, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_north", - "powered": "false" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 4, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "ascending_south", - "powered": "false" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 5, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "ascending_south", - "powered": "false" - }, - "Name": "minecraft:activator_rail" - }, - "bedrock_state": { - "bedrock_identifier": "activator_rail", - "state": { - "rail_direction": 5, - "rail_data_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "facing": "north" - }, - "Name": "minecraft:dropper" - }, - "bedrock_state": { - "bedrock_identifier": "dropper", - "state": { - "facing_direction": 2, - "triggered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "facing": "north" - }, - "Name": "minecraft:dropper" - }, - "bedrock_state": { - "bedrock_identifier": "dropper", - "state": { - "facing_direction": 2, - "triggered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "facing": "east" - }, - "Name": "minecraft:dropper" - }, - "bedrock_state": { - "bedrock_identifier": "dropper", - "state": { - "facing_direction": 5, - "triggered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "facing": "east" - }, - "Name": "minecraft:dropper" - }, - "bedrock_state": { - "bedrock_identifier": "dropper", - "state": { - "facing_direction": 5, - "triggered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "facing": "south" - }, - "Name": "minecraft:dropper" - }, - "bedrock_state": { - "bedrock_identifier": "dropper", - "state": { - "facing_direction": 3, - "triggered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "facing": "south" - }, - "Name": "minecraft:dropper" - }, - "bedrock_state": { - "bedrock_identifier": "dropper", - "state": { - "facing_direction": 3, - "triggered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "facing": "west" - }, - "Name": "minecraft:dropper" - }, - "bedrock_state": { - "bedrock_identifier": "dropper", - "state": { - "facing_direction": 4, - "triggered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "facing": "west" - }, - "Name": "minecraft:dropper" - }, - "bedrock_state": { - "bedrock_identifier": "dropper", - "state": { - "facing_direction": 4, - "triggered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "facing": "up" - }, - "Name": "minecraft:dropper" - }, - "bedrock_state": { - "bedrock_identifier": "dropper", - "state": { - "facing_direction": 1, - "triggered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "facing": "up" - }, - "Name": "minecraft:dropper" - }, - "bedrock_state": { - "bedrock_identifier": "dropper", - "state": { - "facing_direction": 1, - "triggered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "facing": "down" - }, - "Name": "minecraft:dropper" - }, - "bedrock_state": { - "bedrock_identifier": "dropper", - "state": { - "facing_direction": 0, - "triggered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "facing": "down" - }, - "Name": "minecraft:dropper" - }, - "bedrock_state": { - "bedrock_identifier": "dropper", - "state": { - "facing_direction": 0, - "triggered_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:white_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "white_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:orange_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "orange_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:magenta_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:light_blue_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:yellow_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:lime_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "lime_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:pink_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "pink_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:gray_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "gray_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:light_gray_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:cyan_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:purple_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "purple_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:blue_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "blue_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:brown_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "brown_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:green_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "green_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:red_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "red_terracotta" - } - }, - { - "java_state": { - "Name": "minecraft:black_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "black_terracotta" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:white_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "white_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:orange_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "orange_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:magenta_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:yellow_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:lime_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "lime_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:pink_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "pink_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:light_gray_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cyan_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:purple_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "purple_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:blue_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "blue_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:brown_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "brown_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:green_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "green_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:red_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "red_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:black_stained_glass_pane" - }, - "bedrock_state": { - "bedrock_identifier": "black_stained_glass_pane" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:acacia_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cherry_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_oak_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mangrove_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:bamboo_mosaic_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:slime_block" - }, - "bedrock_state": { - "bedrock_identifier": "slime" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:barrier" - }, - "bedrock_state": { - "bedrock_identifier": "barrier" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:barrier" - }, - "bedrock_state": { - "bedrock_identifier": "barrier" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "0" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "0" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "1" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "1" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "2" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "2" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "3" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "3" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "4" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "4" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "5" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "5" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "6" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "6" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "7" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "7" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "8" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "8" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "9" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "9" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "10" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "10" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "11" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "11" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "12" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "12" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "13" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "13" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "14" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "14" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "level": "15" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "level": "15" - }, - "Name": "minecraft:light" - }, - "bedrock_state": { - "bedrock_identifier": "light_block", - "state": { - "block_light_level": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:iron_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "iron_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Name": "minecraft:prismarine" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine", - "state": { - "prismarine_block_type": "default" - } - } - }, - { - "java_state": { - "Name": "minecraft:prismarine_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine", - "state": { - "prismarine_block_type": "bricks" - } - } - }, - { - "java_state": { - "Name": "minecraft:dark_prismarine" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine", - "state": { - "prismarine_block_type": "dark" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:prismarine_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "prismarine_bricks_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:dark_prismarine_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "dark_prismarine_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:prismarine_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_rough", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:prismarine_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_rough", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:prismarine_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_rough", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:prismarine_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_rough", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:prismarine_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_rough", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:prismarine_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_rough", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:prismarine_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_brick", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:prismarine_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_brick", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:prismarine_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:prismarine_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:prismarine_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:prismarine_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:dark_prismarine_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_dark", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:dark_prismarine_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_dark", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:dark_prismarine_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_dark", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:dark_prismarine_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_dark", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:dark_prismarine_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_dark", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:dark_prismarine_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "prismarine_dark", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Name": "minecraft:sea_lantern" - }, - "bedrock_state": { - "bedrock_identifier": "sea_lantern" - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:hay_block" - }, - "bedrock_state": { - "bedrock_identifier": "hay_block", - "state": { - "pillar_axis": "x", - "deprecated": 0 - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:hay_block" - }, - "bedrock_state": { - "bedrock_identifier": "hay_block", - "state": { - "pillar_axis": "y", - "deprecated": 0 - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:hay_block" - }, - "bedrock_state": { - "bedrock_identifier": "hay_block", - "state": { - "pillar_axis": "z", - "deprecated": 0 - } - } - }, - { - "java_state": { - "Name": "minecraft:white_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "white_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:orange_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "orange_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:magenta_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:light_blue_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:yellow_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:lime_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "lime_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:pink_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "pink_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:gray_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "gray_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:light_gray_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:cyan_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:purple_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "purple_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:blue_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "blue_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:brown_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "brown_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:green_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "green_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:red_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "red_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:black_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "black_carpet" - } - }, - { - "java_state": { - "Name": "minecraft:terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "hardened_clay" - } - }, - { - "java_state": { - "Name": "minecraft:coal_block" - }, - "bedrock_state": { - "bedrock_identifier": "coal_block" - } - }, - { - "java_state": { - "Name": "minecraft:packed_ice" - }, - "bedrock_state": { - "bedrock_identifier": "packed_ice" - } - }, - { - "java_state": { - "Properties": { - "half": "upper" - }, - "Name": "minecraft:sunflower" - }, - "bedrock_state": { - "bedrock_identifier": "sunflower", - "state": { - "upper_block_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "half": "lower" - }, - "Name": "minecraft:sunflower" - }, - "bedrock_state": { - "bedrock_identifier": "sunflower", - "state": { - "upper_block_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "half": "upper" - }, - "Name": "minecraft:lilac" - }, - "bedrock_state": { - "bedrock_identifier": "lilac", - "state": { - "upper_block_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "half": "lower" - }, - "Name": "minecraft:lilac" - }, - "bedrock_state": { - "bedrock_identifier": "lilac", - "state": { - "upper_block_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "half": "upper" - }, - "Name": "minecraft:rose_bush" - }, - "bedrock_state": { - "bedrock_identifier": "rose_bush", - "state": { - "upper_block_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "half": "lower" - }, - "Name": "minecraft:rose_bush" - }, - "bedrock_state": { - "bedrock_identifier": "rose_bush", - "state": { - "upper_block_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "half": "upper" - }, - "Name": "minecraft:peony" - }, - "bedrock_state": { - "bedrock_identifier": "peony", - "state": { - "upper_block_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "half": "lower" - }, - "Name": "minecraft:peony" - }, - "bedrock_state": { - "bedrock_identifier": "peony", - "state": { - "upper_block_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "half": "upper" - }, - "Name": "minecraft:tall_grass" - }, - "bedrock_state": { - "bedrock_identifier": "tall_grass", - "state": { - "upper_block_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "half": "lower" - }, - "Name": "minecraft:tall_grass" - }, - "bedrock_state": { - "bedrock_identifier": "tall_grass", - "state": { - "upper_block_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "half": "upper" - }, - "Name": "minecraft:large_fern" - }, - "bedrock_state": { - "bedrock_identifier": "large_fern", - "state": { - "upper_block_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "half": "lower" - }, - "Name": "minecraft:large_fern" - }, - "bedrock_state": { - "bedrock_identifier": "large_fern", - "state": { - "upper_block_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:white_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:orange_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:magenta_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:light_blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:yellow_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:lime_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:pink_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:light_gray_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:cyan_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:purple_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:blue_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:brown_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:green_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:red_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "0" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "1" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "2" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "3" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "4" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "5" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "6" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "7" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "8" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "9" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "10" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "11" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "12" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "13" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "14" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "rotation": "15" - }, - "Name": "minecraft:black_banner" - }, - "bedrock_state": { - "bedrock_identifier": "standing_banner", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:white_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:white_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:white_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:white_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:orange_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:orange_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:orange_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:orange_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:magenta_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:magenta_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:magenta_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:magenta_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:light_blue_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:light_blue_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:light_blue_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:light_blue_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:yellow_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:yellow_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:yellow_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:yellow_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:lime_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:lime_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:lime_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:lime_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:pink_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:pink_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:pink_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:pink_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:gray_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:gray_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:gray_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:gray_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:light_gray_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:light_gray_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:light_gray_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:light_gray_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:cyan_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:cyan_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:cyan_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:cyan_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:purple_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:purple_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:purple_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:purple_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:blue_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:blue_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:blue_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:blue_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:brown_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:brown_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:brown_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:brown_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:green_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:green_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:green_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:green_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:red_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:red_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:red_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:red_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:black_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:black_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:black_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:black_wall_banner" - }, - "bedrock_state": { - "bedrock_identifier": "wall_banner", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Name": "minecraft:red_sandstone" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone", - "state": { - "sand_stone_type": "default" - } - } - }, - { - "java_state": { - "Name": "minecraft:chiseled_red_sandstone" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone", - "state": { - "sand_stone_type": "heiroglyphs" - } - } - }, - { - "java_state": { - "Name": "minecraft:cut_red_sandstone" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone", - "state": { - "sand_stone_type": "cut" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "oak_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "oak_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "oak_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "oak_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "oak_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "oak_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:spruce_slab" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:spruce_slab" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:spruce_slab" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:spruce_slab" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:spruce_slab" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:spruce_slab" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:birch_slab" - }, - "bedrock_state": { - "bedrock_identifier": "birch_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:birch_slab" - }, - "bedrock_state": { - "bedrock_identifier": "birch_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:birch_slab" - }, - "bedrock_state": { - "bedrock_identifier": "birch_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:birch_slab" - }, - "bedrock_state": { - "bedrock_identifier": "birch_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:birch_slab" - }, - "bedrock_state": { - "bedrock_identifier": "birch_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:birch_slab" - }, - "bedrock_state": { - "bedrock_identifier": "birch_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:jungle_slab" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:jungle_slab" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:jungle_slab" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:jungle_slab" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:jungle_slab" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:jungle_slab" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:acacia_slab" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:acacia_slab" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:acacia_slab" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:acacia_slab" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:acacia_slab" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:acacia_slab" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:cherry_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:cherry_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:cherry_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:cherry_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:cherry_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:cherry_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:dark_oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:dark_oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:dark_oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:dark_oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:dark_oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:dark_oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:mangrove_slab" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:mangrove_slab" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:mangrove_slab" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:mangrove_slab" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:mangrove_slab" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:mangrove_slab" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:bamboo_slab" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:bamboo_slab" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:bamboo_slab" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:bamboo_slab" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:bamboo_slab" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:bamboo_slab" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:bamboo_mosaic_slab" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:bamboo_mosaic_slab" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:bamboo_mosaic_slab" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:bamboo_mosaic_slab" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:bamboo_mosaic_slab" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:bamboo_mosaic_slab" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_mosaic_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:stone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "stone", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:stone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "stone", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:stone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "stone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:stone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "stone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:stone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab4", - "state": { - "stone_slab_type_4": "stone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:stone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab4", - "state": { - "stone_slab_type_4": "stone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:smooth_stone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_stone_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:smooth_stone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_stone_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:smooth_stone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_stone_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:smooth_stone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_stone_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:smooth_stone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "smooth_stone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:smooth_stone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "smooth_stone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:cut_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "cut_sandstone", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:cut_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "cut_sandstone", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:cut_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "cut_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:cut_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "cut_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:cut_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab4", - "state": { - "stone_slab_type_4": "cut_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:cut_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab4", - "state": { - "stone_slab_type_4": "cut_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:petrified_oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "petrified_oak_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:petrified_oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "petrified_oak_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:petrified_oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "petrified_oak_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:petrified_oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "petrified_oak_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:petrified_oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "wood", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:petrified_oak_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "wood", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:cobblestone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:cobblestone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:cobblestone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:cobblestone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:cobblestone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "cobblestone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:cobblestone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "cobblestone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "brick_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "brick_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "brick_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "brick_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_brick_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "stone_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "stone_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:mud_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:mud_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:mud_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:mud_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:mud_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:mud_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:nether_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:nether_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:nether_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:nether_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "nether_brick_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:nether_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "nether_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:nether_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "nether_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:quartz_slab" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:quartz_slab" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:quartz_slab" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:quartz_slab" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:quartz_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "quartz", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:quartz_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab", - "state": { - "stone_slab_type": "quartz", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "red_sandstone", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "red_sandstone", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "red_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "red_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "red_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "red_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:cut_red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "cut_red_sandstone", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:cut_red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "cut_red_sandstone", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:cut_red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "cut_red_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:cut_red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "cut_red_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:cut_red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab4", - "state": { - "stone_slab_type_4": "cut_red_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:cut_red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab4", - "state": { - "stone_slab_type_4": "cut_red_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:purpur_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "purpur", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:purpur_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "purpur", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:purpur_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "purpur", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:purpur_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "purpur", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:purpur_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "purpur", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:purpur_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "purpur", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Name": "minecraft:smooth_stone" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_stone" - } - }, - { - "java_state": { - "Name": "minecraft:smooth_sandstone" - }, - "bedrock_state": { - "bedrock_identifier": "sandstone", - "state": { - "sand_stone_type": "smooth" - } - } - }, - { - "java_state": { - "Name": "minecraft:smooth_quartz" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_block", - "state": { - "chisel_type": "smooth", - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Name": "minecraft:smooth_red_sandstone" - }, - "bedrock_state": { - "bedrock_identifier": "red_sandstone", - "state": { - "sand_stone_type": "smooth" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:spruce_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:birch_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:jungle_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:acacia_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:cherry_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:dark_oak_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:mangrove_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:bamboo_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:spruce_fence" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:birch_fence" - }, - "bedrock_state": { - "bedrock_identifier": "birch_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:jungle_fence" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:acacia_fence" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:cherry_fence" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:dark_oak_fence" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:mangrove_fence" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:bamboo_fence" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_fence" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:spruce_door" - }, - "bedrock_state": { - "bedrock_identifier": "spruce_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:birch_door" - }, - "bedrock_state": { - "bedrock_identifier": "birch_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:jungle_door" - }, - "bedrock_state": { - "bedrock_identifier": "jungle_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:acacia_door" - }, - "bedrock_state": { - "bedrock_identifier": "acacia_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:cherry_door" - }, - "bedrock_state": { - "bedrock_identifier": "cherry_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:dark_oak_door" - }, - "bedrock_state": { - "bedrock_identifier": "dark_oak_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:mangrove_door" - }, - "bedrock_state": { - "bedrock_identifier": "mangrove_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:bamboo_door" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:end_rod" - }, - "bedrock_state": { - "bedrock_identifier": "end_rod", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:end_rod" - }, - "bedrock_state": { - "bedrock_identifier": "end_rod", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:end_rod" - }, - "bedrock_state": { - "bedrock_identifier": "end_rod", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:end_rod" - }, - "bedrock_state": { - "bedrock_identifier": "end_rod", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:end_rod" - }, - "bedrock_state": { - "bedrock_identifier": "end_rod", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:end_rod" - }, - "bedrock_state": { - "bedrock_identifier": "end_rod", - "state": { - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:chorus_plant" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_plant" - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:chorus_flower" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_flower", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:chorus_flower" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_flower", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:chorus_flower" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_flower", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:chorus_flower" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_flower", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "age": "4" - }, - "Name": "minecraft:chorus_flower" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_flower", - "state": { - "age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "age": "5" - }, - "Name": "minecraft:chorus_flower" - }, - "bedrock_state": { - "bedrock_identifier": "chorus_flower", - "state": { - "age": 5 - } - } - }, - { - "java_state": { - "Name": "minecraft:purpur_block" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_block", - "state": { - "chisel_type": "default", - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:purpur_pillar" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_block", - "state": { - "chisel_type": "lines", - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:purpur_pillar" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_block", - "state": { - "chisel_type": "lines", - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:purpur_pillar" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_block", - "state": { - "chisel_type": "lines", - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:purpur_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "purpur_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Name": "minecraft:end_stone_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "end_bricks" - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:torchflower_crop" - }, - "bedrock_state": { - "bedrock_identifier": "torchflower_crop", - "state": { - "growth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:torchflower_crop" - }, - "bedrock_state": { - "bedrock_identifier": "torchflower_crop", - "state": { - "growth": 4 - } - } - }, - { - "java_state": { - "Properties": { - "half": "upper", - "age": "0" - }, - "Name": "minecraft:pitcher_crop" - }, - "bedrock_state": { - "bedrock_identifier": "pitcher_crop", - "state": { - "upper_block_bit": true, - "growth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "half": "lower", - "age": "0" - }, - "Name": "minecraft:pitcher_crop" - }, - "bedrock_state": { - "bedrock_identifier": "pitcher_crop", - "state": { - "upper_block_bit": false, - "growth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "half": "upper", - "age": "1" - }, - "Name": "minecraft:pitcher_crop" - }, - "bedrock_state": { - "bedrock_identifier": "pitcher_crop", - "state": { - "upper_block_bit": true, - "growth": 1 - } - } - }, - { - "java_state": { - "Properties": { - "half": "lower", - "age": "1" - }, - "Name": "minecraft:pitcher_crop" - }, - "bedrock_state": { - "bedrock_identifier": "pitcher_crop", - "state": { - "upper_block_bit": false, - "growth": 1 - } - } - }, - { - "java_state": { - "Properties": { - "half": "upper", - "age": "2" - }, - "Name": "minecraft:pitcher_crop" - }, - "bedrock_state": { - "bedrock_identifier": "pitcher_crop", - "state": { - "upper_block_bit": true, - "growth": 3 - } - } - }, - { - "java_state": { - "Properties": { - "half": "lower", - "age": "2" - }, - "Name": "minecraft:pitcher_crop" - }, - "bedrock_state": { - "bedrock_identifier": "pitcher_crop", - "state": { - "upper_block_bit": false, - "growth": 3 - } - } - }, - { - "java_state": { - "Properties": { - "half": "upper", - "age": "3" - }, - "Name": "minecraft:pitcher_crop" - }, - "bedrock_state": { - "bedrock_identifier": "pitcher_crop", - "state": { - "upper_block_bit": true, - "growth": 5 - } - } - }, - { - "java_state": { - "Properties": { - "half": "lower", - "age": "3" - }, - "Name": "minecraft:pitcher_crop" - }, - "bedrock_state": { - "bedrock_identifier": "pitcher_crop", - "state": { - "upper_block_bit": false, - "growth": 5 - } - } - }, - { - "java_state": { - "Properties": { - "half": "upper", - "age": "4" - }, - "Name": "minecraft:pitcher_crop" - }, - "bedrock_state": { - "bedrock_identifier": "pitcher_crop", - "state": { - "upper_block_bit": true, - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "half": "lower", - "age": "4" - }, - "Name": "minecraft:pitcher_crop" - }, - "bedrock_state": { - "bedrock_identifier": "pitcher_crop", - "state": { - "upper_block_bit": false, - "growth": 7 - } - } - }, - { - "java_state": { - "Properties": { - "half": "upper" - }, - "Name": "minecraft:pitcher_plant" - }, - "bedrock_state": { - "bedrock_identifier": "pitcher_plant", - "state": { - "upper_block_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "half": "lower" - }, - "Name": "minecraft:pitcher_plant" - }, - "bedrock_state": { - "bedrock_identifier": "pitcher_plant", - "state": { - "upper_block_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:beetroots" - }, - "bedrock_state": { - "bedrock_identifier": "beetroot", - "state": { - "growth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:beetroots" - }, - "bedrock_state": { - "bedrock_identifier": "beetroot", - "state": { - "growth": 3 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:beetroots" - }, - "bedrock_state": { - "bedrock_identifier": "beetroot", - "state": { - "growth": 4 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:beetroots" - }, - "bedrock_state": { - "bedrock_identifier": "beetroot", - "state": { - "growth": 7 - } - } - }, - { - "java_state": { - "Name": "minecraft:dirt_path" - }, - "bedrock_state": { - "bedrock_identifier": "grass_path" - } - }, - { - "java_state": { - "Name": "minecraft:end_gateway" - }, - "bedrock_state": { - "bedrock_identifier": "end_gateway" - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "conditional": "true" - }, - "Name": "minecraft:repeating_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "repeating_command_block", - "state": { - "conditional_bit": true, - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "conditional": "true" - }, - "Name": "minecraft:repeating_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "repeating_command_block", - "state": { - "conditional_bit": true, - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "conditional": "true" - }, - "Name": "minecraft:repeating_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "repeating_command_block", - "state": { - "conditional_bit": true, - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "conditional": "true" - }, - "Name": "minecraft:repeating_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "repeating_command_block", - "state": { - "conditional_bit": true, - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "up", - "conditional": "true" - }, - "Name": "minecraft:repeating_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "repeating_command_block", - "state": { - "conditional_bit": true, - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "down", - "conditional": "true" - }, - "Name": "minecraft:repeating_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "repeating_command_block", - "state": { - "conditional_bit": true, - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "conditional": "false" - }, - "Name": "minecraft:repeating_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "repeating_command_block", - "state": { - "conditional_bit": false, - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "conditional": "false" - }, - "Name": "minecraft:repeating_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "repeating_command_block", - "state": { - "conditional_bit": false, - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "conditional": "false" - }, - "Name": "minecraft:repeating_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "repeating_command_block", - "state": { - "conditional_bit": false, - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "conditional": "false" - }, - "Name": "minecraft:repeating_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "repeating_command_block", - "state": { - "conditional_bit": false, - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "up", - "conditional": "false" - }, - "Name": "minecraft:repeating_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "repeating_command_block", - "state": { - "conditional_bit": false, - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "down", - "conditional": "false" - }, - "Name": "minecraft:repeating_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "repeating_command_block", - "state": { - "conditional_bit": false, - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "conditional": "true" - }, - "Name": "minecraft:chain_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "chain_command_block", - "state": { - "conditional_bit": true, - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "conditional": "true" - }, - "Name": "minecraft:chain_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "chain_command_block", - "state": { - "conditional_bit": true, - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "conditional": "true" - }, - "Name": "minecraft:chain_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "chain_command_block", - "state": { - "conditional_bit": true, - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "conditional": "true" - }, - "Name": "minecraft:chain_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "chain_command_block", - "state": { - "conditional_bit": true, - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "up", - "conditional": "true" - }, - "Name": "minecraft:chain_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "chain_command_block", - "state": { - "conditional_bit": true, - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "down", - "conditional": "true" - }, - "Name": "minecraft:chain_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "chain_command_block", - "state": { - "conditional_bit": true, - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "conditional": "false" - }, - "Name": "minecraft:chain_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "chain_command_block", - "state": { - "conditional_bit": false, - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "conditional": "false" - }, - "Name": "minecraft:chain_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "chain_command_block", - "state": { - "conditional_bit": false, - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "conditional": "false" - }, - "Name": "minecraft:chain_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "chain_command_block", - "state": { - "conditional_bit": false, - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "conditional": "false" - }, - "Name": "minecraft:chain_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "chain_command_block", - "state": { - "conditional_bit": false, - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "up", - "conditional": "false" - }, - "Name": "minecraft:chain_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "chain_command_block", - "state": { - "conditional_bit": false, - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "down", - "conditional": "false" - }, - "Name": "minecraft:chain_command_block" - }, - "bedrock_state": { - "bedrock_identifier": "chain_command_block", - "state": { - "conditional_bit": false, - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:frosted_ice" - }, - "bedrock_state": { - "bedrock_identifier": "frosted_ice", - "state": { - "age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:frosted_ice" - }, - "bedrock_state": { - "bedrock_identifier": "frosted_ice", - "state": { - "age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:frosted_ice" - }, - "bedrock_state": { - "bedrock_identifier": "frosted_ice", - "state": { - "age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:frosted_ice" - }, - "bedrock_state": { - "bedrock_identifier": "frosted_ice", - "state": { - "age": 3 - } - } - }, - { - "java_state": { - "Name": "minecraft:magma_block" - }, - "bedrock_state": { - "bedrock_identifier": "magma" - } - }, - { - "java_state": { - "Name": "minecraft:nether_wart_block" - }, - "bedrock_state": { - "bedrock_identifier": "nether_wart_block" - } - }, - { - "java_state": { - "Name": "minecraft:red_nether_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick" - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:bone_block" - }, - "bedrock_state": { - "bedrock_identifier": "bone_block", - "state": { - "pillar_axis": "x", - "deprecated": 0 - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:bone_block" - }, - "bedrock_state": { - "bedrock_identifier": "bone_block", - "state": { - "pillar_axis": "y", - "deprecated": 0 - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:bone_block" - }, - "bedrock_state": { - "bedrock_identifier": "bone_block", - "state": { - "pillar_axis": "z", - "deprecated": 0 - } - } - }, - { - "java_state": { - "Name": "minecraft:structure_void" - }, - "bedrock_state": { - "bedrock_identifier": "structure_void", - "state": { - "structure_void_type": "air" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north" - }, - "Name": "minecraft:observer" - }, - "bedrock_state": { - "bedrock_identifier": "observer", - "state": { - "minecraft:facing_direction": "north", - "powered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north" - }, - "Name": "minecraft:observer" - }, - "bedrock_state": { - "bedrock_identifier": "observer", - "state": { - "minecraft:facing_direction": "north", - "powered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east" - }, - "Name": "minecraft:observer" - }, - "bedrock_state": { - "bedrock_identifier": "observer", - "state": { - "minecraft:facing_direction": "east", - "powered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east" - }, - "Name": "minecraft:observer" - }, - "bedrock_state": { - "bedrock_identifier": "observer", - "state": { - "minecraft:facing_direction": "east", - "powered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south" - }, - "Name": "minecraft:observer" - }, - "bedrock_state": { - "bedrock_identifier": "observer", - "state": { - "minecraft:facing_direction": "south", - "powered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south" - }, - "Name": "minecraft:observer" - }, - "bedrock_state": { - "bedrock_identifier": "observer", - "state": { - "minecraft:facing_direction": "south", - "powered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west" - }, - "Name": "minecraft:observer" - }, - "bedrock_state": { - "bedrock_identifier": "observer", - "state": { - "minecraft:facing_direction": "west", - "powered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west" - }, - "Name": "minecraft:observer" - }, - "bedrock_state": { - "bedrock_identifier": "observer", - "state": { - "minecraft:facing_direction": "west", - "powered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "up" - }, - "Name": "minecraft:observer" - }, - "bedrock_state": { - "bedrock_identifier": "observer", - "state": { - "minecraft:facing_direction": "up", - "powered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "up" - }, - "Name": "minecraft:observer" - }, - "bedrock_state": { - "bedrock_identifier": "observer", - "state": { - "minecraft:facing_direction": "up", - "powered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "down" - }, - "Name": "minecraft:observer" - }, - "bedrock_state": { - "bedrock_identifier": "observer", - "state": { - "minecraft:facing_direction": "down", - "powered_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "down" - }, - "Name": "minecraft:observer" - }, - "bedrock_state": { - "bedrock_identifier": "observer", - "state": { - "minecraft:facing_direction": "down", - "powered_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "undyed_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "undyed_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "undyed_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "undyed_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "undyed_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "undyed_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:white_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "white_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:white_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "white_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:white_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "white_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:white_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "white_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:white_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "white_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:white_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "white_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:orange_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "orange_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:orange_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "orange_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:orange_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "orange_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:orange_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "orange_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:orange_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "orange_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:orange_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "orange_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:magenta_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:magenta_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:magenta_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:magenta_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:magenta_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:magenta_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:light_blue_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:light_blue_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:light_blue_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:light_blue_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:light_blue_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:light_blue_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:yellow_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:yellow_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:yellow_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:yellow_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:yellow_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:yellow_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:lime_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "lime_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:lime_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "lime_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:lime_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "lime_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:lime_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "lime_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:lime_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "lime_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:lime_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "lime_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:pink_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "pink_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:pink_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "pink_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:pink_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "pink_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:pink_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "pink_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:pink_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "pink_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:pink_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "pink_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:gray_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "gray_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:gray_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "gray_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:gray_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "gray_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:gray_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "gray_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:gray_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "gray_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:gray_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "gray_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:light_gray_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:light_gray_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:light_gray_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:light_gray_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:light_gray_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:light_gray_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:cyan_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:cyan_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:cyan_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:cyan_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:cyan_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:cyan_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:purple_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "purple_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:purple_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "purple_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:purple_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "purple_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:purple_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "purple_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:purple_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "purple_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:purple_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "purple_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:blue_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "blue_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:blue_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "blue_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:blue_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "blue_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:blue_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "blue_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:blue_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "blue_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:blue_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "blue_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:brown_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "brown_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:brown_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "brown_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:brown_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "brown_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:brown_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "brown_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:brown_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "brown_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:brown_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "brown_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:green_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "green_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:green_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "green_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:green_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "green_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:green_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "green_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:green_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "green_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:green_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "green_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:red_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "red_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:red_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "red_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:red_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "red_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:red_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "red_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:red_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "red_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:red_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "red_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:black_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "black_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:black_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "black_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:black_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "black_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:black_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "black_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "up" - }, - "Name": "minecraft:black_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "black_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "down" - }, - "Name": "minecraft:black_shulker_box" - }, - "bedrock_state": { - "bedrock_identifier": "black_shulker_box" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:white_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "white_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:white_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "white_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:white_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "white_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:white_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "white_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:orange_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "orange_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:orange_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "orange_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:orange_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "orange_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:orange_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "orange_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:magenta_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:magenta_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:magenta_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:magenta_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:light_blue_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:light_blue_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:light_blue_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:light_blue_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:yellow_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:yellow_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:yellow_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:yellow_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:lime_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "lime_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:lime_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "lime_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:lime_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "lime_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:lime_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "lime_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:pink_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "pink_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:pink_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "pink_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:pink_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "pink_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:pink_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "pink_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:gray_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "gray_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:gray_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "gray_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:gray_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "gray_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:gray_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "gray_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:light_gray_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "silver_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:light_gray_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "silver_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:light_gray_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "silver_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:light_gray_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "silver_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:cyan_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:cyan_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:cyan_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:cyan_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:purple_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "purple_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:purple_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "purple_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:purple_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "purple_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:purple_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "purple_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:blue_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "blue_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:blue_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "blue_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:blue_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "blue_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:blue_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "blue_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:brown_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "brown_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:brown_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "brown_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:brown_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "brown_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:brown_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "brown_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:green_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "green_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:green_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "green_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:green_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "green_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:green_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "green_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:red_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "red_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:red_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "red_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:red_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "red_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:red_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "red_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:black_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "black_glazed_terracotta", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:black_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "black_glazed_terracotta", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:black_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "black_glazed_terracotta", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:black_glazed_terracotta" - }, - "bedrock_state": { - "bedrock_identifier": "black_glazed_terracotta", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Name": "minecraft:white_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "white_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:orange_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "orange_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:magenta_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:light_blue_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:yellow_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:lime_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "lime_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:pink_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "pink_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:gray_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "gray_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:light_gray_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:cyan_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:purple_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "purple_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:blue_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "blue_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:brown_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "brown_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:green_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "green_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:red_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "red_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:black_concrete" - }, - "bedrock_state": { - "bedrock_identifier": "black_concrete" - } - }, - { - "java_state": { - "Name": "minecraft:white_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "white_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:orange_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "orange_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:magenta_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:light_blue_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:yellow_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:lime_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "lime_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:pink_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "pink_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:gray_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "gray_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:light_gray_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:cyan_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:purple_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "purple_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:blue_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "blue_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:brown_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "brown_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:green_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "green_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:red_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "red_concrete_powder" - } - }, - { - "java_state": { - "Name": "minecraft:black_concrete_powder" - }, - "bedrock_state": { - "bedrock_identifier": "black_concrete_powder" - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "age": "4" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "age": "5" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "age": "6" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "age": "7" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "age": "8" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "age": "9" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "age": "10" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "age": "11" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "age": "12" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "age": "13" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "age": "14" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "age": "15" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "age": "16" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 16 - } - } - }, - { - "java_state": { - "Properties": { - "age": "17" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 17 - } - } - }, - { - "java_state": { - "Properties": { - "age": "18" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 18 - } - } - }, - { - "java_state": { - "Properties": { - "age": "19" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 19 - } - } - }, - { - "java_state": { - "Properties": { - "age": "20" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 20 - } - } - }, - { - "java_state": { - "Properties": { - "age": "21" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 21 - } - } - }, - { - "java_state": { - "Properties": { - "age": "22" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 22 - } - } - }, - { - "java_state": { - "Properties": { - "age": "23" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 23 - } - } - }, - { - "java_state": { - "Properties": { - "age": "24" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 24 - } - } - }, - { - "java_state": { - "Properties": { - "age": "25" - }, - "Name": "minecraft:kelp" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 25 - } - } - }, - { - "java_state": { - "Name": "minecraft:kelp_plant" - }, - "bedrock_state": { - "bedrock_identifier": "kelp", - "state": { - "kelp_age": 0 - } - } - }, - { - "java_state": { - "Name": "minecraft:dried_kelp_block" - }, - "bedrock_state": { - "bedrock_identifier": "dried_kelp_block" - } - }, - { - "java_state": { - "Properties": { - "hatch": "0", - "eggs": "1" - }, - "Name": "minecraft:turtle_egg" - }, - "bedrock_state": { - "bedrock_identifier": "turtle_egg", - "state": { - "turtle_egg_count": "one_egg", - "cracked_state": "no_cracks" - } - } - }, - { - "java_state": { - "Properties": { - "hatch": "1", - "eggs": "1" - }, - "Name": "minecraft:turtle_egg" - }, - "bedrock_state": { - "bedrock_identifier": "turtle_egg", - "state": { - "turtle_egg_count": "one_egg", - "cracked_state": "cracked" - } - } - }, - { - "java_state": { - "Properties": { - "hatch": "2", - "eggs": "1" - }, - "Name": "minecraft:turtle_egg" - }, - "bedrock_state": { - "bedrock_identifier": "turtle_egg", - "state": { - "turtle_egg_count": "one_egg", - "cracked_state": "max_cracked" - } - } - }, - { - "java_state": { - "Properties": { - "hatch": "0", - "eggs": "2" - }, - "Name": "minecraft:turtle_egg" - }, - "bedrock_state": { - "bedrock_identifier": "turtle_egg", - "state": { - "turtle_egg_count": "two_egg", - "cracked_state": "no_cracks" - } - } - }, - { - "java_state": { - "Properties": { - "hatch": "1", - "eggs": "2" - }, - "Name": "minecraft:turtle_egg" - }, - "bedrock_state": { - "bedrock_identifier": "turtle_egg", - "state": { - "turtle_egg_count": "two_egg", - "cracked_state": "cracked" - } - } - }, - { - "java_state": { - "Properties": { - "hatch": "2", - "eggs": "2" - }, - "Name": "minecraft:turtle_egg" - }, - "bedrock_state": { - "bedrock_identifier": "turtle_egg", - "state": { - "turtle_egg_count": "two_egg", - "cracked_state": "max_cracked" - } - } - }, - { - "java_state": { - "Properties": { - "hatch": "0", - "eggs": "3" - }, - "Name": "minecraft:turtle_egg" - }, - "bedrock_state": { - "bedrock_identifier": "turtle_egg", - "state": { - "turtle_egg_count": "three_egg", - "cracked_state": "no_cracks" - } - } - }, - { - "java_state": { - "Properties": { - "hatch": "1", - "eggs": "3" - }, - "Name": "minecraft:turtle_egg" - }, - "bedrock_state": { - "bedrock_identifier": "turtle_egg", - "state": { - "turtle_egg_count": "three_egg", - "cracked_state": "cracked" - } - } - }, - { - "java_state": { - "Properties": { - "hatch": "2", - "eggs": "3" - }, - "Name": "minecraft:turtle_egg" - }, - "bedrock_state": { - "bedrock_identifier": "turtle_egg", - "state": { - "turtle_egg_count": "three_egg", - "cracked_state": "max_cracked" - } - } - }, - { - "java_state": { - "Properties": { - "hatch": "0", - "eggs": "4" - }, - "Name": "minecraft:turtle_egg" - }, - "bedrock_state": { - "bedrock_identifier": "turtle_egg", - "state": { - "turtle_egg_count": "four_egg", - "cracked_state": "no_cracks" - } - } - }, - { - "java_state": { - "Properties": { - "hatch": "1", - "eggs": "4" - }, - "Name": "minecraft:turtle_egg" - }, - "bedrock_state": { - "bedrock_identifier": "turtle_egg", - "state": { - "turtle_egg_count": "four_egg", - "cracked_state": "cracked" - } - } - }, - { - "java_state": { - "Properties": { - "hatch": "2", - "eggs": "4" - }, - "Name": "minecraft:turtle_egg" - }, - "bedrock_state": { - "bedrock_identifier": "turtle_egg", - "state": { - "turtle_egg_count": "four_egg", - "cracked_state": "max_cracked" - } - } - }, - { - "java_state": { - "Properties": { - "hatch": "0" - }, - "Name": "minecraft:sniffer_egg" - }, - "bedrock_state": { - "bedrock_identifier": "sniffer_egg", - "state": { - "cracked_state": "no_cracks" - } - } - }, - { - "java_state": { - "Properties": { - "hatch": "1" - }, - "Name": "minecraft:sniffer_egg" - }, - "bedrock_state": { - "bedrock_identifier": "sniffer_egg", - "state": { - "cracked_state": "cracked" - } - } - }, - { - "java_state": { - "Properties": { - "hatch": "2" - }, - "Name": "minecraft:sniffer_egg" - }, - "bedrock_state": { - "bedrock_identifier": "sniffer_egg", - "state": { - "cracked_state": "max_cracked" - } - } - }, - { - "java_state": { - "Name": "minecraft:dead_tube_coral_block" - }, - "bedrock_state": { - "bedrock_identifier": "dead_tube_coral_block" - } - }, - { - "java_state": { - "Name": "minecraft:dead_brain_coral_block" - }, - "bedrock_state": { - "bedrock_identifier": "dead_brain_coral_block" - } - }, - { - "java_state": { - "Name": "minecraft:dead_bubble_coral_block" - }, - "bedrock_state": { - "bedrock_identifier": "dead_bubble_coral_block" - } - }, - { - "java_state": { - "Name": "minecraft:dead_fire_coral_block" - }, - "bedrock_state": { - "bedrock_identifier": "dead_fire_coral_block" - } - }, - { - "java_state": { - "Name": "minecraft:dead_horn_coral_block" - }, - "bedrock_state": { - "bedrock_identifier": "dead_horn_coral_block" - } - }, - { - "java_state": { - "Name": "minecraft:tube_coral_block" - }, - "bedrock_state": { - "bedrock_identifier": "tube_coral_block" - } - }, - { - "java_state": { - "Name": "minecraft:brain_coral_block" - }, - "bedrock_state": { - "bedrock_identifier": "brain_coral_block" - } - }, - { - "java_state": { - "Name": "minecraft:bubble_coral_block" - }, - "bedrock_state": { - "bedrock_identifier": "bubble_coral_block" - } - }, - { - "java_state": { - "Name": "minecraft:fire_coral_block" - }, - "bedrock_state": { - "bedrock_identifier": "fire_coral_block" - } - }, - { - "java_state": { - "Name": "minecraft:horn_coral_block" - }, - "bedrock_state": { - "bedrock_identifier": "horn_coral_block" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:dead_tube_coral" - }, - "bedrock_state": { - "bedrock_identifier": "dead_tube_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:dead_tube_coral" - }, - "bedrock_state": { - "bedrock_identifier": "dead_tube_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:dead_brain_coral" - }, - "bedrock_state": { - "bedrock_identifier": "dead_brain_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:dead_brain_coral" - }, - "bedrock_state": { - "bedrock_identifier": "dead_brain_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:dead_bubble_coral" - }, - "bedrock_state": { - "bedrock_identifier": "dead_bubble_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:dead_bubble_coral" - }, - "bedrock_state": { - "bedrock_identifier": "dead_bubble_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:dead_fire_coral" - }, - "bedrock_state": { - "bedrock_identifier": "dead_fire_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:dead_fire_coral" - }, - "bedrock_state": { - "bedrock_identifier": "dead_fire_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:dead_horn_coral" - }, - "bedrock_state": { - "bedrock_identifier": "dead_horn_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:dead_horn_coral" - }, - "bedrock_state": { - "bedrock_identifier": "dead_horn_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:tube_coral" - }, - "bedrock_state": { - "bedrock_identifier": "tube_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:tube_coral" - }, - "bedrock_state": { - "bedrock_identifier": "tube_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:brain_coral" - }, - "bedrock_state": { - "bedrock_identifier": "brain_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:brain_coral" - }, - "bedrock_state": { - "bedrock_identifier": "brain_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:bubble_coral" - }, - "bedrock_state": { - "bedrock_identifier": "bubble_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:bubble_coral" - }, - "bedrock_state": { - "bedrock_identifier": "bubble_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:fire_coral" - }, - "bedrock_state": { - "bedrock_identifier": "fire_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:fire_coral" - }, - "bedrock_state": { - "bedrock_identifier": "fire_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:horn_coral" - }, - "bedrock_state": { - "bedrock_identifier": "horn_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:horn_coral" - }, - "bedrock_state": { - "bedrock_identifier": "horn_coral" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:dead_tube_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "dead_tube_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:dead_tube_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "dead_tube_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:dead_brain_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "dead_brain_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:dead_brain_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "dead_brain_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:dead_bubble_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "dead_bubble_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:dead_bubble_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "dead_bubble_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:dead_fire_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "dead_fire_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:dead_fire_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "dead_fire_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:dead_horn_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "dead_horn_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:dead_horn_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "dead_horn_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:tube_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "tube_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:tube_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "tube_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:brain_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "brain_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:brain_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "brain_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:bubble_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "bubble_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:bubble_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "bubble_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:fire_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "fire_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:fire_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "fire_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:horn_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "horn_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:horn_coral_fan" - }, - "bedrock_state": { - "bedrock_identifier": "horn_coral_fan", - "state": { - "coral_fan_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:dead_tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 2, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:dead_tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 2, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:dead_tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 3, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:dead_tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 3, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:dead_tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 0, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:dead_tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 0, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:dead_tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 1, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:dead_tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 1, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:dead_brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 2, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:dead_brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 2, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:dead_brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 3, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:dead_brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 3, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:dead_brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 0, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:dead_brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 0, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:dead_brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 1, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:dead_brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 1, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:dead_bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 2, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:dead_bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 2, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:dead_bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 3, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:dead_bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 3, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:dead_bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 0, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:dead_bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 0, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:dead_bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 1, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:dead_bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 1, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:dead_fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 2, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:dead_fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 2, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:dead_fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 3, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:dead_fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 3, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:dead_fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 0, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:dead_fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 0, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:dead_fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 1, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:dead_fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 1, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:dead_horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 2, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:dead_horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 2, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:dead_horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 3, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:dead_horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 3, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:dead_horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 0, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:dead_horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 0, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:dead_horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 1, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:dead_horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 1, - "dead_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 2, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 2, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 3, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 3, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 0, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 0, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 1, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:tube_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 1, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 2, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 2, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 3, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 3, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 0, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 0, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 1, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:brain_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 1, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 2, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 2, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 3, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 3, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 0, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 0, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 1, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:bubble_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 1, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 2, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 2, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 3, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 3, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 0, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 0, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 1, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:fire_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang2", - "state": { - "coral_hang_type_bit": true, - "coral_direction": 1, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 2, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 2, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 3, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 3, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 0, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 0, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 1, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:horn_coral_wall_fan" - }, - "bedrock_state": { - "bedrock_identifier": "coral_fan_hang3", - "state": { - "coral_hang_type_bit": false, - "coral_direction": 1, - "dead_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "pickles": "1" - }, - "Name": "minecraft:sea_pickle" - }, - "bedrock_state": { - "bedrock_identifier": "sea_pickle", - "state": { - "dead_bit": false, - "cluster_count": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "pickles": "1" - }, - "Name": "minecraft:sea_pickle" - }, - "bedrock_state": { - "bedrock_identifier": "sea_pickle", - "state": { - "dead_bit": true, - "cluster_count": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "pickles": "2" - }, - "Name": "minecraft:sea_pickle" - }, - "bedrock_state": { - "bedrock_identifier": "sea_pickle", - "state": { - "dead_bit": false, - "cluster_count": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "pickles": "2" - }, - "Name": "minecraft:sea_pickle" - }, - "bedrock_state": { - "bedrock_identifier": "sea_pickle", - "state": { - "dead_bit": true, - "cluster_count": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "pickles": "3" - }, - "Name": "minecraft:sea_pickle" - }, - "bedrock_state": { - "bedrock_identifier": "sea_pickle", - "state": { - "dead_bit": false, - "cluster_count": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "pickles": "3" - }, - "Name": "minecraft:sea_pickle" - }, - "bedrock_state": { - "bedrock_identifier": "sea_pickle", - "state": { - "dead_bit": true, - "cluster_count": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "pickles": "4" - }, - "Name": "minecraft:sea_pickle" - }, - "bedrock_state": { - "bedrock_identifier": "sea_pickle", - "state": { - "dead_bit": false, - "cluster_count": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "pickles": "4" - }, - "Name": "minecraft:sea_pickle" - }, - "bedrock_state": { - "bedrock_identifier": "sea_pickle", - "state": { - "dead_bit": true, - "cluster_count": 3 - } - } - }, - { - "java_state": { - "Name": "minecraft:blue_ice" - }, - "bedrock_state": { - "bedrock_identifier": "blue_ice" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:conduit" - }, - "bedrock_state": { - "bedrock_identifier": "conduit" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:conduit" - }, - "bedrock_state": { - "bedrock_identifier": "conduit" - } - }, - { - "java_state": { - "Name": "minecraft:bamboo_sapling" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo_sapling", - "state": { - "age_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "stage": "0", - "leaves": "none", - "age": "0" - }, - "Name": "minecraft:bamboo" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo", - "state": { - "bamboo_leaf_size": "no_leaves", - "age_bit": false, - "bamboo_stalk_thickness": "thin" - } - } - }, - { - "java_state": { - "Properties": { - "stage": "1", - "leaves": "none", - "age": "0" - }, - "Name": "minecraft:bamboo" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo", - "state": { - "bamboo_leaf_size": "no_leaves", - "age_bit": false, - "bamboo_stalk_thickness": "thin" - } - } - }, - { - "java_state": { - "Properties": { - "stage": "0", - "leaves": "small", - "age": "0" - }, - "Name": "minecraft:bamboo" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo", - "state": { - "bamboo_leaf_size": "small_leaves", - "age_bit": false, - "bamboo_stalk_thickness": "thin" - } - } - }, - { - "java_state": { - "Properties": { - "stage": "1", - "leaves": "small", - "age": "0" - }, - "Name": "minecraft:bamboo" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo", - "state": { - "bamboo_leaf_size": "small_leaves", - "age_bit": false, - "bamboo_stalk_thickness": "thin" - } - } - }, - { - "java_state": { - "Properties": { - "stage": "0", - "leaves": "large", - "age": "0" - }, - "Name": "minecraft:bamboo" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo", - "state": { - "bamboo_leaf_size": "large_leaves", - "age_bit": false, - "bamboo_stalk_thickness": "thin" - } - } - }, - { - "java_state": { - "Properties": { - "stage": "1", - "leaves": "large", - "age": "0" - }, - "Name": "minecraft:bamboo" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo", - "state": { - "bamboo_leaf_size": "large_leaves", - "age_bit": false, - "bamboo_stalk_thickness": "thin" - } - } - }, - { - "java_state": { - "Properties": { - "stage": "0", - "leaves": "none", - "age": "1" - }, - "Name": "minecraft:bamboo" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo", - "state": { - "bamboo_leaf_size": "no_leaves", - "age_bit": false, - "bamboo_stalk_thickness": "thick" - } - } - }, - { - "java_state": { - "Properties": { - "stage": "1", - "leaves": "none", - "age": "1" - }, - "Name": "minecraft:bamboo" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo", - "state": { - "bamboo_leaf_size": "no_leaves", - "age_bit": false, - "bamboo_stalk_thickness": "thick" - } - } - }, - { - "java_state": { - "Properties": { - "stage": "0", - "leaves": "small", - "age": "1" - }, - "Name": "minecraft:bamboo" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo", - "state": { - "bamboo_leaf_size": "small_leaves", - "age_bit": false, - "bamboo_stalk_thickness": "thick" - } - } - }, - { - "java_state": { - "Properties": { - "stage": "1", - "leaves": "small", - "age": "1" - }, - "Name": "minecraft:bamboo" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo", - "state": { - "bamboo_leaf_size": "small_leaves", - "age_bit": false, - "bamboo_stalk_thickness": "thick" - } - } - }, - { - "java_state": { - "Properties": { - "stage": "0", - "leaves": "large", - "age": "1" - }, - "Name": "minecraft:bamboo" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo", - "state": { - "bamboo_leaf_size": "large_leaves", - "age_bit": false, - "bamboo_stalk_thickness": "thick" - } - } - }, - { - "java_state": { - "Properties": { - "stage": "1", - "leaves": "large", - "age": "1" - }, - "Name": "minecraft:bamboo" - }, - "bedrock_state": { - "bedrock_identifier": "bamboo", - "state": { - "bamboo_leaf_size": "large_leaves", - "age_bit": false, - "bamboo_stalk_thickness": "thick" - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_bamboo" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:void_air" - }, - "bedrock_state": { - "bedrock_identifier": "air" - } - }, - { - "java_state": { - "Name": "minecraft:cave_air" - }, - "bedrock_state": { - "bedrock_identifier": "air" - } - }, - { - "java_state": { - "Properties": { - "drag": "true" - }, - "Name": "minecraft:bubble_column" - }, - "bedrock_state": { - "bedrock_identifier": "bubble_column", - "state": { - "drag_down": true - } - } - }, - { - "java_state": { - "Properties": { - "drag": "false" - }, - "Name": "minecraft:bubble_column" - }, - "bedrock_state": { - "bedrock_identifier": "bubble_column", - "state": { - "drag_down": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_red_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_red_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_stone_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:mossy_cobblestone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "mossy_cobblestone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:end_stone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "end_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:stone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "normal_stone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_sandstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_sandstone_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:smooth_quartz_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_quartz_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:granite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "granite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:red_nether_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "red_nether_brick_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_andesite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_andesite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": true, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:diorite_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "diorite_stairs", - "state": { - "upside_down_bit": false, - "weirdo_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:polished_granite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_granite", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:polished_granite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_granite", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:polished_granite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_granite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:polished_granite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_granite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:polished_granite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_granite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:polished_granite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_granite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:smooth_red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "smooth_red_sandstone", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:smooth_red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "smooth_red_sandstone", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:smooth_red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "smooth_red_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:smooth_red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "smooth_red_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:smooth_red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "smooth_red_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:smooth_red_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "smooth_red_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:mossy_stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "mossy_stone_brick", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:mossy_stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "mossy_stone_brick", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:mossy_stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "mossy_stone_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:mossy_stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "mossy_stone_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:mossy_stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab4", - "state": { - "stone_slab_type_4": "mossy_stone_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:mossy_stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab4", - "state": { - "stone_slab_type_4": "mossy_stone_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:polished_diorite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_diorite", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:polished_diorite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_diorite", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:polished_diorite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_diorite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:polished_diorite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_diorite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:polished_diorite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_diorite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:polished_diorite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_diorite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:mossy_cobblestone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "mossy_cobblestone", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:mossy_cobblestone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "mossy_cobblestone", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:mossy_cobblestone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "mossy_cobblestone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:mossy_cobblestone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "mossy_cobblestone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:mossy_cobblestone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "mossy_cobblestone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:mossy_cobblestone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "mossy_cobblestone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:end_stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "end_stone_brick", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:end_stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "end_stone_brick", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:end_stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "end_stone_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:end_stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "end_stone_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:end_stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "end_stone_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:end_stone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "end_stone_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:smooth_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "smooth_sandstone", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:smooth_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "smooth_sandstone", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:smooth_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "smooth_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:smooth_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "smooth_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:smooth_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "smooth_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:smooth_sandstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "smooth_sandstone", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:smooth_quartz_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "smooth_quartz", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:smooth_quartz_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "smooth_quartz", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:smooth_quartz_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "smooth_quartz", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:smooth_quartz_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab4", - "state": { - "stone_slab_type_4": "smooth_quartz", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:smooth_quartz_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab4", - "state": { - "stone_slab_type_4": "smooth_quartz", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:smooth_quartz_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab4", - "state": { - "stone_slab_type_4": "smooth_quartz", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:granite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "granite", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:granite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "granite", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:granite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "granite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:granite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "granite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:granite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "granite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:granite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "granite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:andesite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "andesite", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:andesite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "andesite", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:andesite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "andesite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:andesite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "andesite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:andesite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "andesite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:andesite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "andesite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:red_nether_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "red_nether_brick", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:red_nether_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "red_nether_brick", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:red_nether_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "red_nether_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:red_nether_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab2", - "state": { - "stone_slab_type_2": "red_nether_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:red_nether_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "red_nether_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:red_nether_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab2", - "state": { - "stone_slab_type_2": "red_nether_brick", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:polished_andesite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_andesite", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:polished_andesite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_andesite", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:polished_andesite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_andesite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:polished_andesite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_andesite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:polished_andesite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_andesite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:polished_andesite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "polished_andesite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:diorite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "diorite", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:diorite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "diorite", - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:diorite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "diorite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:diorite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "stone_block_slab3", - "state": { - "stone_slab_type_3": "diorite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:diorite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "diorite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:diorite_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_stone_block_slab3", - "state": { - "stone_slab_type_3": "diorite", - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:prismarine_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "prismarine", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mossy_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "mossy_stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:granite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "granite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "stone_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:mud_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "mud_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:andesite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "andesite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:red_nether_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "red_nether_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:sandstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "sandstone", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:end_stone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "end_brick", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:diorite_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobblestone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_block_type": "diorite", - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "0", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 0, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "0", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 0, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "1", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 1, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "1", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 1, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "2", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 2, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "2", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 2, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "3", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 3, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "3", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 3, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "4", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 4, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "4", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 4, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "5", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 5, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "5", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 5, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "6", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 6, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "6", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 6, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "7", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 7, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "7", - "bottom": "true" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 7, - "stability_check": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "0", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 0, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "0", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 0, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "1", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 1, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "1", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 1, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "2", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 2, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "2", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 2, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "3", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 3, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "3", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 3, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "4", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 4, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "4", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 4, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "5", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 5, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "5", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 5, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "6", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 6, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "6", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 6, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "distance": "7", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 7, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "distance": "7", - "bottom": "false" - }, - "Name": "minecraft:scaffolding" - }, - "bedrock_state": { - "bedrock_identifier": "scaffolding", - "state": { - "stability": 7, - "stability_check": true - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:loom" - }, - "bedrock_state": { - "bedrock_identifier": "loom", - "state": { - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:loom" - }, - "bedrock_state": { - "bedrock_identifier": "loom", - "state": { - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:loom" - }, - "bedrock_state": { - "bedrock_identifier": "loom", - "state": { - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:loom" - }, - "bedrock_state": { - "bedrock_identifier": "loom", - "state": { - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "open": "true", - "facing": "north" - }, - "Name": "minecraft:barrel" - }, - "bedrock_state": { - "bedrock_identifier": "barrel", - "state": { - "facing_direction": 2, - "open_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "open": "false", - "facing": "north" - }, - "Name": "minecraft:barrel" - }, - "bedrock_state": { - "bedrock_identifier": "barrel", - "state": { - "facing_direction": 2, - "open_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "open": "true", - "facing": "east" - }, - "Name": "minecraft:barrel" - }, - "bedrock_state": { - "bedrock_identifier": "barrel", - "state": { - "facing_direction": 5, - "open_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "open": "false", - "facing": "east" - }, - "Name": "minecraft:barrel" - }, - "bedrock_state": { - "bedrock_identifier": "barrel", - "state": { - "facing_direction": 5, - "open_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "open": "true", - "facing": "south" - }, - "Name": "minecraft:barrel" - }, - "bedrock_state": { - "bedrock_identifier": "barrel", - "state": { - "facing_direction": 3, - "open_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "open": "false", - "facing": "south" - }, - "Name": "minecraft:barrel" - }, - "bedrock_state": { - "bedrock_identifier": "barrel", - "state": { - "facing_direction": 3, - "open_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "open": "true", - "facing": "west" - }, - "Name": "minecraft:barrel" - }, - "bedrock_state": { - "bedrock_identifier": "barrel", - "state": { - "facing_direction": 4, - "open_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "open": "false", - "facing": "west" - }, - "Name": "minecraft:barrel" - }, - "bedrock_state": { - "bedrock_identifier": "barrel", - "state": { - "facing_direction": 4, - "open_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "open": "true", - "facing": "up" - }, - "Name": "minecraft:barrel" - }, - "bedrock_state": { - "bedrock_identifier": "barrel", - "state": { - "facing_direction": 1, - "open_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "open": "false", - "facing": "up" - }, - "Name": "minecraft:barrel" - }, - "bedrock_state": { - "bedrock_identifier": "barrel", - "state": { - "facing_direction": 1, - "open_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "open": "true", - "facing": "down" - }, - "Name": "minecraft:barrel" - }, - "bedrock_state": { - "bedrock_identifier": "barrel", - "state": { - "facing_direction": 0, - "open_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "open": "false", - "facing": "down" - }, - "Name": "minecraft:barrel" - }, - "bedrock_state": { - "bedrock_identifier": "barrel", - "state": { - "facing_direction": 0, - "open_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "north" - }, - "Name": "minecraft:smoker" - }, - "bedrock_state": { - "bedrock_identifier": "lit_smoker", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "north" - }, - "Name": "minecraft:smoker" - }, - "bedrock_state": { - "bedrock_identifier": "smoker", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "south" - }, - "Name": "minecraft:smoker" - }, - "bedrock_state": { - "bedrock_identifier": "lit_smoker", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "south" - }, - "Name": "minecraft:smoker" - }, - "bedrock_state": { - "bedrock_identifier": "smoker", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "west" - }, - "Name": "minecraft:smoker" - }, - "bedrock_state": { - "bedrock_identifier": "lit_smoker", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "west" - }, - "Name": "minecraft:smoker" - }, - "bedrock_state": { - "bedrock_identifier": "smoker", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "east" - }, - "Name": "minecraft:smoker" - }, - "bedrock_state": { - "bedrock_identifier": "lit_smoker", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "east" - }, - "Name": "minecraft:smoker" - }, - "bedrock_state": { - "bedrock_identifier": "smoker", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "north" - }, - "Name": "minecraft:blast_furnace" - }, - "bedrock_state": { - "bedrock_identifier": "lit_blast_furnace", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "north" - }, - "Name": "minecraft:blast_furnace" - }, - "bedrock_state": { - "bedrock_identifier": "blast_furnace", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "south" - }, - "Name": "minecraft:blast_furnace" - }, - "bedrock_state": { - "bedrock_identifier": "lit_blast_furnace", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "south" - }, - "Name": "minecraft:blast_furnace" - }, - "bedrock_state": { - "bedrock_identifier": "blast_furnace", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "west" - }, - "Name": "minecraft:blast_furnace" - }, - "bedrock_state": { - "bedrock_identifier": "lit_blast_furnace", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "west" - }, - "Name": "minecraft:blast_furnace" - }, - "bedrock_state": { - "bedrock_identifier": "blast_furnace", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true", - "facing": "east" - }, - "Name": "minecraft:blast_furnace" - }, - "bedrock_state": { - "bedrock_identifier": "lit_blast_furnace", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false", - "facing": "east" - }, - "Name": "minecraft:blast_furnace" - }, - "bedrock_state": { - "bedrock_identifier": "blast_furnace", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Name": "minecraft:cartography_table" - }, - "bedrock_state": { - "bedrock_identifier": "cartography_table" - } - }, - { - "java_state": { - "Name": "minecraft:fletching_table" - }, - "bedrock_state": { - "bedrock_identifier": "fletching_table" - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:grindstone" - }, - "bedrock_state": { - "bedrock_identifier": "grindstone", - "state": { - "attachment": "standing", - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:grindstone" - }, - "bedrock_state": { - "bedrock_identifier": "grindstone", - "state": { - "attachment": "standing", - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:grindstone" - }, - "bedrock_state": { - "bedrock_identifier": "grindstone", - "state": { - "attachment": "standing", - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:grindstone" - }, - "bedrock_state": { - "bedrock_identifier": "grindstone", - "state": { - "attachment": "standing", - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:grindstone" - }, - "bedrock_state": { - "bedrock_identifier": "grindstone", - "state": { - "attachment": "side", - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:grindstone" - }, - "bedrock_state": { - "bedrock_identifier": "grindstone", - "state": { - "attachment": "side", - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:grindstone" - }, - "bedrock_state": { - "bedrock_identifier": "grindstone", - "state": { - "attachment": "side", - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:grindstone" - }, - "bedrock_state": { - "bedrock_identifier": "grindstone", - "state": { - "attachment": "side", - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:grindstone" - }, - "bedrock_state": { - "bedrock_identifier": "grindstone", - "state": { - "attachment": "hanging", - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:grindstone" - }, - "bedrock_state": { - "bedrock_identifier": "grindstone", - "state": { - "attachment": "hanging", - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:grindstone" - }, - "bedrock_state": { - "bedrock_identifier": "grindstone", - "state": { - "attachment": "hanging", - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:grindstone" - }, - "bedrock_state": { - "bedrock_identifier": "grindstone", - "state": { - "attachment": "hanging", - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "has_book": "true", - "facing": "north" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": true, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "has_book": "true", - "facing": "north" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": false, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "has_book": "false", - "facing": "north" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": true, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "has_book": "false", - "facing": "north" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": false, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "has_book": "true", - "facing": "south" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": true, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "has_book": "true", - "facing": "south" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": false, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "has_book": "false", - "facing": "south" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": true, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "has_book": "false", - "facing": "south" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": false, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "has_book": "true", - "facing": "west" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": true, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "has_book": "true", - "facing": "west" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": false, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "has_book": "false", - "facing": "west" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": true, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "has_book": "false", - "facing": "west" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": false, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "has_book": "true", - "facing": "east" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": true, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "has_book": "true", - "facing": "east" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": false, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "has_book": "false", - "facing": "east" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": true, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "has_book": "false", - "facing": "east" - }, - "Name": "minecraft:lectern" - }, - "bedrock_state": { - "bedrock_identifier": "lectern", - "state": { - "powered_bit": false, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Name": "minecraft:smithing_table" - }, - "bedrock_state": { - "bedrock_identifier": "smithing_table" - } - }, - { - "java_state": { - "Properties": { - "facing": "north" - }, - "Name": "minecraft:stonecutter" - }, - "bedrock_state": { - "bedrock_identifier": "stonecutter_block", - "state": { - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "south" - }, - "Name": "minecraft:stonecutter" - }, - "bedrock_state": { - "bedrock_identifier": "stonecutter_block", - "state": { - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "west" - }, - "Name": "minecraft:stonecutter" - }, - "bedrock_state": { - "bedrock_identifier": "stonecutter_block", - "state": { - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "facing": "east" - }, - "Name": "minecraft:stonecutter" - }, - "bedrock_state": { - "bedrock_identifier": "stonecutter_block", - "state": { - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "attachment": "floor" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "standing", - "toggle_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "attachment": "floor" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "standing", - "toggle_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "attachment": "floor" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "standing", - "toggle_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "attachment": "floor" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "standing", - "toggle_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "attachment": "floor" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "standing", - "toggle_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "attachment": "floor" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "standing", - "toggle_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "attachment": "floor" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "standing", - "toggle_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "attachment": "floor" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "standing", - "toggle_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "attachment": "ceiling" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "hanging", - "toggle_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "attachment": "ceiling" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "hanging", - "toggle_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "attachment": "ceiling" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "hanging", - "toggle_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "attachment": "ceiling" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "hanging", - "toggle_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "attachment": "ceiling" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "hanging", - "toggle_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "attachment": "ceiling" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "hanging", - "toggle_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "attachment": "ceiling" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "hanging", - "toggle_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "attachment": "ceiling" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "hanging", - "toggle_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "attachment": "single_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "side", - "toggle_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "attachment": "single_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "side", - "toggle_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "attachment": "single_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "side", - "toggle_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "attachment": "single_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "side", - "toggle_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "attachment": "single_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "side", - "toggle_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "attachment": "single_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "side", - "toggle_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "attachment": "single_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "side", - "toggle_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "attachment": "single_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "side", - "toggle_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "attachment": "double_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "multiple", - "toggle_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "attachment": "double_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "multiple", - "toggle_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "attachment": "double_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "multiple", - "toggle_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "attachment": "double_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "multiple", - "toggle_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "attachment": "double_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "multiple", - "toggle_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "attachment": "double_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "multiple", - "toggle_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "attachment": "double_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "multiple", - "toggle_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "attachment": "double_wall" - }, - "Name": "minecraft:bell" - }, - "bedrock_state": { - "bedrock_identifier": "bell", - "state": { - "attachment": "multiple", - "toggle_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "hanging": "true" - }, - "Name": "minecraft:lantern" - }, - "bedrock_state": { - "bedrock_identifier": "lantern", - "state": { - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "hanging": "true" - }, - "Name": "minecraft:lantern" - }, - "bedrock_state": { - "bedrock_identifier": "lantern", - "state": { - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "hanging": "false" - }, - "Name": "minecraft:lantern" - }, - "bedrock_state": { - "bedrock_identifier": "lantern", - "state": { - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "hanging": "false" - }, - "Name": "minecraft:lantern" - }, - "bedrock_state": { - "bedrock_identifier": "lantern", - "state": { - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "hanging": "true" - }, - "Name": "minecraft:soul_lantern" - }, - "bedrock_state": { - "bedrock_identifier": "soul_lantern", - "state": { - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "hanging": "true" - }, - "Name": "minecraft:soul_lantern" - }, - "bedrock_state": { - "bedrock_identifier": "soul_lantern", - "state": { - "hanging": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "hanging": "false" - }, - "Name": "minecraft:soul_lantern" - }, - "bedrock_state": { - "bedrock_identifier": "soul_lantern", - "state": { - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "hanging": "false" - }, - "Name": "minecraft:soul_lantern" - }, - "bedrock_state": { - "bedrock_identifier": "soul_lantern", - "state": { - "hanging": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "true", - "facing": "north" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "true", - "facing": "north" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "true", - "facing": "north" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "true", - "facing": "north" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "false", - "facing": "north" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "false", - "facing": "north" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "false", - "facing": "north" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "false", - "facing": "north" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "true", - "facing": "south" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "true", - "facing": "south" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "true", - "facing": "south" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "true", - "facing": "south" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "false", - "facing": "south" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "false", - "facing": "south" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "false", - "facing": "south" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "false", - "facing": "south" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "true", - "facing": "west" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "true", - "facing": "west" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "true", - "facing": "west" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "true", - "facing": "west" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "false", - "facing": "west" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "false", - "facing": "west" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "false", - "facing": "west" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "false", - "facing": "west" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "true", - "facing": "east" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "true", - "facing": "east" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "true", - "facing": "east" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "true", - "facing": "east" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "false", - "facing": "east" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "false", - "facing": "east" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "false", - "facing": "east" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "false", - "facing": "east" - }, - "Name": "minecraft:campfire" - }, - "bedrock_state": { - "bedrock_identifier": "campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "true", - "facing": "north" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "true", - "facing": "north" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "true", - "facing": "north" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "true", - "facing": "north" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "false", - "facing": "north" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "false", - "facing": "north" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "false", - "facing": "north" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "false", - "facing": "north" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "north", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "true", - "facing": "south" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "true", - "facing": "south" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "true", - "facing": "south" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "true", - "facing": "south" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "false", - "facing": "south" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "false", - "facing": "south" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "false", - "facing": "south" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "false", - "facing": "south" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "south", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "true", - "facing": "west" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "true", - "facing": "west" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "true", - "facing": "west" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "true", - "facing": "west" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "false", - "facing": "west" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "false", - "facing": "west" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "false", - "facing": "west" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "false", - "facing": "west" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "west", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "true", - "facing": "east" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "true", - "facing": "east" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "true", - "facing": "east" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "true", - "facing": "east" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "true", - "lit": "false", - "facing": "east" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "true", - "lit": "false", - "facing": "east" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "signal_fire": "false", - "lit": "false", - "facing": "east" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "signal_fire": "false", - "lit": "false", - "facing": "east" - }, - "Name": "minecraft:soul_campfire" - }, - "bedrock_state": { - "bedrock_identifier": "soul_campfire", - "state": { - "minecraft:cardinal_direction": "east", - "extinguished": true - } - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:sweet_berry_bush" - }, - "bedrock_state": { - "bedrock_identifier": "sweet_berry_bush", - "state": { - "growth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:sweet_berry_bush" - }, - "bedrock_state": { - "bedrock_identifier": "sweet_berry_bush", - "state": { - "growth": 1 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:sweet_berry_bush" - }, - "bedrock_state": { - "bedrock_identifier": "sweet_berry_bush", - "state": { - "growth": 2 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:sweet_berry_bush" - }, - "bedrock_state": { - "bedrock_identifier": "sweet_berry_bush", - "state": { - "growth": 3 - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:warped_stem" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stem", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:warped_stem" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stem", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:warped_stem" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stem", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_warped_stem" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_warped_stem", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_warped_stem" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_warped_stem", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_warped_stem" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_warped_stem", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:warped_hyphae" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hyphae", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:warped_hyphae" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hyphae", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:warped_hyphae" - }, - "bedrock_state": { - "bedrock_identifier": "warped_hyphae", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_warped_hyphae" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_warped_hyphae", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_warped_hyphae" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_warped_hyphae", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_warped_hyphae" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_warped_hyphae", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Name": "minecraft:warped_nylium" - }, - "bedrock_state": { - "bedrock_identifier": "warped_nylium" - } - }, - { - "java_state": { - "Name": "minecraft:warped_fungus" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fungus" - } - }, - { - "java_state": { - "Name": "minecraft:warped_wart_block" - }, - "bedrock_state": { - "bedrock_identifier": "warped_wart_block" - } - }, - { - "java_state": { - "Name": "minecraft:warped_roots" - }, - "bedrock_state": { - "bedrock_identifier": "warped_roots" - } - }, - { - "java_state": { - "Name": "minecraft:nether_sprouts" - }, - "bedrock_state": { - "bedrock_identifier": "nether_sprouts" - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:crimson_stem" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stem", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:crimson_stem" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stem", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:crimson_stem" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stem", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_crimson_stem" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_crimson_stem", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_crimson_stem" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_crimson_stem", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_crimson_stem" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_crimson_stem", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:crimson_hyphae" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hyphae", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:crimson_hyphae" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hyphae", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:crimson_hyphae" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_hyphae", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:stripped_crimson_hyphae" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_crimson_hyphae", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:stripped_crimson_hyphae" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_crimson_hyphae", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:stripped_crimson_hyphae" - }, - "bedrock_state": { - "bedrock_identifier": "stripped_crimson_hyphae", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Name": "minecraft:crimson_nylium" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_nylium" - } - }, - { - "java_state": { - "Name": "minecraft:crimson_fungus" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fungus" - } - }, - { - "java_state": { - "Name": "minecraft:shroomlight" - }, - "bedrock_state": { - "bedrock_identifier": "shroomlight" - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "age": "4" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "age": "5" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "age": "6" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "age": "7" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "age": "8" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "age": "9" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "age": "10" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "age": "11" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "age": "12" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "age": "13" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "age": "14" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "age": "15" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "age": "16" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 16 - } - } - }, - { - "java_state": { - "Properties": { - "age": "17" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 17 - } - } - }, - { - "java_state": { - "Properties": { - "age": "18" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 18 - } - } - }, - { - "java_state": { - "Properties": { - "age": "19" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 19 - } - } - }, - { - "java_state": { - "Properties": { - "age": "20" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 20 - } - } - }, - { - "java_state": { - "Properties": { - "age": "21" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 21 - } - } - }, - { - "java_state": { - "Properties": { - "age": "22" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 22 - } - } - }, - { - "java_state": { - "Properties": { - "age": "23" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 23 - } - } - }, - { - "java_state": { - "Properties": { - "age": "24" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 24 - } - } - }, - { - "java_state": { - "Properties": { - "age": "25" - }, - "Name": "minecraft:weeping_vines" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 25 - } - } - }, - { - "java_state": { - "Name": "minecraft:weeping_vines_plant" - }, - "bedrock_state": { - "bedrock_identifier": "weeping_vines", - "state": { - "weeping_vines_age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "0" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "age": "1" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "age": "2" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "age": "3" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "age": "4" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "age": "5" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "age": "6" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "age": "7" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "age": "8" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "age": "9" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "age": "10" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "age": "11" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "age": "12" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "age": "13" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "age": "14" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "age": "15" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "age": "16" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 16 - } - } - }, - { - "java_state": { - "Properties": { - "age": "17" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 17 - } - } - }, - { - "java_state": { - "Properties": { - "age": "18" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 18 - } - } - }, - { - "java_state": { - "Properties": { - "age": "19" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 19 - } - } - }, - { - "java_state": { - "Properties": { - "age": "20" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 20 - } - } - }, - { - "java_state": { - "Properties": { - "age": "21" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 21 - } - } - }, - { - "java_state": { - "Properties": { - "age": "22" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 22 - } - } - }, - { - "java_state": { - "Properties": { - "age": "23" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 23 - } - } - }, - { - "java_state": { - "Properties": { - "age": "24" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 24 - } - } - }, - { - "java_state": { - "Properties": { - "age": "25" - }, - "Name": "minecraft:twisting_vines" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 25 - } - } - }, - { - "java_state": { - "Name": "minecraft:twisting_vines_plant" - }, - "bedrock_state": { - "bedrock_identifier": "twisting_vines", - "state": { - "twisting_vines_age": 0 - } - } - }, - { - "java_state": { - "Name": "minecraft:crimson_roots" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_roots" - } - }, - { - "java_state": { - "Name": "minecraft:crimson_planks" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_planks" - } - }, - { - "java_state": { - "Name": "minecraft:warped_planks" - }, - "bedrock_state": { - "bedrock_identifier": "warped_planks" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:crimson_slab" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:crimson_slab" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:crimson_slab" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:crimson_slab" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:crimson_slab" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:crimson_slab" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:warped_slab" - }, - "bedrock_state": { - "bedrock_identifier": "warped_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:warped_slab" - }, - "bedrock_state": { - "bedrock_identifier": "warped_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:warped_slab" - }, - "bedrock_state": { - "bedrock_identifier": "warped_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:warped_slab" - }, - "bedrock_state": { - "bedrock_identifier": "warped_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:warped_slab" - }, - "bedrock_state": { - "bedrock_identifier": "warped_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:warped_slab" - }, - "bedrock_state": { - "bedrock_identifier": "warped_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true" - }, - "Name": "minecraft:crimson_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false" - }, - "Name": "minecraft:crimson_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true" - }, - "Name": "minecraft:warped_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false" - }, - "Name": "minecraft:warped_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:crimson_fence" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "true" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "true", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "true", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "true", - "north": "false", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "south": "false", - "north": "false", - "east": "false" - }, - "Name": "minecraft:warped_fence" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "warped_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:crimson_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "north" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "north" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "south" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "south" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "west" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "west" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "true", - "facing": "east" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": true, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "in_wall": "false", - "facing": "east" - }, - "Name": "minecraft:warped_fence_gate" - }, - "bedrock_state": { - "bedrock_identifier": "warped_fence_gate", - "state": { - "open_bit": false, - "in_wall_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:crimson_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:warped_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "warped_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:crimson_button" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:warped_button" - }, - "bedrock_state": { - "bedrock_identifier": "warped_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:crimson_door" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": true, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:warped_door" - }, - "bedrock_state": { - "bedrock_identifier": "warped_door", - "state": { - "open_bit": false, - "upper_block_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15" - }, - "Name": "minecraft:crimson_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "0" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "0" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "1" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "1" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "2" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "2" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "3" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "3" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "4" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "4" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "5" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "5" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "6" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "6" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 6 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "7" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "7" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 7 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "8" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "8" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 8 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "9" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "9" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 9 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "10" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "10" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 10 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "11" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "11" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 11 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "12" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "12" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 12 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "13" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "13" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 13 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "14" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "14" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 14 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "rotation": "15" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "rotation": "15" - }, - "Name": "minecraft:warped_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_standing_sign", - "state": { - "ground_sign_direction": 15 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:crimson_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:crimson_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:crimson_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:crimson_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:crimson_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:crimson_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:crimson_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:crimson_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "crimson_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:warped_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:warped_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_wall_sign", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:warped_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:warped_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_wall_sign", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:warped_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:warped_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_wall_sign", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:warped_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:warped_wall_sign" - }, - "bedrock_state": { - "bedrock_identifier": "warped_wall_sign", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "mode": "save" - }, - "Name": "minecraft:structure_block" - }, - "bedrock_state": { - "bedrock_identifier": "structure_block", - "state": { - "structure_block_type": "save" - } - } - }, - { - "java_state": { - "Properties": { - "mode": "load" - }, - "Name": "minecraft:structure_block" - }, - "bedrock_state": { - "bedrock_identifier": "structure_block", - "state": { - "structure_block_type": "load" - } - } - }, - { - "java_state": { - "Properties": { - "mode": "corner" - }, - "Name": "minecraft:structure_block" - }, - "bedrock_state": { - "bedrock_identifier": "structure_block", - "state": { - "structure_block_type": "corner" - } - } - }, - { - "java_state": { - "Properties": { - "mode": "data" - }, - "Name": "minecraft:structure_block" - }, - "bedrock_state": { - "bedrock_identifier": "structure_block", - "state": { - "structure_block_type": "data" - } - } - }, - { - "java_state": { - "Properties": { - "orientation": "down_east" - }, - "Name": "minecraft:jigsaw" - }, - "bedrock_state": { - "bedrock_identifier": "jigsaw", - "state": { - "facing_direction": 0, - "rotation": 0 - } - } - }, - { - "java_state": { - "Properties": { - "orientation": "down_north" - }, - "Name": "minecraft:jigsaw" - }, - "bedrock_state": { - "bedrock_identifier": "jigsaw", - "state": { - "facing_direction": 0, - "rotation": 0 - } - } - }, - { - "java_state": { - "Properties": { - "orientation": "down_south" - }, - "Name": "minecraft:jigsaw" - }, - "bedrock_state": { - "bedrock_identifier": "jigsaw", - "state": { - "facing_direction": 0, - "rotation": 0 - } - } - }, - { - "java_state": { - "Properties": { - "orientation": "down_west" - }, - "Name": "minecraft:jigsaw" - }, - "bedrock_state": { - "bedrock_identifier": "jigsaw", - "state": { - "facing_direction": 0, - "rotation": 0 - } - } - }, - { - "java_state": { - "Properties": { - "orientation": "up_east" - }, - "Name": "minecraft:jigsaw" - }, - "bedrock_state": { - "bedrock_identifier": "jigsaw", - "state": { - "facing_direction": 0, - "rotation": 0 - } - } - }, - { - "java_state": { - "Properties": { - "orientation": "up_north" - }, - "Name": "minecraft:jigsaw" - }, - "bedrock_state": { - "bedrock_identifier": "jigsaw", - "state": { - "facing_direction": 0, - "rotation": 0 - } - } - }, - { - "java_state": { - "Properties": { - "orientation": "up_south" - }, - "Name": "minecraft:jigsaw" - }, - "bedrock_state": { - "bedrock_identifier": "jigsaw", - "state": { - "facing_direction": 0, - "rotation": 0 - } - } - }, - { - "java_state": { - "Properties": { - "orientation": "up_west" - }, - "Name": "minecraft:jigsaw" - }, - "bedrock_state": { - "bedrock_identifier": "jigsaw", - "state": { - "facing_direction": 0, - "rotation": 0 - } - } - }, - { - "java_state": { - "Properties": { - "orientation": "west_up" - }, - "Name": "minecraft:jigsaw" - }, - "bedrock_state": { - "bedrock_identifier": "jigsaw", - "state": { - "facing_direction": 0, - "rotation": 0 - } - } - }, - { - "java_state": { - "Properties": { - "orientation": "east_up" - }, - "Name": "minecraft:jigsaw" - }, - "bedrock_state": { - "bedrock_identifier": "jigsaw", - "state": { - "facing_direction": 0, - "rotation": 0 - } - } - }, - { - "java_state": { - "Properties": { - "orientation": "north_up" - }, - "Name": "minecraft:jigsaw" - }, - "bedrock_state": { - "bedrock_identifier": "jigsaw", - "state": { - "facing_direction": 0, - "rotation": 0 - } - } - }, - { - "java_state": { - "Properties": { - "orientation": "south_up" - }, - "Name": "minecraft:jigsaw" - }, - "bedrock_state": { - "bedrock_identifier": "jigsaw", - "state": { - "facing_direction": 0, - "rotation": 0 - } - } - }, - { - "java_state": { - "Properties": { - "level": "0" - }, - "Name": "minecraft:composter" - }, - "bedrock_state": { - "bedrock_identifier": "composter", - "state": { - "composter_fill_level": 0 - } - } - }, - { - "java_state": { - "Properties": { - "level": "1" - }, - "Name": "minecraft:composter" - }, - "bedrock_state": { - "bedrock_identifier": "composter", - "state": { - "composter_fill_level": 1 - } - } - }, - { - "java_state": { - "Properties": { - "level": "2" - }, - "Name": "minecraft:composter" - }, - "bedrock_state": { - "bedrock_identifier": "composter", - "state": { - "composter_fill_level": 2 - } - } - }, - { - "java_state": { - "Properties": { - "level": "3" - }, - "Name": "minecraft:composter" - }, - "bedrock_state": { - "bedrock_identifier": "composter", - "state": { - "composter_fill_level": 3 - } - } - }, - { - "java_state": { - "Properties": { - "level": "4" - }, - "Name": "minecraft:composter" - }, - "bedrock_state": { - "bedrock_identifier": "composter", - "state": { - "composter_fill_level": 4 - } - } - }, - { - "java_state": { - "Properties": { - "level": "5" - }, - "Name": "minecraft:composter" - }, - "bedrock_state": { - "bedrock_identifier": "composter", - "state": { - "composter_fill_level": 5 - } - } - }, - { - "java_state": { - "Properties": { - "level": "6" - }, - "Name": "minecraft:composter" - }, - "bedrock_state": { - "bedrock_identifier": "composter", - "state": { - "composter_fill_level": 6 - } - } - }, - { - "java_state": { - "Properties": { - "level": "7" - }, - "Name": "minecraft:composter" - }, - "bedrock_state": { - "bedrock_identifier": "composter", - "state": { - "composter_fill_level": 7 - } - } - }, - { - "java_state": { - "Properties": { - "level": "8" - }, - "Name": "minecraft:composter" - }, - "bedrock_state": { - "bedrock_identifier": "composter", - "state": { - "composter_fill_level": 8 - } - } - }, - { - "java_state": { - "Properties": { - "power": "0" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "1" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "2" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "3" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "4" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "5" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "6" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "7" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "8" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "9" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "10" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "11" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "12" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "13" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "14" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "power": "15" - }, - "Name": "minecraft:target" - }, - "bedrock_state": { - "bedrock_identifier": "target" - } - }, - { - "java_state": { - "Properties": { - "honey_level": "0", - "facing": "north" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 0, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "1", - "facing": "north" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 1, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "2", - "facing": "north" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 2, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "3", - "facing": "north" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 3, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "4", - "facing": "north" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 4, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "5", - "facing": "north" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 5, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "0", - "facing": "south" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 0, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "1", - "facing": "south" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 1, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "2", - "facing": "south" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 2, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "3", - "facing": "south" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 3, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "4", - "facing": "south" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 4, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "5", - "facing": "south" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 5, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "0", - "facing": "west" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 0, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "1", - "facing": "west" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 1, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "2", - "facing": "west" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 2, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "3", - "facing": "west" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 3, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "4", - "facing": "west" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 4, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "5", - "facing": "west" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 5, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "0", - "facing": "east" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 0, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "1", - "facing": "east" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 1, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "2", - "facing": "east" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 2, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "3", - "facing": "east" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 3, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "4", - "facing": "east" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 4, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "5", - "facing": "east" - }, - "Name": "minecraft:bee_nest" - }, - "bedrock_state": { - "bedrock_identifier": "bee_nest", - "state": { - "honey_level": 5, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "0", - "facing": "north" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 0, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "1", - "facing": "north" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 1, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "2", - "facing": "north" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 2, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "3", - "facing": "north" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 3, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "4", - "facing": "north" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 4, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "5", - "facing": "north" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 5, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "0", - "facing": "south" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 0, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "1", - "facing": "south" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 1, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "2", - "facing": "south" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 2, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "3", - "facing": "south" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 3, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "4", - "facing": "south" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 4, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "5", - "facing": "south" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 5, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "0", - "facing": "west" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 0, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "1", - "facing": "west" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 1, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "2", - "facing": "west" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 2, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "3", - "facing": "west" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 3, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "4", - "facing": "west" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 4, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "5", - "facing": "west" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 5, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "0", - "facing": "east" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 0, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "1", - "facing": "east" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 1, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "2", - "facing": "east" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 2, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "3", - "facing": "east" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 3, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "4", - "facing": "east" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 4, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "honey_level": "5", - "facing": "east" - }, - "Name": "minecraft:beehive" - }, - "bedrock_state": { - "bedrock_identifier": "beehive", - "state": { - "honey_level": 5, - "direction": 3 - } - } - }, - { - "java_state": { - "Name": "minecraft:honey_block" - }, - "bedrock_state": { - "bedrock_identifier": "honey_block" - } - }, - { - "java_state": { - "Name": "minecraft:honeycomb_block" - }, - "bedrock_state": { - "bedrock_identifier": "honeycomb_block" - } - }, - { - "java_state": { - "Name": "minecraft:netherite_block" - }, - "bedrock_state": { - "bedrock_identifier": "netherite_block" - } - }, - { - "java_state": { - "Name": "minecraft:ancient_debris" - }, - "bedrock_state": { - "bedrock_identifier": "ancient_debris" - } - }, - { - "java_state": { - "Name": "minecraft:crying_obsidian" - }, - "bedrock_state": { - "bedrock_identifier": "crying_obsidian" - } - }, - { - "java_state": { - "Properties": { - "charges": "0" - }, - "Name": "minecraft:respawn_anchor" - }, - "bedrock_state": { - "bedrock_identifier": "respawn_anchor", - "state": { - "respawn_anchor_charge": 0 - } - } - }, - { - "java_state": { - "Properties": { - "charges": "1" - }, - "Name": "minecraft:respawn_anchor" - }, - "bedrock_state": { - "bedrock_identifier": "respawn_anchor", - "state": { - "respawn_anchor_charge": 1 - } - } - }, - { - "java_state": { - "Properties": { - "charges": "2" - }, - "Name": "minecraft:respawn_anchor" - }, - "bedrock_state": { - "bedrock_identifier": "respawn_anchor", - "state": { - "respawn_anchor_charge": 2 - } - } - }, - { - "java_state": { - "Properties": { - "charges": "3" - }, - "Name": "minecraft:respawn_anchor" - }, - "bedrock_state": { - "bedrock_identifier": "respawn_anchor", - "state": { - "respawn_anchor_charge": 3 - } - } - }, - { - "java_state": { - "Properties": { - "charges": "4" - }, - "Name": "minecraft:respawn_anchor" - }, - "bedrock_state": { - "bedrock_identifier": "respawn_anchor", - "state": { - "respawn_anchor_charge": 4 - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_crimson_fungus" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_warped_fungus" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_crimson_roots" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_warped_roots" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:lodestone" - }, - "bedrock_state": { - "bedrock_identifier": "lodestone" - } - }, - { - "java_state": { - "Name": "minecraft:blackstone" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:blackstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:blackstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:blackstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:blackstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:blackstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:blackstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "blackstone_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Name": "minecraft:polished_blackstone" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone" - } - }, - { - "java_state": { - "Name": "minecraft:polished_blackstone_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_bricks" - } - }, - { - "java_state": { - "Name": "minecraft:cracked_polished_blackstone_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "cracked_polished_blackstone_bricks" - } - }, - { - "java_state": { - "Name": "minecraft:chiseled_polished_blackstone" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_polished_blackstone" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:polished_blackstone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:polished_blackstone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:polished_blackstone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:polished_blackstone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:polished_blackstone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:polished_blackstone_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Name": "minecraft:gilded_blackstone" - }, - "bedrock_state": { - "bedrock_identifier": "gilded_blackstone" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_blackstone_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:polished_blackstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:polished_blackstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:polished_blackstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:polished_blackstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:polished_blackstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:polished_blackstone_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true" - }, - "Name": "minecraft:polished_blackstone_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_pressure_plate", - "state": { - "redstone_signal": 15 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false" - }, - "Name": "minecraft:polished_blackstone_pressure_plate" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_pressure_plate", - "state": { - "redstone_signal": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "floor" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "floor" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "floor" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "floor" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 1, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "wall" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 2, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "wall" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 3, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "wall" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 4, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "wall" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 5, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "north", - "face": "ceiling" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "south", - "face": "ceiling" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "west", - "face": "ceiling" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "facing": "east", - "face": "ceiling" - }, - "Name": "minecraft:polished_blackstone_button" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_button", - "state": { - "facing_direction": 0, - "button_pressed_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_blackstone_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_blackstone_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Name": "minecraft:chiseled_nether_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_nether_bricks" - } - }, - { - "java_state": { - "Name": "minecraft:cracked_nether_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "cracked_nether_bricks" - } - }, - { - "java_state": { - "Name": "minecraft:quartz_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "quartz_bricks" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:candle" - }, - "bedrock_state": { - "bedrock_identifier": "candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:white_candle" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:orange_candle" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:magenta_candle" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:light_blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:yellow_candle" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:lime_candle" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:pink_candle" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:light_gray_candle" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:cyan_candle" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:purple_candle" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:blue_candle" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:brown_candle" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:green_candle" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:red_candle" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "1" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": true, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "1" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": false, - "candles": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "2" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": true, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "2" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": false, - "candles": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "3" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": true, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "3" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": false, - "candles": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "true", - "candles": "4" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": true, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "lit": "false", - "candles": "4" - }, - "Name": "minecraft:black_candle" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle", - "state": { - "lit": false, - "candles": 3 - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:white_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:white_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "white_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:orange_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:orange_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "orange_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:magenta_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:magenta_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "magenta_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:light_blue_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:light_blue_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "light_blue_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:yellow_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:yellow_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "yellow_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:lime_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:lime_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "lime_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:pink_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:pink_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "pink_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:gray_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:gray_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "gray_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:light_gray_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:light_gray_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "light_gray_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:cyan_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:cyan_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "cyan_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:purple_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:purple_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "purple_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:blue_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:blue_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "blue_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:brown_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:brown_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "brown_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:green_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:green_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "green_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:red_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:red_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "red_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "lit": "true" - }, - "Name": "minecraft:black_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle_cake", - "state": { - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "lit": "false" - }, - "Name": "minecraft:black_candle_cake" - }, - "bedrock_state": { - "bedrock_identifier": "black_candle_cake", - "state": { - "lit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:amethyst_block" - }, - "bedrock_state": { - "bedrock_identifier": "amethyst_block" - } - }, - { - "java_state": { - "Name": "minecraft:budding_amethyst" - }, - "bedrock_state": { - "bedrock_identifier": "budding_amethyst" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:amethyst_cluster" - }, - "bedrock_state": { - "bedrock_identifier": "amethyst_cluster", - "state": { - "minecraft:block_face": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:amethyst_cluster" - }, - "bedrock_state": { - "bedrock_identifier": "amethyst_cluster", - "state": { - "minecraft:block_face": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:amethyst_cluster" - }, - "bedrock_state": { - "bedrock_identifier": "amethyst_cluster", - "state": { - "minecraft:block_face": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:amethyst_cluster" - }, - "bedrock_state": { - "bedrock_identifier": "amethyst_cluster", - "state": { - "minecraft:block_face": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:amethyst_cluster" - }, - "bedrock_state": { - "bedrock_identifier": "amethyst_cluster", - "state": { - "minecraft:block_face": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:amethyst_cluster" - }, - "bedrock_state": { - "bedrock_identifier": "amethyst_cluster", - "state": { - "minecraft:block_face": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:amethyst_cluster" - }, - "bedrock_state": { - "bedrock_identifier": "amethyst_cluster", - "state": { - "minecraft:block_face": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:amethyst_cluster" - }, - "bedrock_state": { - "bedrock_identifier": "amethyst_cluster", - "state": { - "minecraft:block_face": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "up" - }, - "Name": "minecraft:amethyst_cluster" - }, - "bedrock_state": { - "bedrock_identifier": "amethyst_cluster", - "state": { - "minecraft:block_face": "up" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "up" - }, - "Name": "minecraft:amethyst_cluster" - }, - "bedrock_state": { - "bedrock_identifier": "amethyst_cluster", - "state": { - "minecraft:block_face": "up" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "down" - }, - "Name": "minecraft:amethyst_cluster" - }, - "bedrock_state": { - "bedrock_identifier": "amethyst_cluster", - "state": { - "minecraft:block_face": "down" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "down" - }, - "Name": "minecraft:amethyst_cluster" - }, - "bedrock_state": { - "bedrock_identifier": "amethyst_cluster", - "state": { - "minecraft:block_face": "down" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:large_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "large_amethyst_bud", - "state": { - "minecraft:block_face": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:large_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "large_amethyst_bud", - "state": { - "minecraft:block_face": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:large_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "large_amethyst_bud", - "state": { - "minecraft:block_face": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:large_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "large_amethyst_bud", - "state": { - "minecraft:block_face": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:large_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "large_amethyst_bud", - "state": { - "minecraft:block_face": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:large_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "large_amethyst_bud", - "state": { - "minecraft:block_face": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:large_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "large_amethyst_bud", - "state": { - "minecraft:block_face": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:large_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "large_amethyst_bud", - "state": { - "minecraft:block_face": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "up" - }, - "Name": "minecraft:large_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "large_amethyst_bud", - "state": { - "minecraft:block_face": "up" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "up" - }, - "Name": "minecraft:large_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "large_amethyst_bud", - "state": { - "minecraft:block_face": "up" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "down" - }, - "Name": "minecraft:large_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "large_amethyst_bud", - "state": { - "minecraft:block_face": "down" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "down" - }, - "Name": "minecraft:large_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "large_amethyst_bud", - "state": { - "minecraft:block_face": "down" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:medium_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "medium_amethyst_bud", - "state": { - "minecraft:block_face": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:medium_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "medium_amethyst_bud", - "state": { - "minecraft:block_face": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:medium_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "medium_amethyst_bud", - "state": { - "minecraft:block_face": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:medium_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "medium_amethyst_bud", - "state": { - "minecraft:block_face": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:medium_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "medium_amethyst_bud", - "state": { - "minecraft:block_face": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:medium_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "medium_amethyst_bud", - "state": { - "minecraft:block_face": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:medium_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "medium_amethyst_bud", - "state": { - "minecraft:block_face": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:medium_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "medium_amethyst_bud", - "state": { - "minecraft:block_face": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "up" - }, - "Name": "minecraft:medium_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "medium_amethyst_bud", - "state": { - "minecraft:block_face": "up" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "up" - }, - "Name": "minecraft:medium_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "medium_amethyst_bud", - "state": { - "minecraft:block_face": "up" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "down" - }, - "Name": "minecraft:medium_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "medium_amethyst_bud", - "state": { - "minecraft:block_face": "down" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "down" - }, - "Name": "minecraft:medium_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "medium_amethyst_bud", - "state": { - "minecraft:block_face": "down" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:small_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "small_amethyst_bud", - "state": { - "minecraft:block_face": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:small_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "small_amethyst_bud", - "state": { - "minecraft:block_face": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:small_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "small_amethyst_bud", - "state": { - "minecraft:block_face": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:small_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "small_amethyst_bud", - "state": { - "minecraft:block_face": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:small_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "small_amethyst_bud", - "state": { - "minecraft:block_face": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:small_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "small_amethyst_bud", - "state": { - "minecraft:block_face": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:small_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "small_amethyst_bud", - "state": { - "minecraft:block_face": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:small_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "small_amethyst_bud", - "state": { - "minecraft:block_face": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "up" - }, - "Name": "minecraft:small_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "small_amethyst_bud", - "state": { - "minecraft:block_face": "up" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "up" - }, - "Name": "minecraft:small_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "small_amethyst_bud", - "state": { - "minecraft:block_face": "up" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "down" - }, - "Name": "minecraft:small_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "small_amethyst_bud", - "state": { - "minecraft:block_face": "down" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "down" - }, - "Name": "minecraft:small_amethyst_bud" - }, - "bedrock_state": { - "bedrock_identifier": "small_amethyst_bud", - "state": { - "minecraft:block_face": "down" - } - } - }, - { - "java_state": { - "Name": "minecraft:tuff" - }, - "bedrock_state": { - "bedrock_identifier": "tuff" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:tuff_slab" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:tuff_slab" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:tuff_slab" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:tuff_slab" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:tuff_slab" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:tuff_slab" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Name": "minecraft:polished_tuff" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:polished_tuff_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:polished_tuff_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:polished_tuff_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:polished_tuff_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:polished_tuff_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:polished_tuff_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_tuff_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_tuff_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_tuff_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Name": "minecraft:chiseled_tuff" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_tuff" - } - }, - { - "java_state": { - "Name": "minecraft:tuff_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_bricks" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:tuff_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:tuff_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:tuff_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:tuff_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:tuff_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:tuff_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:tuff_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:tuff_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "tuff_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Name": "minecraft:chiseled_tuff_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_tuff_bricks" - } - }, - { - "java_state": { - "Name": "minecraft:calcite" - }, - "bedrock_state": { - "bedrock_identifier": "calcite" - } - }, - { - "java_state": { - "Name": "minecraft:tinted_glass" - }, - "bedrock_state": { - "bedrock_identifier": "tinted_glass" - } - }, - { - "java_state": { - "Name": "minecraft:powder_snow" - }, - "bedrock_state": { - "bedrock_identifier": "powder_snow" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "0" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "0" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "0" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "0" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "0" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "0" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "1" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "1" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "1" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "1" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "1" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "1" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "2" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "2" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "2" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "2" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "2" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "2" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "3" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "3" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "3" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "3" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "3" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "3" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "4" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "4" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "4" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "4" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "4" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "4" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "5" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "5" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "5" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "5" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "5" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "5" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "6" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "6" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "6" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "6" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "6" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "6" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "7" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "7" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "7" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "7" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "7" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "7" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "8" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "8" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "8" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "8" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "8" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "8" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "9" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "9" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "9" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "9" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "9" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "9" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "10" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "10" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "10" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "10" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "10" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "10" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "11" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "11" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "11" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "11" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "11" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "11" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "12" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "12" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "12" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "12" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "12" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "12" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "13" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "13" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "13" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "13" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "13" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "13" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "14" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "14" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "14" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "14" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "14" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "14" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "15" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "15" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "15" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "15" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "15" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "15" - }, - "Name": "minecraft:sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_sensor", - "state": { - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "0", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "0", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "0", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "0", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "0", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "0", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "1", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "1", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "1", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "1", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "1", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "1", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "2", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "2", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "2", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "2", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "2", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "2", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "3", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "3", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "3", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "3", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "3", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "3", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "4", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "4", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "4", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "4", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "4", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "4", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "5", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "5", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "5", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "5", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "5", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "5", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "6", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "6", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "6", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "6", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "6", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "6", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "7", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "7", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "7", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "7", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "7", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "7", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "8", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "8", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "8", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "8", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "8", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "8", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "9", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "9", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "9", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "9", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "9", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "9", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "10", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "10", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "10", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "10", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "10", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "10", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "11", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "11", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "11", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "11", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "11", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "11", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "12", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "12", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "12", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "12", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "12", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "12", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "13", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "13", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "13", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "13", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "13", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "13", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "14", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "14", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "14", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "14", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "14", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "14", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "15", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "15", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "15", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "15", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "15", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "15", - "facing": "north" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "north", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "0", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "0", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "0", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "0", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "0", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "0", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "1", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "1", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "1", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "1", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "1", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "1", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "2", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "2", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "2", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "2", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "2", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "2", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "3", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "3", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "3", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "3", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "3", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "3", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "4", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "4", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "4", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "4", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "4", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "4", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "5", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "5", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "5", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "5", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "5", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "5", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "6", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "6", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "6", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "6", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "6", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "6", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "7", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "7", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "7", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "7", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "7", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "7", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "8", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "8", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "8", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "8", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "8", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "8", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "9", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "9", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "9", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "9", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "9", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "9", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "10", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "10", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "10", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "10", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "10", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "10", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "11", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "11", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "11", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "11", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "11", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "11", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "12", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "12", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "12", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "12", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "12", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "12", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "13", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "13", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "13", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "13", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "13", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "13", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "14", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "14", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "14", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "14", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "14", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "14", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "15", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "15", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "15", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "15", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "15", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "15", - "facing": "south" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "south", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "0", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "0", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "0", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "0", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "0", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "0", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "1", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "1", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "1", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "1", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "1", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "1", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "2", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "2", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "2", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "2", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "2", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "2", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "3", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "3", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "3", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "3", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "3", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "3", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "4", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "4", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "4", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "4", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "4", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "4", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "5", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "5", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "5", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "5", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "5", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "5", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "6", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "6", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "6", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "6", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "6", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "6", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "7", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "7", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "7", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "7", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "7", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "7", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "8", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "8", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "8", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "8", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "8", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "8", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "9", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "9", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "9", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "9", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "9", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "9", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "10", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "10", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "10", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "10", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "10", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "10", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "11", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "11", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "11", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "11", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "11", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "11", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "12", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "12", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "12", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "12", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "12", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "12", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "13", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "13", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "13", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "13", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "13", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "13", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "14", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "14", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "14", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "14", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "14", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "14", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "15", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "15", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "15", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "15", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "15", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "15", - "facing": "west" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "west", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "0", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "0", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "0", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "0", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "0", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "0", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "1", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "1", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "1", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "1", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "1", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "1", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "2", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "2", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "2", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "2", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "2", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "2", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "3", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "3", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "3", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "3", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "3", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "3", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "4", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "4", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "4", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "4", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "4", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "4", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "5", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "5", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "5", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "5", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "5", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "5", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "6", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "6", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "6", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "6", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "6", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "6", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "7", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "7", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "7", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "7", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "7", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "7", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "8", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "8", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "8", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "8", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "8", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "8", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "9", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "9", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "9", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "9", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "9", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "9", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "10", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "10", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "10", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "10", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "10", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "10", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "11", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "11", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "11", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "11", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "11", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "11", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "12", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "12", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "12", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "12", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "12", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "12", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "13", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "13", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "13", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "13", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "13", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "13", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "14", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "14", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "14", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "14", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "14", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "14", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "inactive", - "power": "15", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "inactive", - "power": "15", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "active", - "power": "15", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "active", - "power": "15", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "sculk_sensor_phase": "cooldown", - "power": "15", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "sculk_sensor_phase": "cooldown", - "power": "15", - "facing": "east" - }, - "Name": "minecraft:calibrated_sculk_sensor" - }, - "bedrock_state": { - "bedrock_identifier": "calibrated_sculk_sensor", - "state": { - "minecraft:cardinal_direction": "east", - "sculk_sensor_phase": 2 - } - } - }, - { - "java_state": { - "Name": "minecraft:sculk" - }, - "bedrock_state": { - "bedrock_identifier": "sculk" - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 63 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 55 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 63 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 55 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 61 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 53 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 61 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 53 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 59 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 51 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 59 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 51 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 57 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 49 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 57 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 49 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 47 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 39 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 47 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 39 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 45 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 37 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 45 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 37 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 43 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 35 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 43 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 35 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 41 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 33 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 41 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 33 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 31 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 23 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 31 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 23 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 29 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 21 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 29 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 21 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 27 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 19 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 27 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 19 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 25 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 17 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 25 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 17 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 15 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 7 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 13 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 5 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 11 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 3 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 9 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "true" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 1 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 62 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 54 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 62 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 54 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 60 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 52 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 60 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 52 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 58 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 50 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 58 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 50 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 56 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 48 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 56 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 48 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 46 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 38 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 46 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 38 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 44 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 36 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 44 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 36 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 42 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 34 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 42 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 34 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 40 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 32 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 40 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "true", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 32 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 30 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 22 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 30 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 22 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 28 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 20 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 28 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 20 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 26 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 18 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 26 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 18 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 24 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 16 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 24 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "true", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 16 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 14 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 6 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 12 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "true", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 4 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 10 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "true", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 2 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "true", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 0 - } - } - }, - { - "java_state": { - "Properties": { - "west": "true", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 8 - } - } - }, - { - "java_state": { - "Properties": { - "west": "false", - "waterlogged": "false", - "up": "false", - "south": "false", - "north": "false", - "east": "false", - "down": "false" - }, - "Name": "minecraft:sculk_vein" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_vein", - "state": { - "multi_face_direction_bits": 0 - } - } - }, - { - "java_state": { - "Properties": { - "bloom": "true" - }, - "Name": "minecraft:sculk_catalyst" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_catalyst", - "state": { - "bloom": true - } - } - }, - { - "java_state": { - "Properties": { - "bloom": "false" - }, - "Name": "minecraft:sculk_catalyst" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_catalyst", - "state": { - "bloom": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shrieking": "true", - "can_summon": "true" - }, - "Name": "minecraft:sculk_shrieker" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_shrieker", - "state": { - "active": true, - "can_summon": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shrieking": "true", - "can_summon": "true" - }, - "Name": "minecraft:sculk_shrieker" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_shrieker", - "state": { - "active": true, - "can_summon": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shrieking": "false", - "can_summon": "true" - }, - "Name": "minecraft:sculk_shrieker" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_shrieker", - "state": { - "active": false, - "can_summon": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shrieking": "false", - "can_summon": "true" - }, - "Name": "minecraft:sculk_shrieker" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_shrieker", - "state": { - "active": false, - "can_summon": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shrieking": "true", - "can_summon": "false" - }, - "Name": "minecraft:sculk_shrieker" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_shrieker", - "state": { - "active": true, - "can_summon": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shrieking": "true", - "can_summon": "false" - }, - "Name": "minecraft:sculk_shrieker" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_shrieker", - "state": { - "active": true, - "can_summon": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shrieking": "false", - "can_summon": "false" - }, - "Name": "minecraft:sculk_shrieker" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_shrieker", - "state": { - "active": false, - "can_summon": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shrieking": "false", - "can_summon": "false" - }, - "Name": "minecraft:sculk_shrieker" - }, - "bedrock_state": { - "bedrock_identifier": "sculk_shrieker", - "state": { - "active": false, - "can_summon": false - } - } - }, - { - "java_state": { - "Name": "minecraft:copper_block" - }, - "bedrock_state": { - "bedrock_identifier": "copper_block" - } - }, - { - "java_state": { - "Name": "minecraft:exposed_copper" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper" - } - }, - { - "java_state": { - "Name": "minecraft:weathered_copper" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper" - } - }, - { - "java_state": { - "Name": "minecraft:oxidized_copper" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper" - } - }, - { - "java_state": { - "Name": "minecraft:copper_ore" - }, - "bedrock_state": { - "bedrock_identifier": "copper_ore" - } - }, - { - "java_state": { - "Name": "minecraft:deepslate_copper_ore" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_copper_ore" - } - }, - { - "java_state": { - "Name": "minecraft:oxidized_cut_copper" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper" - } - }, - { - "java_state": { - "Name": "minecraft:weathered_cut_copper" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper" - } - }, - { - "java_state": { - "Name": "minecraft:exposed_cut_copper" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper" - } - }, - { - "java_state": { - "Name": "minecraft:cut_copper" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper" - } - }, - { - "java_state": { - "Name": "minecraft:oxidized_chiseled_copper" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_chiseled_copper" - } - }, - { - "java_state": { - "Name": "minecraft:weathered_chiseled_copper" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_chiseled_copper" - } - }, - { - "java_state": { - "Name": "minecraft:exposed_chiseled_copper" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_chiseled_copper" - } - }, - { - "java_state": { - "Name": "minecraft:chiseled_copper" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_copper" - } - }, - { - "java_state": { - "Name": "minecraft:waxed_oxidized_chiseled_copper" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_chiseled_copper" - } - }, - { - "java_state": { - "Name": "minecraft:waxed_weathered_chiseled_copper" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_chiseled_copper" - } - }, - { - "java_state": { - "Name": "minecraft:waxed_exposed_chiseled_copper" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_chiseled_copper" - } - }, - { - "java_state": { - "Name": "minecraft:waxed_chiseled_copper" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_chiseled_copper" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:oxidized_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:oxidized_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:oxidized_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:oxidized_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:oxidized_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:oxidized_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:weathered_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:weathered_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:weathered_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:weathered_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:weathered_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:weathered_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:exposed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:exposed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:exposed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:exposed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:exposed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:exposed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Name": "minecraft:waxed_copper_block" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper" - } - }, - { - "java_state": { - "Name": "minecraft:waxed_weathered_copper" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper" - } - }, - { - "java_state": { - "Name": "minecraft:waxed_exposed_copper" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper" - } - }, - { - "java_state": { - "Name": "minecraft:waxed_oxidized_copper" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper" - } - }, - { - "java_state": { - "Name": "minecraft:waxed_oxidized_cut_copper" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper" - } - }, - { - "java_state": { - "Name": "minecraft:waxed_weathered_cut_copper" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper" - } - }, - { - "java_state": { - "Name": "minecraft:waxed_exposed_cut_copper" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper" - } - }, - { - "java_state": { - "Name": "minecraft:waxed_cut_copper" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_cut_copper_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:waxed_oxidized_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:waxed_weathered_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:waxed_weathered_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:waxed_weathered_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:waxed_weathered_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:waxed_weathered_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:waxed_weathered_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:waxed_exposed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:waxed_exposed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:waxed_exposed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:waxed_exposed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:waxed_exposed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:waxed_exposed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:waxed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:waxed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:waxed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:waxed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:waxed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:waxed_cut_copper_slab" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_double_cut_copper_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": true, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "left", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "true", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": true, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "open": "false", - "hinge": "right", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_door" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_door", - "state": { - "upper_block_bit": false, - "open_bit": false, - "door_hinge_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_exposed_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_oxidized_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": true, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "true", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": true, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "open": "false", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:waxed_weathered_copper_trapdoor" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_trapdoor", - "state": { - "open_bit": false, - "upside_down_bit": false, - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:exposed_copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:exposed_copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:weathered_copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:weathered_copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:oxidized_copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:oxidized_copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:waxed_copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:waxed_copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:waxed_exposed_copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:waxed_exposed_copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:waxed_weathered_copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:waxed_weathered_copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:waxed_oxidized_copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_grate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:waxed_oxidized_copper_grate" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_grate" - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "true" - }, - "Name": "minecraft:copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "copper_bulb", - "state": { - "powered_bit": true, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "true" - }, - "Name": "minecraft:copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "copper_bulb", - "state": { - "powered_bit": false, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "false" - }, - "Name": "minecraft:copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "copper_bulb", - "state": { - "powered_bit": true, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "false" - }, - "Name": "minecraft:copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "copper_bulb", - "state": { - "powered_bit": false, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "true" - }, - "Name": "minecraft:exposed_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_bulb", - "state": { - "powered_bit": true, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "true" - }, - "Name": "minecraft:exposed_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_bulb", - "state": { - "powered_bit": false, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "false" - }, - "Name": "minecraft:exposed_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_bulb", - "state": { - "powered_bit": true, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "false" - }, - "Name": "minecraft:exposed_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "exposed_copper_bulb", - "state": { - "powered_bit": false, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "true" - }, - "Name": "minecraft:weathered_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_bulb", - "state": { - "powered_bit": true, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "true" - }, - "Name": "minecraft:weathered_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_bulb", - "state": { - "powered_bit": false, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "false" - }, - "Name": "minecraft:weathered_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_bulb", - "state": { - "powered_bit": true, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "false" - }, - "Name": "minecraft:weathered_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "weathered_copper_bulb", - "state": { - "powered_bit": false, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "true" - }, - "Name": "minecraft:oxidized_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_bulb", - "state": { - "powered_bit": true, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "true" - }, - "Name": "minecraft:oxidized_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_bulb", - "state": { - "powered_bit": false, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "false" - }, - "Name": "minecraft:oxidized_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_bulb", - "state": { - "powered_bit": true, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "false" - }, - "Name": "minecraft:oxidized_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "oxidized_copper_bulb", - "state": { - "powered_bit": false, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "true" - }, - "Name": "minecraft:waxed_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_bulb", - "state": { - "powered_bit": true, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "true" - }, - "Name": "minecraft:waxed_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_bulb", - "state": { - "powered_bit": false, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "false" - }, - "Name": "minecraft:waxed_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_bulb", - "state": { - "powered_bit": true, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "false" - }, - "Name": "minecraft:waxed_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_copper_bulb", - "state": { - "powered_bit": false, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "true" - }, - "Name": "minecraft:waxed_exposed_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_bulb", - "state": { - "powered_bit": true, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "true" - }, - "Name": "minecraft:waxed_exposed_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_bulb", - "state": { - "powered_bit": false, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "false" - }, - "Name": "minecraft:waxed_exposed_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_bulb", - "state": { - "powered_bit": true, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "false" - }, - "Name": "minecraft:waxed_exposed_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_exposed_copper_bulb", - "state": { - "powered_bit": false, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "true" - }, - "Name": "minecraft:waxed_weathered_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_bulb", - "state": { - "powered_bit": true, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "true" - }, - "Name": "minecraft:waxed_weathered_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_bulb", - "state": { - "powered_bit": false, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "false" - }, - "Name": "minecraft:waxed_weathered_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_bulb", - "state": { - "powered_bit": true, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "false" - }, - "Name": "minecraft:waxed_weathered_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_weathered_copper_bulb", - "state": { - "powered_bit": false, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "true" - }, - "Name": "minecraft:waxed_oxidized_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_bulb", - "state": { - "powered_bit": true, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "true" - }, - "Name": "minecraft:waxed_oxidized_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_bulb", - "state": { - "powered_bit": false, - "lit": true - } - } - }, - { - "java_state": { - "Properties": { - "powered": "true", - "lit": "false" - }, - "Name": "minecraft:waxed_oxidized_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_bulb", - "state": { - "powered_bit": true, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "powered": "false", - "lit": "false" - }, - "Name": "minecraft:waxed_oxidized_copper_bulb" - }, - "bedrock_state": { - "bedrock_identifier": "waxed_oxidized_copper_bulb", - "state": { - "powered_bit": false, - "lit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "facing": "north" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "facing": "north" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "facing": "north" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "facing": "north" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "facing": "east" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "facing": "east" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "facing": "east" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "facing": "east" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 5 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "facing": "south" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "facing": "south" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "facing": "south" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "facing": "south" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "facing": "west" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "facing": "west" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "facing": "west" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "facing": "west" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 4 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "facing": "up" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "facing": "up" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "facing": "up" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "facing": "up" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "true", - "facing": "down" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "true", - "facing": "down" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "powered": "false", - "facing": "down" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "powered": "false", - "facing": "down" - }, - "Name": "minecraft:lightning_rod" - }, - "bedrock_state": { - "bedrock_identifier": "lightning_rod", - "state": { - "facing_direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "vertical_direction": "up", - "thickness": "tip_merge" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": false, - "dripstone_thickness": "merge" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "vertical_direction": "up", - "thickness": "tip_merge" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": false, - "dripstone_thickness": "merge" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "vertical_direction": "down", - "thickness": "tip_merge" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": true, - "dripstone_thickness": "merge" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "vertical_direction": "down", - "thickness": "tip_merge" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": true, - "dripstone_thickness": "merge" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "vertical_direction": "up", - "thickness": "tip" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": false, - "dripstone_thickness": "tip" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "vertical_direction": "up", - "thickness": "tip" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": false, - "dripstone_thickness": "tip" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "vertical_direction": "down", - "thickness": "tip" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": true, - "dripstone_thickness": "tip" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "vertical_direction": "down", - "thickness": "tip" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": true, - "dripstone_thickness": "tip" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "vertical_direction": "up", - "thickness": "frustum" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": false, - "dripstone_thickness": "frustum" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "vertical_direction": "up", - "thickness": "frustum" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": false, - "dripstone_thickness": "frustum" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "vertical_direction": "down", - "thickness": "frustum" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": true, - "dripstone_thickness": "frustum" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "vertical_direction": "down", - "thickness": "frustum" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": true, - "dripstone_thickness": "frustum" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "vertical_direction": "up", - "thickness": "middle" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": false, - "dripstone_thickness": "middle" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "vertical_direction": "up", - "thickness": "middle" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": false, - "dripstone_thickness": "middle" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "vertical_direction": "down", - "thickness": "middle" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": true, - "dripstone_thickness": "middle" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "vertical_direction": "down", - "thickness": "middle" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": true, - "dripstone_thickness": "middle" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "vertical_direction": "up", - "thickness": "base" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": false, - "dripstone_thickness": "base" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "vertical_direction": "up", - "thickness": "base" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": false, - "dripstone_thickness": "base" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "vertical_direction": "down", - "thickness": "base" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": true, - "dripstone_thickness": "base" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "vertical_direction": "down", - "thickness": "base" - }, - "Name": "minecraft:pointed_dripstone" - }, - "bedrock_state": { - "bedrock_identifier": "pointed_dripstone", - "state": { - "hanging": true, - "dripstone_thickness": "base" - } - } - }, - { - "java_state": { - "Name": "minecraft:dripstone_block" - }, - "bedrock_state": { - "bedrock_identifier": "dripstone_block" - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "0" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "0" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "1" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "1" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 1 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "2" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "2" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 2 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "3" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "3" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 3 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "4" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "4" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 4 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "5" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "5" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 5 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "6" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "6" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 6 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "7" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "7" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 7 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "8" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "8" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 8 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "9" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "9" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 9 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "10" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "10" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 10 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "11" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "11" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 11 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "12" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "12" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 12 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "13" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "13" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 13 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "14" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "14" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 14 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "15" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "15" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 15 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "16" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 16 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "16" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 16 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "17" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 17 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "17" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 17 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "18" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 18 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "18" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 18 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "19" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 19 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "19" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 19 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "20" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 20 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "20" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 20 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "21" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 21 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "21" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 21 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "22" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 22 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "22" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 22 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "23" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 23 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "23" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 23 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "24" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 24 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "24" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 24 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true", - "age": "25" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_head_with_berries", - "state": { - "growing_plant_age": 25 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false", - "age": "25" - }, - "Name": "minecraft:cave_vines" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 25 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "true" - }, - "Name": "minecraft:cave_vines_plant" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines_body_with_berries", - "state": { - "growing_plant_age": 0 - } - } - }, - { - "java_state": { - "Properties": { - "berries": "false" - }, - "Name": "minecraft:cave_vines_plant" - }, - "bedrock_state": { - "bedrock_identifier": "cave_vines", - "state": { - "growing_plant_age": 0 - } - } - }, - { - "java_state": { - "Name": "minecraft:spore_blossom" - }, - "bedrock_state": { - "bedrock_identifier": "spore_blossom" - } - }, - { - "java_state": { - "Name": "minecraft:azalea" - }, - "bedrock_state": { - "bedrock_identifier": "azalea" - } - }, - { - "java_state": { - "Name": "minecraft:flowering_azalea" - }, - "bedrock_state": { - "bedrock_identifier": "flowering_azalea" - } - }, - { - "java_state": { - "Name": "minecraft:moss_carpet" - }, - "bedrock_state": { - "bedrock_identifier": "moss_carpet" - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "1", - "facing": "north" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "north", - "growth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "2", - "facing": "north" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "north", - "growth": 1 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "3", - "facing": "north" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "north", - "growth": 2 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "4", - "facing": "north" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "north", - "growth": 3 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "1", - "facing": "south" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "south", - "growth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "2", - "facing": "south" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "south", - "growth": 1 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "3", - "facing": "south" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "south", - "growth": 2 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "4", - "facing": "south" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "south", - "growth": 3 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "1", - "facing": "west" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "west", - "growth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "2", - "facing": "west" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "west", - "growth": 1 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "3", - "facing": "west" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "west", - "growth": 2 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "4", - "facing": "west" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "west", - "growth": 3 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "1", - "facing": "east" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "east", - "growth": 0 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "2", - "facing": "east" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "east", - "growth": 1 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "3", - "facing": "east" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "east", - "growth": 2 - } - } - }, - { - "java_state": { - "Properties": { - "flower_amount": "4", - "facing": "east" - }, - "Name": "minecraft:pink_petals" - }, - "bedrock_state": { - "bedrock_identifier": "pink_petals", - "state": { - "minecraft:cardinal_direction": "east", - "growth": 3 - } - } - }, - { - "java_state": { - "Name": "minecraft:moss_block" - }, - "bedrock_state": { - "bedrock_identifier": "moss_block" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "none", - "facing": "north" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "none", - "facing": "north" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "unstable", - "facing": "north" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "unstable", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "unstable", - "facing": "north" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "unstable", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "partial", - "facing": "north" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "partial_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "partial", - "facing": "north" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "partial_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "full", - "facing": "north" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "full_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "full", - "facing": "north" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "full_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "none", - "facing": "south" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "none", - "facing": "south" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "unstable", - "facing": "south" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "unstable", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "unstable", - "facing": "south" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "unstable", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "partial", - "facing": "south" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "partial_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "partial", - "facing": "south" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "partial_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "full", - "facing": "south" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "full_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "full", - "facing": "south" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "full_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "none", - "facing": "west" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "none", - "facing": "west" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "unstable", - "facing": "west" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "unstable", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "unstable", - "facing": "west" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "unstable", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "partial", - "facing": "west" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "partial_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "partial", - "facing": "west" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "partial_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "full", - "facing": "west" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "full_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "full", - "facing": "west" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "full_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "none", - "facing": "east" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "none", - "facing": "east" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "unstable", - "facing": "east" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "unstable", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "unstable", - "facing": "east" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "unstable", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "partial", - "facing": "east" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "partial_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "partial", - "facing": "east" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "partial_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "tilt": "full", - "facing": "east" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "full_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "tilt": "full", - "facing": "east" - }, - "Name": "minecraft:big_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "full_tilt", - "big_dripleaf_head": true, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north" - }, - "Name": "minecraft:big_dripleaf_stem" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": false, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north" - }, - "Name": "minecraft:big_dripleaf_stem" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": false, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south" - }, - "Name": "minecraft:big_dripleaf_stem" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": false, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south" - }, - "Name": "minecraft:big_dripleaf_stem" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": false, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west" - }, - "Name": "minecraft:big_dripleaf_stem" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": false, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west" - }, - "Name": "minecraft:big_dripleaf_stem" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": false, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east" - }, - "Name": "minecraft:big_dripleaf_stem" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": false, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east" - }, - "Name": "minecraft:big_dripleaf_stem" - }, - "bedrock_state": { - "bedrock_identifier": "big_dripleaf", - "state": { - "big_dripleaf_tilt": "none", - "big_dripleaf_head": false, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": true, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "half": "upper", - "facing": "north" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": true, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": false, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "half": "lower", - "facing": "north" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": false, - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": true, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "half": "upper", - "facing": "south" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": true, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": false, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "half": "lower", - "facing": "south" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": false, - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": true, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "half": "upper", - "facing": "west" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": true, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": false, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "half": "lower", - "facing": "west" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": false, - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": true, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "half": "upper", - "facing": "east" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": true, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": false, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "half": "lower", - "facing": "east" - }, - "Name": "minecraft:small_dripleaf" - }, - "bedrock_state": { - "bedrock_identifier": "small_dripleaf_block", - "state": { - "upper_block_bit": false, - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:hanging_roots" - }, - "bedrock_state": { - "bedrock_identifier": "hanging_roots" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:hanging_roots" - }, - "bedrock_state": { - "bedrock_identifier": "hanging_roots" - } - }, - { - "java_state": { - "Name": "minecraft:rooted_dirt" - }, - "bedrock_state": { - "bedrock_identifier": "dirt_with_roots" - } - }, - { - "java_state": { - "Name": "minecraft:mud" - }, - "bedrock_state": { - "bedrock_identifier": "mud" - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:deepslate" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:deepslate" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:deepslate" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Name": "minecraft:cobbled_deepslate" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:cobbled_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:cobbled_deepslate_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:cobbled_deepslate_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:cobbled_deepslate_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:cobbled_deepslate_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:cobbled_deepslate_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:cobbled_deepslate_slab" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:cobbled_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "cobbled_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Name": "minecraft:polished_deepslate" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:polished_deepslate_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:polished_deepslate_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:polished_deepslate_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:polished_deepslate_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:polished_deepslate_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:polished_deepslate_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:polished_deepslate_slab" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:polished_deepslate_wall" - }, - "bedrock_state": { - "bedrock_identifier": "polished_deepslate_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Name": "minecraft:deepslate_tiles" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tiles" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_tile_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:deepslate_tile_slab" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:deepslate_tile_slab" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:deepslate_tile_slab" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:deepslate_tile_slab" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:deepslate_tile_slab" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:deepslate_tile_slab" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_tile_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_tile_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Name": "minecraft:deepslate_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_bricks" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "north" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 3, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "south" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 2, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "west" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 1, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "top", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": true - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "straight", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "inner_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_left", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "shape": "outer_right", - "half": "bottom", - "facing": "east" - }, - "Name": "minecraft:deepslate_brick_stairs" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_stairs", - "state": { - "weirdo_direction": 0, - "upside_down_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "top" - }, - "Name": "minecraft:deepslate_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "top" - }, - "Name": "minecraft:deepslate_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_slab", - "state": { - "minecraft:vertical_half": "top" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "bottom" - }, - "Name": "minecraft:deepslate_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "bottom" - }, - "Name": "minecraft:deepslate_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "type": "double" - }, - "Name": "minecraft:deepslate_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "type": "double" - }, - "Name": "minecraft:deepslate_brick_slab" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_double_slab", - "state": { - "minecraft:vertical_half": "bottom" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "none" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "none", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "low" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "short", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "none", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "none" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "low", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "short" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "none", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "none", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "low", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "short", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "true", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": true, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "true", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "none", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "none", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "low", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "short", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Properties": { - "west": "tall", - "waterlogged": "false", - "up": "false", - "south": "tall", - "north": "tall", - "east": "tall" - }, - "Name": "minecraft:deepslate_brick_wall" - }, - "bedrock_state": { - "bedrock_identifier": "deepslate_brick_wall", - "state": { - "wall_connection_type_east": "tall", - "wall_post_bit": false, - "wall_connection_type_south": "tall", - "wall_connection_type_west": "tall", - "wall_connection_type_north": "tall" - } - } - }, - { - "java_state": { - "Name": "minecraft:chiseled_deepslate" - }, - "bedrock_state": { - "bedrock_identifier": "chiseled_deepslate" - } - }, - { - "java_state": { - "Name": "minecraft:cracked_deepslate_bricks" - }, - "bedrock_state": { - "bedrock_identifier": "cracked_deepslate_bricks" - } - }, - { - "java_state": { - "Name": "minecraft:cracked_deepslate_tiles" - }, - "bedrock_state": { - "bedrock_identifier": "cracked_deepslate_tiles" - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:infested_deepslate" - }, - "bedrock_state": { - "bedrock_identifier": "infested_deepslate", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:infested_deepslate" - }, - "bedrock_state": { - "bedrock_identifier": "infested_deepslate", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:infested_deepslate" - }, - "bedrock_state": { - "bedrock_identifier": "infested_deepslate", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Name": "minecraft:smooth_basalt" - }, - "bedrock_state": { - "bedrock_identifier": "smooth_basalt" - } - }, - { - "java_state": { - "Name": "minecraft:raw_iron_block" - }, - "bedrock_state": { - "bedrock_identifier": "raw_iron_block" - } - }, - { - "java_state": { - "Name": "minecraft:raw_copper_block" - }, - "bedrock_state": { - "bedrock_identifier": "raw_copper_block" - } - }, - { - "java_state": { - "Name": "minecraft:raw_gold_block" - }, - "bedrock_state": { - "bedrock_identifier": "raw_gold_block" - } - }, - { - "java_state": { - "Name": "minecraft:potted_azalea_bush" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Name": "minecraft:potted_flowering_azalea_bush" - }, - "bedrock_state": { - "bedrock_identifier": "flower_pot", - "state": { - "update_bit": false - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:ochre_froglight" - }, - "bedrock_state": { - "bedrock_identifier": "ochre_froglight", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:ochre_froglight" - }, - "bedrock_state": { - "bedrock_identifier": "ochre_froglight", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:ochre_froglight" - }, - "bedrock_state": { - "bedrock_identifier": "ochre_froglight", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:verdant_froglight" - }, - "bedrock_state": { - "bedrock_identifier": "verdant_froglight", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:verdant_froglight" - }, - "bedrock_state": { - "bedrock_identifier": "verdant_froglight", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:verdant_froglight" - }, - "bedrock_state": { - "bedrock_identifier": "verdant_froglight", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "x" - }, - "Name": "minecraft:pearlescent_froglight" - }, - "bedrock_state": { - "bedrock_identifier": "pearlescent_froglight", - "state": { - "pillar_axis": "x" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "y" - }, - "Name": "minecraft:pearlescent_froglight" - }, - "bedrock_state": { - "bedrock_identifier": "pearlescent_froglight", - "state": { - "pillar_axis": "y" - } - } - }, - { - "java_state": { - "Properties": { - "axis": "z" - }, - "Name": "minecraft:pearlescent_froglight" - }, - "bedrock_state": { - "bedrock_identifier": "pearlescent_froglight", - "state": { - "pillar_axis": "z" - } - } - }, - { - "java_state": { - "Name": "minecraft:frogspawn" - }, - "bedrock_state": { - "bedrock_identifier": "frog_spawn" - } - }, - { - "java_state": { - "Name": "minecraft:reinforced_deepslate" - }, - "bedrock_state": { - "bedrock_identifier": "reinforced_deepslate" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north", - "cracked": "true" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north", - "cracked": "true" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south", - "cracked": "true" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south", - "cracked": "true" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west", - "cracked": "true" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west", - "cracked": "true" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east", - "cracked": "true" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east", - "cracked": "true" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "north", - "cracked": "false" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "north", - "cracked": "false" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 0 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "south", - "cracked": "false" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "south", - "cracked": "false" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 2 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "west", - "cracked": "false" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "west", - "cracked": "false" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 3 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true", - "facing": "east", - "cracked": "false" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false", - "facing": "east", - "cracked": "false" - }, - "Name": "minecraft:decorated_pot" - }, - "bedrock_state": { - "bedrock_identifier": "decorated_pot", - "state": { - "direction": 1 - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "down_east", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "down_east", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "down_east", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "down_east", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "down_north", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "down_north", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "down_north", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "down_north", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "down_south", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "down_south", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "down_south", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "down_south", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "down_west", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "down_west", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "down_west", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "down_west", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "up_east", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "up_east", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "up_east", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "up_east", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "up_north", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "up_north", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "up_north", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "up_north", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "up_south", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "up_south", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "up_south", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "up_south", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "up_west", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "up_west", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "up_west", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "up_west", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "west_up", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "west_up", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "west_up", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "west_up", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "east_up", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "east_up", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "east_up", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "east_up", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "north_up", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "north_up", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "north_up", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "north_up", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "south_up", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "south_up", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "south_up", - "crafting": "true" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "south_up", - "crafting": true - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "down_east", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "down_east", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "down_east", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "down_east", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "down_north", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "down_north", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "down_north", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "down_north", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "down_south", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "down_south", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "down_south", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "down_south", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "down_west", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "down_west", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "down_west", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "down_west", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "up_east", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "up_east", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "up_east", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "up_east", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "up_north", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "up_north", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "up_north", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "up_north", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "up_south", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "up_south", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "up_south", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "up_south", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "up_west", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "up_west", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "up_west", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "up_west", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "west_up", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "west_up", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "west_up", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "west_up", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "east_up", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "east_up", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "east_up", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "east_up", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "north_up", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "north_up", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "north_up", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "north_up", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "true", - "orientation": "south_up", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": true, - "orientation": "south_up", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "triggered": "false", - "orientation": "south_up", - "crafting": "false" - }, - "Name": "minecraft:crafter" - }, - "bedrock_state": { - "bedrock_identifier": "crafter", - "state": { - "triggered_bit": false, - "orientation": "south_up", - "crafting": false - } - } - }, - { - "java_state": { - "Properties": { - "trial_spawner_state": "inactive", - "ominous": "true" - }, - "Name": "minecraft:trial_spawner" - }, - "bedrock_state": { - "bedrock_identifier": "trial_spawner", - "state": { - "ominous": true, - "trial_spawner_state": 0 - } - } - }, - { - "java_state": { - "Properties": { - "trial_spawner_state": "waiting_for_players", - "ominous": "true" - }, - "Name": "minecraft:trial_spawner" - }, - "bedrock_state": { - "bedrock_identifier": "trial_spawner", - "state": { - "ominous": true, - "trial_spawner_state": 1 - } - } - }, - { - "java_state": { - "Properties": { - "trial_spawner_state": "active", - "ominous": "true" - }, - "Name": "minecraft:trial_spawner" - }, - "bedrock_state": { - "bedrock_identifier": "trial_spawner", - "state": { - "ominous": true, - "trial_spawner_state": 2 - } - } - }, - { - "java_state": { - "Properties": { - "trial_spawner_state": "waiting_for_reward_ejection", - "ominous": "true" - }, - "Name": "minecraft:trial_spawner" - }, - "bedrock_state": { - "bedrock_identifier": "trial_spawner", - "state": { - "ominous": true, - "trial_spawner_state": 3 - } - } - }, - { - "java_state": { - "Properties": { - "trial_spawner_state": "ejecting_reward", - "ominous": "true" - }, - "Name": "minecraft:trial_spawner" - }, - "bedrock_state": { - "bedrock_identifier": "trial_spawner", - "state": { - "ominous": true, - "trial_spawner_state": 4 - } - } - }, - { - "java_state": { - "Properties": { - "trial_spawner_state": "cooldown", - "ominous": "true" - }, - "Name": "minecraft:trial_spawner" - }, - "bedrock_state": { - "bedrock_identifier": "trial_spawner", - "state": { - "ominous": true, - "trial_spawner_state": 5 - } - } - }, - { - "java_state": { - "Properties": { - "trial_spawner_state": "inactive", - "ominous": "false" - }, - "Name": "minecraft:trial_spawner" - }, - "bedrock_state": { - "bedrock_identifier": "trial_spawner", - "state": { - "ominous": false, - "trial_spawner_state": 0 - } - } - }, - { - "java_state": { - "Properties": { - "trial_spawner_state": "waiting_for_players", - "ominous": "false" - }, - "Name": "minecraft:trial_spawner" - }, - "bedrock_state": { - "bedrock_identifier": "trial_spawner", - "state": { - "ominous": false, - "trial_spawner_state": 1 - } - } - }, - { - "java_state": { - "Properties": { - "trial_spawner_state": "active", - "ominous": "false" - }, - "Name": "minecraft:trial_spawner" - }, - "bedrock_state": { - "bedrock_identifier": "trial_spawner", - "state": { - "ominous": false, - "trial_spawner_state": 2 - } - } - }, - { - "java_state": { - "Properties": { - "trial_spawner_state": "waiting_for_reward_ejection", - "ominous": "false" - }, - "Name": "minecraft:trial_spawner" - }, - "bedrock_state": { - "bedrock_identifier": "trial_spawner", - "state": { - "ominous": false, - "trial_spawner_state": 3 - } - } - }, - { - "java_state": { - "Properties": { - "trial_spawner_state": "ejecting_reward", - "ominous": "false" - }, - "Name": "minecraft:trial_spawner" - }, - "bedrock_state": { - "bedrock_identifier": "trial_spawner", - "state": { - "ominous": false, - "trial_spawner_state": 4 - } - } - }, - { - "java_state": { - "Properties": { - "trial_spawner_state": "cooldown", - "ominous": "false" - }, - "Name": "minecraft:trial_spawner" - }, - "bedrock_state": { - "bedrock_identifier": "trial_spawner", - "state": { - "ominous": false, - "trial_spawner_state": 5 - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "inactive", - "ominous": "true", - "facing": "north" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "inactive", - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "active", - "ominous": "true", - "facing": "north" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "active", - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "unlocking", - "ominous": "true", - "facing": "north" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "unlocking", - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "ejecting", - "ominous": "true", - "facing": "north" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "ejecting", - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "inactive", - "ominous": "false", - "facing": "north" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "inactive", - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "active", - "ominous": "false", - "facing": "north" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "active", - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "unlocking", - "ominous": "false", - "facing": "north" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "unlocking", - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "ejecting", - "ominous": "false", - "facing": "north" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "ejecting", - "minecraft:cardinal_direction": "north" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "inactive", - "ominous": "true", - "facing": "south" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "inactive", - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "active", - "ominous": "true", - "facing": "south" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "active", - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "unlocking", - "ominous": "true", - "facing": "south" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "unlocking", - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "ejecting", - "ominous": "true", - "facing": "south" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "ejecting", - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "inactive", - "ominous": "false", - "facing": "south" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "inactive", - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "active", - "ominous": "false", - "facing": "south" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "active", - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "unlocking", - "ominous": "false", - "facing": "south" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "unlocking", - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "ejecting", - "ominous": "false", - "facing": "south" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "ejecting", - "minecraft:cardinal_direction": "south" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "inactive", - "ominous": "true", - "facing": "west" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "inactive", - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "active", - "ominous": "true", - "facing": "west" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "active", - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "unlocking", - "ominous": "true", - "facing": "west" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "unlocking", - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "ejecting", - "ominous": "true", - "facing": "west" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "ejecting", - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "inactive", - "ominous": "false", - "facing": "west" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "inactive", - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "active", - "ominous": "false", - "facing": "west" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "active", - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "unlocking", - "ominous": "false", - "facing": "west" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "unlocking", - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "ejecting", - "ominous": "false", - "facing": "west" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "ejecting", - "minecraft:cardinal_direction": "west" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "inactive", - "ominous": "true", - "facing": "east" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "inactive", - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "active", - "ominous": "true", - "facing": "east" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "active", - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "unlocking", - "ominous": "true", - "facing": "east" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "unlocking", - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "ejecting", - "ominous": "true", - "facing": "east" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": true, - "vault_state": "ejecting", - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "inactive", - "ominous": "false", - "facing": "east" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "inactive", - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "active", - "ominous": "false", - "facing": "east" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "active", - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "unlocking", - "ominous": "false", - "facing": "east" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "unlocking", - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "vault_state": "ejecting", - "ominous": "false", - "facing": "east" - }, - "Name": "minecraft:vault" - }, - "bedrock_state": { - "bedrock_identifier": "vault", - "state": { - "ominous": false, - "vault_state": "ejecting", - "minecraft:cardinal_direction": "east" - } - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "true" - }, - "Name": "minecraft:heavy_core" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_core" - } - }, - { - "java_state": { - "Properties": { - "waterlogged": "false" - }, - "Name": "minecraft:heavy_core" - }, - "bedrock_state": { - "bedrock_identifier": "heavy_core" - } - } - ], - "DataVersion": 3835 -} \ No newline at end of file diff --git a/platforms/allay/src/main/resources/mapping/blocks_JE_1_21_to_BE_1_21_30.json b/platforms/allay/src/main/resources/mapping/blocks_JE_1_21_to_BE_1_21_30.json new file mode 100644 index 000000000..d77767a6a --- /dev/null +++ b/platforms/allay/src/main/resources/mapping/blocks_JE_1_21_to_BE_1_21_30.json @@ -0,0 +1 @@ +{"mappings":[{"java_state":{"Name":"minecraft:air"},"bedrock_state":{"bedrock_identifier":"air"}},{"java_state":{"Name":"minecraft:stone"},"bedrock_state":{"bedrock_identifier":"stone"}},{"java_state":{"Name":"minecraft:granite"},"bedrock_state":{"bedrock_identifier":"granite"}},{"java_state":{"Name":"minecraft:polished_granite"},"bedrock_state":{"bedrock_identifier":"polished_granite"}},{"java_state":{"Name":"minecraft:diorite"},"bedrock_state":{"bedrock_identifier":"diorite"}},{"java_state":{"Name":"minecraft:polished_diorite"},"bedrock_state":{"bedrock_identifier":"polished_diorite"}},{"java_state":{"Name":"minecraft:andesite"},"bedrock_state":{"bedrock_identifier":"andesite"}},{"java_state":{"Name":"minecraft:polished_andesite"},"bedrock_state":{"bedrock_identifier":"polished_andesite"}},{"java_state":{"Properties":{"snowy":"true"},"Name":"minecraft:grass_block"},"bedrock_state":{"bedrock_identifier":"grass_block"}},{"java_state":{"Properties":{"snowy":"false"},"Name":"minecraft:grass_block"},"bedrock_state":{"bedrock_identifier":"grass_block"}},{"java_state":{"Name":"minecraft:dirt"},"bedrock_state":{"bedrock_identifier":"dirt"}},{"java_state":{"Name":"minecraft:coarse_dirt"},"bedrock_state":{"bedrock_identifier":"coarse_dirt"}},{"java_state":{"Properties":{"snowy":"true"},"Name":"minecraft:podzol"},"bedrock_state":{"bedrock_identifier":"podzol"}},{"java_state":{"Properties":{"snowy":"false"},"Name":"minecraft:podzol"},"bedrock_state":{"bedrock_identifier":"podzol"}},{"java_state":{"Name":"minecraft:cobblestone"},"bedrock_state":{"bedrock_identifier":"cobblestone"}},{"java_state":{"Name":"minecraft:oak_planks"},"bedrock_state":{"bedrock_identifier":"oak_planks"}},{"java_state":{"Name":"minecraft:spruce_planks"},"bedrock_state":{"bedrock_identifier":"spruce_planks"}},{"java_state":{"Name":"minecraft:birch_planks"},"bedrock_state":{"bedrock_identifier":"birch_planks"}},{"java_state":{"Name":"minecraft:jungle_planks"},"bedrock_state":{"bedrock_identifier":"jungle_planks"}},{"java_state":{"Name":"minecraft:acacia_planks"},"bedrock_state":{"bedrock_identifier":"acacia_planks"}},{"java_state":{"Name":"minecraft:cherry_planks"},"bedrock_state":{"bedrock_identifier":"cherry_planks"}},{"java_state":{"Name":"minecraft:dark_oak_planks"},"bedrock_state":{"bedrock_identifier":"dark_oak_planks"}},{"java_state":{"Name":"minecraft:mangrove_planks"},"bedrock_state":{"bedrock_identifier":"mangrove_planks"}},{"java_state":{"Name":"minecraft:bamboo_planks"},"bedrock_state":{"bedrock_identifier":"bamboo_planks"}},{"java_state":{"Name":"minecraft:bamboo_mosaic"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic"}},{"java_state":{"Properties":{"stage":"0"},"Name":"minecraft:oak_sapling"},"bedrock_state":{"bedrock_identifier":"oak_sapling","state":{"age_bit":false }}},{"java_state":{"Properties":{"stage":"1"},"Name":"minecraft:oak_sapling"},"bedrock_state":{"bedrock_identifier":"oak_sapling","state":{"age_bit":true }}},{"java_state":{"Properties":{"stage":"0"},"Name":"minecraft:spruce_sapling"},"bedrock_state":{"bedrock_identifier":"spruce_sapling","state":{"age_bit":false }}},{"java_state":{"Properties":{"stage":"1"},"Name":"minecraft:spruce_sapling"},"bedrock_state":{"bedrock_identifier":"spruce_sapling","state":{"age_bit":true }}},{"java_state":{"Properties":{"stage":"0"},"Name":"minecraft:birch_sapling"},"bedrock_state":{"bedrock_identifier":"birch_sapling","state":{"age_bit":false }}},{"java_state":{"Properties":{"stage":"1"},"Name":"minecraft:birch_sapling"},"bedrock_state":{"bedrock_identifier":"birch_sapling","state":{"age_bit":true }}},{"java_state":{"Properties":{"stage":"0"},"Name":"minecraft:jungle_sapling"},"bedrock_state":{"bedrock_identifier":"jungle_sapling","state":{"age_bit":false }}},{"java_state":{"Properties":{"stage":"1"},"Name":"minecraft:jungle_sapling"},"bedrock_state":{"bedrock_identifier":"jungle_sapling","state":{"age_bit":true }}},{"java_state":{"Properties":{"stage":"0"},"Name":"minecraft:acacia_sapling"},"bedrock_state":{"bedrock_identifier":"acacia_sapling","state":{"age_bit":false }}},{"java_state":{"Properties":{"stage":"1"},"Name":"minecraft:acacia_sapling"},"bedrock_state":{"bedrock_identifier":"acacia_sapling","state":{"age_bit":true }}},{"java_state":{"Properties":{"stage":"0"},"Name":"minecraft:cherry_sapling"},"bedrock_state":{"bedrock_identifier":"cherry_sapling","state":{"age_bit":false }}},{"java_state":{"Properties":{"stage":"1"},"Name":"minecraft:cherry_sapling"},"bedrock_state":{"bedrock_identifier":"cherry_sapling","state":{"age_bit":true }}},{"java_state":{"Properties":{"stage":"0"},"Name":"minecraft:dark_oak_sapling"},"bedrock_state":{"bedrock_identifier":"dark_oak_sapling","state":{"age_bit":false }}},{"java_state":{"Properties":{"stage":"1"},"Name":"minecraft:dark_oak_sapling"},"bedrock_state":{"bedrock_identifier":"dark_oak_sapling","state":{"age_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"0","hanging":"true","age":"0"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":0,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"0","hanging":"true","age":"0"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":0,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"1","hanging":"true","age":"0"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":0,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"1","hanging":"true","age":"0"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":0,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"0","hanging":"false","age":"0"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":0,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"0","hanging":"false","age":"0"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":0,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"1","hanging":"false","age":"0"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":0,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"1","hanging":"false","age":"0"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":0,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"0","hanging":"true","age":"1"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":1,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"0","hanging":"true","age":"1"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":1,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"1","hanging":"true","age":"1"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":1,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"1","hanging":"true","age":"1"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":1,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"0","hanging":"false","age":"1"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":1,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"0","hanging":"false","age":"1"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":1,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"1","hanging":"false","age":"1"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":1,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"1","hanging":"false","age":"1"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":1,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"0","hanging":"true","age":"2"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"0","hanging":"true","age":"2"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"1","hanging":"true","age":"2"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"1","hanging":"true","age":"2"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"0","hanging":"false","age":"2"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"0","hanging":"false","age":"2"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"1","hanging":"false","age":"2"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"1","hanging":"false","age":"2"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"0","hanging":"true","age":"3"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"0","hanging":"true","age":"3"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"1","hanging":"true","age":"3"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"1","hanging":"true","age":"3"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"0","hanging":"false","age":"3"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"0","hanging":"false","age":"3"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"1","hanging":"false","age":"3"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"1","hanging":"false","age":"3"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"0","hanging":"true","age":"4"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"0","hanging":"true","age":"4"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"1","hanging":"true","age":"4"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"1","hanging":"true","age":"4"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"0","hanging":"false","age":"4"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"0","hanging":"false","age":"4"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","stage":"1","hanging":"false","age":"4"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","stage":"1","hanging":"false","age":"4"},"Name":"minecraft:mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"mangrove_propagule","state":{"propagule_stage":4,"hanging":false }}},{"java_state":{"Name":"minecraft:bedrock"},"bedrock_state":{"bedrock_identifier":"bedrock","state":{"infiniburn_bit":false }}},{"java_state":{"Properties":{"level":"0"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"water","state":{"liquid_depth":0 }}},{"java_state":{"Properties":{"level":"1"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":1 }}},{"java_state":{"Properties":{"level":"2"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":2 }}},{"java_state":{"Properties":{"level":"3"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":3 }}},{"java_state":{"Properties":{"level":"4"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":4 }}},{"java_state":{"Properties":{"level":"5"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":5 }}},{"java_state":{"Properties":{"level":"6"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":6 }}},{"java_state":{"Properties":{"level":"7"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":7 }}},{"java_state":{"Properties":{"level":"8"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":8 }}},{"java_state":{"Properties":{"level":"9"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":9 }}},{"java_state":{"Properties":{"level":"10"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":10 }}},{"java_state":{"Properties":{"level":"11"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":11 }}},{"java_state":{"Properties":{"level":"12"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":12 }}},{"java_state":{"Properties":{"level":"13"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":13 }}},{"java_state":{"Properties":{"level":"14"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":14 }}},{"java_state":{"Properties":{"level":"15"},"Name":"minecraft:water"},"bedrock_state":{"bedrock_identifier":"flowing_water","state":{"liquid_depth":15 }}},{"java_state":{"Properties":{"level":"0"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"lava","state":{"liquid_depth":0 }}},{"java_state":{"Properties":{"level":"1"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":1 }}},{"java_state":{"Properties":{"level":"2"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":2 }}},{"java_state":{"Properties":{"level":"3"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":3 }}},{"java_state":{"Properties":{"level":"4"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":4 }}},{"java_state":{"Properties":{"level":"5"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":5 }}},{"java_state":{"Properties":{"level":"6"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":6 }}},{"java_state":{"Properties":{"level":"7"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":7 }}},{"java_state":{"Properties":{"level":"8"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":8 }}},{"java_state":{"Properties":{"level":"9"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":9 }}},{"java_state":{"Properties":{"level":"10"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":10 }}},{"java_state":{"Properties":{"level":"11"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":11 }}},{"java_state":{"Properties":{"level":"12"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":12 }}},{"java_state":{"Properties":{"level":"13"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":13 }}},{"java_state":{"Properties":{"level":"14"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":14 }}},{"java_state":{"Properties":{"level":"15"},"Name":"minecraft:lava"},"bedrock_state":{"bedrock_identifier":"flowing_lava","state":{"liquid_depth":15 }}},{"java_state":{"Name":"minecraft:sand"},"bedrock_state":{"bedrock_identifier":"sand"}},{"java_state":{"Properties":{"dusted":"0"},"Name":"minecraft:suspicious_sand"},"bedrock_state":{"bedrock_identifier":"suspicious_sand","state":{"hanging":false,"brushed_progress":0 }}},{"java_state":{"Properties":{"dusted":"1"},"Name":"minecraft:suspicious_sand"},"bedrock_state":{"bedrock_identifier":"suspicious_sand","state":{"hanging":false,"brushed_progress":1 }}},{"java_state":{"Properties":{"dusted":"2"},"Name":"minecraft:suspicious_sand"},"bedrock_state":{"bedrock_identifier":"suspicious_sand","state":{"hanging":false,"brushed_progress":2 }}},{"java_state":{"Properties":{"dusted":"3"},"Name":"minecraft:suspicious_sand"},"bedrock_state":{"bedrock_identifier":"suspicious_sand","state":{"hanging":false,"brushed_progress":3 }}},{"java_state":{"Name":"minecraft:red_sand"},"bedrock_state":{"bedrock_identifier":"red_sand"}},{"java_state":{"Name":"minecraft:gravel"},"bedrock_state":{"bedrock_identifier":"gravel"}},{"java_state":{"Properties":{"dusted":"0"},"Name":"minecraft:suspicious_gravel"},"bedrock_state":{"bedrock_identifier":"suspicious_gravel","state":{"hanging":false,"brushed_progress":0 }}},{"java_state":{"Properties":{"dusted":"1"},"Name":"minecraft:suspicious_gravel"},"bedrock_state":{"bedrock_identifier":"suspicious_gravel","state":{"hanging":false,"brushed_progress":1 }}},{"java_state":{"Properties":{"dusted":"2"},"Name":"minecraft:suspicious_gravel"},"bedrock_state":{"bedrock_identifier":"suspicious_gravel","state":{"hanging":false,"brushed_progress":2 }}},{"java_state":{"Properties":{"dusted":"3"},"Name":"minecraft:suspicious_gravel"},"bedrock_state":{"bedrock_identifier":"suspicious_gravel","state":{"hanging":false,"brushed_progress":3 }}},{"java_state":{"Name":"minecraft:gold_ore"},"bedrock_state":{"bedrock_identifier":"gold_ore"}},{"java_state":{"Name":"minecraft:deepslate_gold_ore"},"bedrock_state":{"bedrock_identifier":"deepslate_gold_ore"}},{"java_state":{"Name":"minecraft:iron_ore"},"bedrock_state":{"bedrock_identifier":"iron_ore"}},{"java_state":{"Name":"minecraft:deepslate_iron_ore"},"bedrock_state":{"bedrock_identifier":"deepslate_iron_ore"}},{"java_state":{"Name":"minecraft:coal_ore"},"bedrock_state":{"bedrock_identifier":"coal_ore"}},{"java_state":{"Name":"minecraft:deepslate_coal_ore"},"bedrock_state":{"bedrock_identifier":"deepslate_coal_ore"}},{"java_state":{"Name":"minecraft:nether_gold_ore"},"bedrock_state":{"bedrock_identifier":"nether_gold_ore"}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:oak_log"},"bedrock_state":{"bedrock_identifier":"oak_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:oak_log"},"bedrock_state":{"bedrock_identifier":"oak_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:oak_log"},"bedrock_state":{"bedrock_identifier":"oak_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:spruce_log"},"bedrock_state":{"bedrock_identifier":"spruce_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:spruce_log"},"bedrock_state":{"bedrock_identifier":"spruce_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:spruce_log"},"bedrock_state":{"bedrock_identifier":"spruce_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:birch_log"},"bedrock_state":{"bedrock_identifier":"birch_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:birch_log"},"bedrock_state":{"bedrock_identifier":"birch_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:birch_log"},"bedrock_state":{"bedrock_identifier":"birch_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:jungle_log"},"bedrock_state":{"bedrock_identifier":"jungle_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:jungle_log"},"bedrock_state":{"bedrock_identifier":"jungle_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:jungle_log"},"bedrock_state":{"bedrock_identifier":"jungle_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:acacia_log"},"bedrock_state":{"bedrock_identifier":"acacia_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:acacia_log"},"bedrock_state":{"bedrock_identifier":"acacia_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:acacia_log"},"bedrock_state":{"bedrock_identifier":"acacia_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:cherry_log"},"bedrock_state":{"bedrock_identifier":"cherry_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:cherry_log"},"bedrock_state":{"bedrock_identifier":"cherry_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:cherry_log"},"bedrock_state":{"bedrock_identifier":"cherry_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:dark_oak_log"},"bedrock_state":{"bedrock_identifier":"dark_oak_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:dark_oak_log"},"bedrock_state":{"bedrock_identifier":"dark_oak_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:dark_oak_log"},"bedrock_state":{"bedrock_identifier":"dark_oak_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:mangrove_log"},"bedrock_state":{"bedrock_identifier":"mangrove_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:mangrove_log"},"bedrock_state":{"bedrock_identifier":"mangrove_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:mangrove_log"},"bedrock_state":{"bedrock_identifier":"mangrove_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:mangrove_roots"},"bedrock_state":{"bedrock_identifier":"mangrove_roots"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:mangrove_roots"},"bedrock_state":{"bedrock_identifier":"mangrove_roots"}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:muddy_mangrove_roots"},"bedrock_state":{"bedrock_identifier":"muddy_mangrove_roots","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:muddy_mangrove_roots"},"bedrock_state":{"bedrock_identifier":"muddy_mangrove_roots","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:muddy_mangrove_roots"},"bedrock_state":{"bedrock_identifier":"muddy_mangrove_roots","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:bamboo_block"},"bedrock_state":{"bedrock_identifier":"bamboo_block","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:bamboo_block"},"bedrock_state":{"bedrock_identifier":"bamboo_block","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:bamboo_block"},"bedrock_state":{"bedrock_identifier":"bamboo_block","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_spruce_log"},"bedrock_state":{"bedrock_identifier":"stripped_spruce_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_spruce_log"},"bedrock_state":{"bedrock_identifier":"stripped_spruce_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_spruce_log"},"bedrock_state":{"bedrock_identifier":"stripped_spruce_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_birch_log"},"bedrock_state":{"bedrock_identifier":"stripped_birch_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_birch_log"},"bedrock_state":{"bedrock_identifier":"stripped_birch_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_birch_log"},"bedrock_state":{"bedrock_identifier":"stripped_birch_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_jungle_log"},"bedrock_state":{"bedrock_identifier":"stripped_jungle_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_jungle_log"},"bedrock_state":{"bedrock_identifier":"stripped_jungle_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_jungle_log"},"bedrock_state":{"bedrock_identifier":"stripped_jungle_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_acacia_log"},"bedrock_state":{"bedrock_identifier":"stripped_acacia_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_acacia_log"},"bedrock_state":{"bedrock_identifier":"stripped_acacia_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_acacia_log"},"bedrock_state":{"bedrock_identifier":"stripped_acacia_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_cherry_log"},"bedrock_state":{"bedrock_identifier":"stripped_cherry_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_cherry_log"},"bedrock_state":{"bedrock_identifier":"stripped_cherry_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_cherry_log"},"bedrock_state":{"bedrock_identifier":"stripped_cherry_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_dark_oak_log"},"bedrock_state":{"bedrock_identifier":"stripped_dark_oak_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_dark_oak_log"},"bedrock_state":{"bedrock_identifier":"stripped_dark_oak_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_dark_oak_log"},"bedrock_state":{"bedrock_identifier":"stripped_dark_oak_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_oak_log"},"bedrock_state":{"bedrock_identifier":"stripped_oak_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_oak_log"},"bedrock_state":{"bedrock_identifier":"stripped_oak_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_oak_log"},"bedrock_state":{"bedrock_identifier":"stripped_oak_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_mangrove_log"},"bedrock_state":{"bedrock_identifier":"stripped_mangrove_log","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_mangrove_log"},"bedrock_state":{"bedrock_identifier":"stripped_mangrove_log","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_mangrove_log"},"bedrock_state":{"bedrock_identifier":"stripped_mangrove_log","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_bamboo_block"},"bedrock_state":{"bedrock_identifier":"stripped_bamboo_block","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_bamboo_block"},"bedrock_state":{"bedrock_identifier":"stripped_bamboo_block","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_bamboo_block"},"bedrock_state":{"bedrock_identifier":"stripped_bamboo_block","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:oak_wood"},"bedrock_state":{"bedrock_identifier":"oak_wood","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:oak_wood"},"bedrock_state":{"bedrock_identifier":"oak_wood","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:oak_wood"},"bedrock_state":{"bedrock_identifier":"oak_wood","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:spruce_wood"},"bedrock_state":{"bedrock_identifier":"spruce_wood","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:spruce_wood"},"bedrock_state":{"bedrock_identifier":"spruce_wood","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:spruce_wood"},"bedrock_state":{"bedrock_identifier":"spruce_wood","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:birch_wood"},"bedrock_state":{"bedrock_identifier":"birch_wood","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:birch_wood"},"bedrock_state":{"bedrock_identifier":"birch_wood","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:birch_wood"},"bedrock_state":{"bedrock_identifier":"birch_wood","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:jungle_wood"},"bedrock_state":{"bedrock_identifier":"jungle_wood","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:jungle_wood"},"bedrock_state":{"bedrock_identifier":"jungle_wood","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:jungle_wood"},"bedrock_state":{"bedrock_identifier":"jungle_wood","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:acacia_wood"},"bedrock_state":{"bedrock_identifier":"acacia_wood","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:acacia_wood"},"bedrock_state":{"bedrock_identifier":"acacia_wood","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:acacia_wood"},"bedrock_state":{"bedrock_identifier":"acacia_wood","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:cherry_wood"},"bedrock_state":{"bedrock_identifier":"cherry_wood","state":{"stripped_bit":false,"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:cherry_wood"},"bedrock_state":{"bedrock_identifier":"cherry_wood","state":{"stripped_bit":false,"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:cherry_wood"},"bedrock_state":{"bedrock_identifier":"cherry_wood","state":{"stripped_bit":false,"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:dark_oak_wood"},"bedrock_state":{"bedrock_identifier":"dark_oak_wood","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:dark_oak_wood"},"bedrock_state":{"bedrock_identifier":"dark_oak_wood","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:dark_oak_wood"},"bedrock_state":{"bedrock_identifier":"dark_oak_wood","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:mangrove_wood"},"bedrock_state":{"bedrock_identifier":"mangrove_wood","state":{"stripped_bit":false,"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:mangrove_wood"},"bedrock_state":{"bedrock_identifier":"mangrove_wood","state":{"stripped_bit":false,"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:mangrove_wood"},"bedrock_state":{"bedrock_identifier":"mangrove_wood","state":{"stripped_bit":false,"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_oak_wood"},"bedrock_state":{"bedrock_identifier":"stripped_oak_wood","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_oak_wood"},"bedrock_state":{"bedrock_identifier":"stripped_oak_wood","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_oak_wood"},"bedrock_state":{"bedrock_identifier":"stripped_oak_wood","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_spruce_wood"},"bedrock_state":{"bedrock_identifier":"stripped_spruce_wood","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_spruce_wood"},"bedrock_state":{"bedrock_identifier":"stripped_spruce_wood","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_spruce_wood"},"bedrock_state":{"bedrock_identifier":"stripped_spruce_wood","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_birch_wood"},"bedrock_state":{"bedrock_identifier":"stripped_birch_wood","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_birch_wood"},"bedrock_state":{"bedrock_identifier":"stripped_birch_wood","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_birch_wood"},"bedrock_state":{"bedrock_identifier":"stripped_birch_wood","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_jungle_wood"},"bedrock_state":{"bedrock_identifier":"stripped_jungle_wood","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_jungle_wood"},"bedrock_state":{"bedrock_identifier":"stripped_jungle_wood","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_jungle_wood"},"bedrock_state":{"bedrock_identifier":"stripped_jungle_wood","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_acacia_wood"},"bedrock_state":{"bedrock_identifier":"stripped_acacia_wood","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_acacia_wood"},"bedrock_state":{"bedrock_identifier":"stripped_acacia_wood","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_acacia_wood"},"bedrock_state":{"bedrock_identifier":"stripped_acacia_wood","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_cherry_wood"},"bedrock_state":{"bedrock_identifier":"stripped_cherry_wood","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_cherry_wood"},"bedrock_state":{"bedrock_identifier":"stripped_cherry_wood","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_cherry_wood"},"bedrock_state":{"bedrock_identifier":"stripped_cherry_wood","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_dark_oak_wood"},"bedrock_state":{"bedrock_identifier":"stripped_dark_oak_wood","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_dark_oak_wood"},"bedrock_state":{"bedrock_identifier":"stripped_dark_oak_wood","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_dark_oak_wood"},"bedrock_state":{"bedrock_identifier":"stripped_dark_oak_wood","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_mangrove_wood"},"bedrock_state":{"bedrock_identifier":"stripped_mangrove_wood","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_mangrove_wood"},"bedrock_state":{"bedrock_identifier":"stripped_mangrove_wood","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_mangrove_wood"},"bedrock_state":{"bedrock_identifier":"stripped_mangrove_wood","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"1"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"1"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"1"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"1"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"2"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"2"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"2"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"2"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"3"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"3"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"3"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"3"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"4"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"4"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"4"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"4"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"5"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"5"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"5"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"5"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"6"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"6"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"6"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"6"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"7"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"7"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"7"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"7"},"Name":"minecraft:oak_leaves"},"bedrock_state":{"bedrock_identifier":"oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"1"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"1"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"1"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"1"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"2"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"2"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"2"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"2"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"3"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"3"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"3"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"3"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"4"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"4"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"4"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"4"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"5"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"5"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"5"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"5"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"6"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"6"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"6"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"6"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"7"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"7"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"7"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"7"},"Name":"minecraft:spruce_leaves"},"bedrock_state":{"bedrock_identifier":"spruce_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"1"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"1"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"1"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"1"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"2"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"2"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"2"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"2"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"3"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"3"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"3"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"3"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"4"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"4"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"4"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"4"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"5"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"5"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"5"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"5"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"6"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"6"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"6"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"6"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"7"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"7"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"7"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"7"},"Name":"minecraft:birch_leaves"},"bedrock_state":{"bedrock_identifier":"birch_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"1"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"1"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"1"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"1"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"2"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"2"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"2"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"2"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"3"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"3"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"3"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"3"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"4"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"4"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"4"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"4"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"5"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"5"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"5"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"5"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"6"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"6"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"6"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"6"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"7"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"7"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"7"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"7"},"Name":"minecraft:jungle_leaves"},"bedrock_state":{"bedrock_identifier":"jungle_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"1"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"1"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"1"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"1"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"2"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"2"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"2"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"2"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"3"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"3"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"3"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"3"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"4"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"4"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"4"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"4"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"5"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"5"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"5"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"5"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"6"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"6"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"6"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"6"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"7"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"7"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"7"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"7"},"Name":"minecraft:acacia_leaves"},"bedrock_state":{"bedrock_identifier":"acacia_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"1"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"1"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"1"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"1"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"2"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"2"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"2"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"2"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"3"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"3"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"3"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"3"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"4"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"4"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"4"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"4"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"5"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"5"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"5"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"5"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"6"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"6"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"6"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"6"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"7"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"7"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"7"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"7"},"Name":"minecraft:cherry_leaves"},"bedrock_state":{"bedrock_identifier":"cherry_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"1"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"1"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"1"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"1"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"2"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"2"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"2"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"2"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"3"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"3"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"3"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"3"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"4"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"4"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"4"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"4"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"5"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"5"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"5"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"5"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"6"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"6"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"6"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"6"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"7"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"7"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"7"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"7"},"Name":"minecraft:dark_oak_leaves"},"bedrock_state":{"bedrock_identifier":"dark_oak_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"1"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"1"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"1"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"1"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"2"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"2"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"2"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"2"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"3"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"3"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"3"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"3"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"4"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"4"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"4"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"4"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"5"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"5"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"5"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"5"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"6"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"6"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"6"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"6"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"7"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"7"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"7"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"7"},"Name":"minecraft:mangrove_leaves"},"bedrock_state":{"bedrock_identifier":"mangrove_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"1"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"1"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"1"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"1"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"2"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"2"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"2"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"2"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"3"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"3"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"3"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"3"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"4"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"4"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"4"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"4"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"5"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"5"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"5"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"5"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"6"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"6"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"6"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"6"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"7"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"7"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"7"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"7"},"Name":"minecraft:azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"1"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"1"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"1"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"1"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"2"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"2"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"2"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"2"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"3"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"3"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"3"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"3"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"4"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"4"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"4"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"4"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"5"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"5"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"5"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"5"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"6"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"6"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"6"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"6"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"true","distance":"7"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"true","distance":"7"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":true,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","persistent":"false","distance":"7"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","persistent":"false","distance":"7"},"Name":"minecraft:flowering_azalea_leaves"},"bedrock_state":{"bedrock_identifier":"azalea_leaves_flowered","state":{"persistent_bit":false,"update_bit":false }}},{"java_state":{"Name":"minecraft:sponge"},"bedrock_state":{"bedrock_identifier":"sponge"}},{"java_state":{"Name":"minecraft:wet_sponge"},"bedrock_state":{"bedrock_identifier":"wet_sponge"}},{"java_state":{"Name":"minecraft:glass"},"bedrock_state":{"bedrock_identifier":"glass"}},{"java_state":{"Name":"minecraft:lapis_ore"},"bedrock_state":{"bedrock_identifier":"lapis_ore"}},{"java_state":{"Name":"minecraft:deepslate_lapis_ore"},"bedrock_state":{"bedrock_identifier":"deepslate_lapis_ore"}},{"java_state":{"Name":"minecraft:lapis_block"},"bedrock_state":{"bedrock_identifier":"lapis_block"}},{"java_state":{"Properties":{"triggered":"true","facing":"north"},"Name":"minecraft:dispenser"},"bedrock_state":{"bedrock_identifier":"dispenser","state":{"facing_direction":2,"triggered_bit":true }}},{"java_state":{"Properties":{"triggered":"false","facing":"north"},"Name":"minecraft:dispenser"},"bedrock_state":{"bedrock_identifier":"dispenser","state":{"facing_direction":2,"triggered_bit":false }}},{"java_state":{"Properties":{"triggered":"true","facing":"east"},"Name":"minecraft:dispenser"},"bedrock_state":{"bedrock_identifier":"dispenser","state":{"facing_direction":5,"triggered_bit":true }}},{"java_state":{"Properties":{"triggered":"false","facing":"east"},"Name":"minecraft:dispenser"},"bedrock_state":{"bedrock_identifier":"dispenser","state":{"facing_direction":5,"triggered_bit":false }}},{"java_state":{"Properties":{"triggered":"true","facing":"south"},"Name":"minecraft:dispenser"},"bedrock_state":{"bedrock_identifier":"dispenser","state":{"facing_direction":3,"triggered_bit":true }}},{"java_state":{"Properties":{"triggered":"false","facing":"south"},"Name":"minecraft:dispenser"},"bedrock_state":{"bedrock_identifier":"dispenser","state":{"facing_direction":3,"triggered_bit":false }}},{"java_state":{"Properties":{"triggered":"true","facing":"west"},"Name":"minecraft:dispenser"},"bedrock_state":{"bedrock_identifier":"dispenser","state":{"facing_direction":4,"triggered_bit":true }}},{"java_state":{"Properties":{"triggered":"false","facing":"west"},"Name":"minecraft:dispenser"},"bedrock_state":{"bedrock_identifier":"dispenser","state":{"facing_direction":4,"triggered_bit":false }}},{"java_state":{"Properties":{"triggered":"true","facing":"up"},"Name":"minecraft:dispenser"},"bedrock_state":{"bedrock_identifier":"dispenser","state":{"facing_direction":1,"triggered_bit":true }}},{"java_state":{"Properties":{"triggered":"false","facing":"up"},"Name":"minecraft:dispenser"},"bedrock_state":{"bedrock_identifier":"dispenser","state":{"facing_direction":1,"triggered_bit":false }}},{"java_state":{"Properties":{"triggered":"true","facing":"down"},"Name":"minecraft:dispenser"},"bedrock_state":{"bedrock_identifier":"dispenser","state":{"facing_direction":0,"triggered_bit":true }}},{"java_state":{"Properties":{"triggered":"false","facing":"down"},"Name":"minecraft:dispenser"},"bedrock_state":{"bedrock_identifier":"dispenser","state":{"facing_direction":0,"triggered_bit":false }}},{"java_state":{"Name":"minecraft:sandstone"},"bedrock_state":{"bedrock_identifier":"sandstone"}},{"java_state":{"Name":"minecraft:chiseled_sandstone"},"bedrock_state":{"bedrock_identifier":"chiseled_sandstone"}},{"java_state":{"Name":"minecraft:cut_sandstone"},"bedrock_state":{"bedrock_identifier":"cut_sandstone"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"harp"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"basedrum"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"snare"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"hat"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"bass"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"flute"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"guitar"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"chime"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"iron_xylophone"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"cow_bell"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"didgeridoo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"bit"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"banjo"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"pling"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"zombie"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"creeper"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"dragon"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"wither_skeleton"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"piglin"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"0","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"0","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"1","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"1","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"2","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"2","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"3","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"3","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"4","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"4","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"5","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"5","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"6","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"6","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"7","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"7","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"8","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"8","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"9","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"9","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"10","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"10","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"11","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"11","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"12","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"12","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"13","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"13","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"14","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"14","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"15","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"15","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"16","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"16","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"17","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"17","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"18","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"18","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"19","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"19","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"20","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"20","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"21","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"21","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"22","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"22","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"23","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"23","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"true","note":"24","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"powered":"false","note":"24","instrument":"custom_head"},"Name":"minecraft:note_block"},"bedrock_state":{"bedrock_identifier":"noteblock"}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:white_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:orange_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:magenta_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:light_blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:yellow_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:lime_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:pink_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:light_gray_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:cyan_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:purple_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:blue_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:brown_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:green_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:red_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"north"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"north"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"north"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"north"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":2 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"south"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"south"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"south"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"south"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":0 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"west"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"west"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"west"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"west"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":1 }}},{"java_state":{"Properties":{"part":"head","occupied":"true","facing":"east"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"true","facing":"east"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":true,"direction":3 }}},{"java_state":{"Properties":{"part":"head","occupied":"false","facing":"east"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":true,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"part":"foot","occupied":"false","facing":"east"},"Name":"minecraft:black_bed"},"bedrock_state":{"bedrock_identifier":"bed","state":{"head_piece_bit":false,"occupied_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"north_south","powered":"true"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":0,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"north_south","powered":"true"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":0,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"east_west","powered":"true"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":1,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"east_west","powered":"true"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":1,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_east","powered":"true"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":2,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_east","powered":"true"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":2,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_west","powered":"true"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":3,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_west","powered":"true"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":3,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_north","powered":"true"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":4,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_north","powered":"true"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":4,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_south","powered":"true"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":5,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_south","powered":"true"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":5,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"north_south","powered":"false"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":0,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"north_south","powered":"false"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":0,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"east_west","powered":"false"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":1,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"east_west","powered":"false"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":1,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_east","powered":"false"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":2,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_east","powered":"false"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":2,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_west","powered":"false"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":3,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_west","powered":"false"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":3,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_north","powered":"false"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":4,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_north","powered":"false"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":4,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_south","powered":"false"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":5,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_south","powered":"false"},"Name":"minecraft:powered_rail"},"bedrock_state":{"bedrock_identifier":"golden_rail","state":{"rail_direction":5,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"north_south","powered":"true"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":0,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"north_south","powered":"true"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":0,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"east_west","powered":"true"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":1,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"east_west","powered":"true"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":1,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_east","powered":"true"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":2,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_east","powered":"true"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":2,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_west","powered":"true"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":3,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_west","powered":"true"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":3,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_north","powered":"true"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":4,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_north","powered":"true"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":4,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_south","powered":"true"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":5,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_south","powered":"true"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":5,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"north_south","powered":"false"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":0,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"north_south","powered":"false"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":0,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"east_west","powered":"false"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":1,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"east_west","powered":"false"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":1,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_east","powered":"false"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":2,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_east","powered":"false"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":2,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_west","powered":"false"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":3,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_west","powered":"false"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":3,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_north","powered":"false"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":4,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_north","powered":"false"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":4,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_south","powered":"false"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":5,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_south","powered":"false"},"Name":"minecraft:detector_rail"},"bedrock_state":{"bedrock_identifier":"detector_rail","state":{"rail_direction":5,"rail_data_bit":false }}},{"java_state":{"Properties":{"facing":"north","extended":"true"},"Name":"minecraft:sticky_piston"},"bedrock_state":{"bedrock_identifier":"sticky_piston","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"east","extended":"true"},"Name":"minecraft:sticky_piston"},"bedrock_state":{"bedrock_identifier":"sticky_piston","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"south","extended":"true"},"Name":"minecraft:sticky_piston"},"bedrock_state":{"bedrock_identifier":"sticky_piston","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"west","extended":"true"},"Name":"minecraft:sticky_piston"},"bedrock_state":{"bedrock_identifier":"sticky_piston","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"up","extended":"true"},"Name":"minecraft:sticky_piston"},"bedrock_state":{"bedrock_identifier":"sticky_piston","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"facing":"down","extended":"true"},"Name":"minecraft:sticky_piston"},"bedrock_state":{"bedrock_identifier":"sticky_piston","state":{"facing_direction":0 }}},{"java_state":{"Properties":{"facing":"north","extended":"false"},"Name":"minecraft:sticky_piston"},"bedrock_state":{"bedrock_identifier":"sticky_piston","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"east","extended":"false"},"Name":"minecraft:sticky_piston"},"bedrock_state":{"bedrock_identifier":"sticky_piston","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"south","extended":"false"},"Name":"minecraft:sticky_piston"},"bedrock_state":{"bedrock_identifier":"sticky_piston","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"west","extended":"false"},"Name":"minecraft:sticky_piston"},"bedrock_state":{"bedrock_identifier":"sticky_piston","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"up","extended":"false"},"Name":"minecraft:sticky_piston"},"bedrock_state":{"bedrock_identifier":"sticky_piston","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"facing":"down","extended":"false"},"Name":"minecraft:sticky_piston"},"bedrock_state":{"bedrock_identifier":"sticky_piston","state":{"facing_direction":0 }}},{"java_state":{"Name":"minecraft:cobweb"},"bedrock_state":{"bedrock_identifier":"web"}},{"java_state":{"Name":"minecraft:short_grass"},"bedrock_state":{"bedrock_identifier":"short_grass"}},{"java_state":{"Name":"minecraft:fern"},"bedrock_state":{"bedrock_identifier":"fern"}},{"java_state":{"Name":"minecraft:dead_bush"},"bedrock_state":{"bedrock_identifier":"deadbush"}},{"java_state":{"Name":"minecraft:seagrass"},"bedrock_state":{"bedrock_identifier":"seagrass","state":{"sea_grass_type":"default"}}},{"java_state":{"Properties":{"half":"upper"},"Name":"minecraft:tall_seagrass"},"bedrock_state":{"bedrock_identifier":"seagrass","state":{"sea_grass_type":"double_top"}}},{"java_state":{"Properties":{"half":"lower"},"Name":"minecraft:tall_seagrass"},"bedrock_state":{"bedrock_identifier":"seagrass","state":{"sea_grass_type":"double_bot"}}},{"java_state":{"Properties":{"facing":"north","extended":"true"},"Name":"minecraft:piston"},"bedrock_state":{"bedrock_identifier":"piston","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"east","extended":"true"},"Name":"minecraft:piston"},"bedrock_state":{"bedrock_identifier":"piston","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"south","extended":"true"},"Name":"minecraft:piston"},"bedrock_state":{"bedrock_identifier":"piston","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"west","extended":"true"},"Name":"minecraft:piston"},"bedrock_state":{"bedrock_identifier":"piston","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"up","extended":"true"},"Name":"minecraft:piston"},"bedrock_state":{"bedrock_identifier":"piston","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"facing":"down","extended":"true"},"Name":"minecraft:piston"},"bedrock_state":{"bedrock_identifier":"piston","state":{"facing_direction":0 }}},{"java_state":{"Properties":{"facing":"north","extended":"false"},"Name":"minecraft:piston"},"bedrock_state":{"bedrock_identifier":"piston","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"east","extended":"false"},"Name":"minecraft:piston"},"bedrock_state":{"bedrock_identifier":"piston","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"south","extended":"false"},"Name":"minecraft:piston"},"bedrock_state":{"bedrock_identifier":"piston","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"west","extended":"false"},"Name":"minecraft:piston"},"bedrock_state":{"bedrock_identifier":"piston","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"up","extended":"false"},"Name":"minecraft:piston"},"bedrock_state":{"bedrock_identifier":"piston","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"facing":"down","extended":"false"},"Name":"minecraft:piston"},"bedrock_state":{"bedrock_identifier":"piston","state":{"facing_direction":0 }}},{"java_state":{"Properties":{"type":"normal","short":"true","facing":"north"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"piston_arm_collision","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"type":"sticky","short":"true","facing":"north"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"sticky_piston_arm_collision","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"type":"normal","short":"false","facing":"north"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"piston_arm_collision","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"type":"sticky","short":"false","facing":"north"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"sticky_piston_arm_collision","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"type":"normal","short":"true","facing":"east"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"piston_arm_collision","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"type":"sticky","short":"true","facing":"east"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"sticky_piston_arm_collision","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"type":"normal","short":"false","facing":"east"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"piston_arm_collision","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"type":"sticky","short":"false","facing":"east"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"sticky_piston_arm_collision","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"type":"normal","short":"true","facing":"south"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"piston_arm_collision","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"type":"sticky","short":"true","facing":"south"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"sticky_piston_arm_collision","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"type":"normal","short":"false","facing":"south"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"piston_arm_collision","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"type":"sticky","short":"false","facing":"south"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"sticky_piston_arm_collision","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"type":"normal","short":"true","facing":"west"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"piston_arm_collision","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"type":"sticky","short":"true","facing":"west"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"sticky_piston_arm_collision","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"type":"normal","short":"false","facing":"west"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"piston_arm_collision","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"type":"sticky","short":"false","facing":"west"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"sticky_piston_arm_collision","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"type":"normal","short":"true","facing":"up"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"piston_arm_collision","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"type":"sticky","short":"true","facing":"up"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"sticky_piston_arm_collision","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"type":"normal","short":"false","facing":"up"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"piston_arm_collision","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"type":"sticky","short":"false","facing":"up"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"sticky_piston_arm_collision","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"type":"normal","short":"true","facing":"down"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"piston_arm_collision","state":{"facing_direction":0 }}},{"java_state":{"Properties":{"type":"sticky","short":"true","facing":"down"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"sticky_piston_arm_collision","state":{"facing_direction":0 }}},{"java_state":{"Properties":{"type":"normal","short":"false","facing":"down"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"piston_arm_collision","state":{"facing_direction":0 }}},{"java_state":{"Properties":{"type":"sticky","short":"false","facing":"down"},"Name":"minecraft:piston_head"},"bedrock_state":{"bedrock_identifier":"sticky_piston_arm_collision","state":{"facing_direction":0 }}},{"java_state":{"Name":"minecraft:white_wool"},"bedrock_state":{"bedrock_identifier":"white_wool"}},{"java_state":{"Name":"minecraft:orange_wool"},"bedrock_state":{"bedrock_identifier":"orange_wool"}},{"java_state":{"Name":"minecraft:magenta_wool"},"bedrock_state":{"bedrock_identifier":"magenta_wool"}},{"java_state":{"Name":"minecraft:light_blue_wool"},"bedrock_state":{"bedrock_identifier":"light_blue_wool"}},{"java_state":{"Name":"minecraft:yellow_wool"},"bedrock_state":{"bedrock_identifier":"yellow_wool"}},{"java_state":{"Name":"minecraft:lime_wool"},"bedrock_state":{"bedrock_identifier":"lime_wool"}},{"java_state":{"Name":"minecraft:pink_wool"},"bedrock_state":{"bedrock_identifier":"pink_wool"}},{"java_state":{"Name":"minecraft:gray_wool"},"bedrock_state":{"bedrock_identifier":"gray_wool"}},{"java_state":{"Name":"minecraft:light_gray_wool"},"bedrock_state":{"bedrock_identifier":"light_gray_wool"}},{"java_state":{"Name":"minecraft:cyan_wool"},"bedrock_state":{"bedrock_identifier":"cyan_wool"}},{"java_state":{"Name":"minecraft:purple_wool"},"bedrock_state":{"bedrock_identifier":"purple_wool"}},{"java_state":{"Name":"minecraft:blue_wool"},"bedrock_state":{"bedrock_identifier":"blue_wool"}},{"java_state":{"Name":"minecraft:brown_wool"},"bedrock_state":{"bedrock_identifier":"brown_wool"}},{"java_state":{"Name":"minecraft:green_wool"},"bedrock_state":{"bedrock_identifier":"green_wool"}},{"java_state":{"Name":"minecraft:red_wool"},"bedrock_state":{"bedrock_identifier":"red_wool"}},{"java_state":{"Name":"minecraft:black_wool"},"bedrock_state":{"bedrock_identifier":"black_wool"}},{"java_state":{"Properties":{"type":"normal","facing":"north"},"Name":"minecraft:moving_piston"},"bedrock_state":{"bedrock_identifier":"moving_block"}},{"java_state":{"Properties":{"type":"sticky","facing":"north"},"Name":"minecraft:moving_piston"},"bedrock_state":{"bedrock_identifier":"moving_block"}},{"java_state":{"Properties":{"type":"normal","facing":"east"},"Name":"minecraft:moving_piston"},"bedrock_state":{"bedrock_identifier":"moving_block"}},{"java_state":{"Properties":{"type":"sticky","facing":"east"},"Name":"minecraft:moving_piston"},"bedrock_state":{"bedrock_identifier":"moving_block"}},{"java_state":{"Properties":{"type":"normal","facing":"south"},"Name":"minecraft:moving_piston"},"bedrock_state":{"bedrock_identifier":"moving_block"}},{"java_state":{"Properties":{"type":"sticky","facing":"south"},"Name":"minecraft:moving_piston"},"bedrock_state":{"bedrock_identifier":"moving_block"}},{"java_state":{"Properties":{"type":"normal","facing":"west"},"Name":"minecraft:moving_piston"},"bedrock_state":{"bedrock_identifier":"moving_block"}},{"java_state":{"Properties":{"type":"sticky","facing":"west"},"Name":"minecraft:moving_piston"},"bedrock_state":{"bedrock_identifier":"moving_block"}},{"java_state":{"Properties":{"type":"normal","facing":"up"},"Name":"minecraft:moving_piston"},"bedrock_state":{"bedrock_identifier":"moving_block"}},{"java_state":{"Properties":{"type":"sticky","facing":"up"},"Name":"minecraft:moving_piston"},"bedrock_state":{"bedrock_identifier":"moving_block"}},{"java_state":{"Properties":{"type":"normal","facing":"down"},"Name":"minecraft:moving_piston"},"bedrock_state":{"bedrock_identifier":"moving_block"}},{"java_state":{"Properties":{"type":"sticky","facing":"down"},"Name":"minecraft:moving_piston"},"bedrock_state":{"bedrock_identifier":"moving_block"}},{"java_state":{"Name":"minecraft:dandelion"},"bedrock_state":{"bedrock_identifier":"dandelion"}},{"java_state":{"Name":"minecraft:torchflower"},"bedrock_state":{"bedrock_identifier":"torchflower"}},{"java_state":{"Name":"minecraft:poppy"},"bedrock_state":{"bedrock_identifier":"poppy"}},{"java_state":{"Name":"minecraft:blue_orchid"},"bedrock_state":{"bedrock_identifier":"blue_orchid"}},{"java_state":{"Name":"minecraft:allium"},"bedrock_state":{"bedrock_identifier":"allium"}},{"java_state":{"Name":"minecraft:azure_bluet"},"bedrock_state":{"bedrock_identifier":"azure_bluet"}},{"java_state":{"Name":"minecraft:red_tulip"},"bedrock_state":{"bedrock_identifier":"red_tulip"}},{"java_state":{"Name":"minecraft:orange_tulip"},"bedrock_state":{"bedrock_identifier":"orange_tulip"}},{"java_state":{"Name":"minecraft:white_tulip"},"bedrock_state":{"bedrock_identifier":"white_tulip"}},{"java_state":{"Name":"minecraft:pink_tulip"},"bedrock_state":{"bedrock_identifier":"pink_tulip"}},{"java_state":{"Name":"minecraft:oxeye_daisy"},"bedrock_state":{"bedrock_identifier":"oxeye_daisy"}},{"java_state":{"Name":"minecraft:cornflower"},"bedrock_state":{"bedrock_identifier":"cornflower"}},{"java_state":{"Name":"minecraft:wither_rose"},"bedrock_state":{"bedrock_identifier":"wither_rose"}},{"java_state":{"Name":"minecraft:lily_of_the_valley"},"bedrock_state":{"bedrock_identifier":"lily_of_the_valley"}},{"java_state":{"Name":"minecraft:brown_mushroom"},"bedrock_state":{"bedrock_identifier":"brown_mushroom"}},{"java_state":{"Name":"minecraft:red_mushroom"},"bedrock_state":{"bedrock_identifier":"red_mushroom"}},{"java_state":{"Name":"minecraft:gold_block"},"bedrock_state":{"bedrock_identifier":"gold_block"}},{"java_state":{"Name":"minecraft:iron_block"},"bedrock_state":{"bedrock_identifier":"iron_block"}},{"java_state":{"Name":"minecraft:bricks"},"bedrock_state":{"bedrock_identifier":"brick_block"}},{"java_state":{"Properties":{"unstable":"true"},"Name":"minecraft:tnt"},"bedrock_state":{"bedrock_identifier":"underwater_tnt","state":{"explode_bit":false }}},{"java_state":{"Properties":{"unstable":"false"},"Name":"minecraft:tnt"},"bedrock_state":{"bedrock_identifier":"tnt","state":{"explode_bit":false }}},{"java_state":{"Name":"minecraft:bookshelf"},"bedrock_state":{"bedrock_identifier":"bookshelf"}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":63,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":31,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":47,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":15,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":55,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":23,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":39,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":7,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":59,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":27,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":43,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":11,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":51,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":19,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":35,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":3,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":61,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":29,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":45,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":13,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":53,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":21,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":37,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":5,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":57,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":25,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":41,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":9,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":49,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":17,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":33,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":1,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":62,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":30,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":46,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":14,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":54,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":22,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":38,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":6,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":58,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":26,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":42,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":10,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":50,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":18,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":34,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":2,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":60,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":28,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":44,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":12,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":52,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":20,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":36,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":4,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":56,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":24,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":40,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":8,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":48,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":16,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":32,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"north"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":0,"direction":2 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":63,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":31,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":47,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":15,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":55,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":23,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":39,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":7,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":59,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":27,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":43,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":11,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":51,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":19,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":35,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":3,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":61,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":29,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":45,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":13,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":53,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":21,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":37,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":5,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":57,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":25,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":41,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":9,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":49,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":17,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":33,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":1,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":62,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":30,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":46,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":14,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":54,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":22,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":38,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":6,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":58,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":26,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":42,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":10,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":50,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":18,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":34,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":2,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":60,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":28,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":44,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":12,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":52,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":20,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":36,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":4,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":56,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":24,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":40,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":8,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":48,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":16,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":32,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"south"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":0,"direction":0 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":63,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":31,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":47,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":15,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":55,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":23,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":39,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":7,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":59,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":27,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":43,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":11,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":51,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":19,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":35,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":3,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":61,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":29,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":45,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":13,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":53,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":21,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":37,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":5,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":57,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":25,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":41,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":9,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":49,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":17,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":33,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":1,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":62,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":30,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":46,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":14,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":54,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":22,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":38,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":6,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":58,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":26,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":42,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":10,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":50,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":18,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":34,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":2,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":60,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":28,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":44,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":12,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":52,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":20,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":36,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":4,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":56,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":24,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":40,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":8,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":48,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":16,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":32,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"west"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":0,"direction":1 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":63,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":31,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":47,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":15,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":55,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":23,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":39,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":7,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":59,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":27,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":43,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":11,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":51,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":19,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":35,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":3,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":61,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":29,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":45,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":13,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":53,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":21,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":37,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":5,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":57,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":25,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":41,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":9,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":49,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":17,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":33,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"true","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":1,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":62,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":30,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":46,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":14,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":54,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":22,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":38,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":6,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":58,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":26,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":42,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":10,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":50,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":18,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":34,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"true","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":2,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":60,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":28,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":44,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":12,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":52,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":20,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":36,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"true","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":4,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":56,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":24,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":40,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"true","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":8,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":48,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"true","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":16,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"true","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":32,"direction":3 }}},{"java_state":{"Properties":{"slot_5_occupied":"false","slot_4_occupied":"false","slot_3_occupied":"false","slot_2_occupied":"false","slot_1_occupied":"false","slot_0_occupied":"false","facing":"east"},"Name":"minecraft:chiseled_bookshelf"},"bedrock_state":{"bedrock_identifier":"chiseled_bookshelf","state":{"books_stored":0,"direction":3 }}},{"java_state":{"Name":"minecraft:mossy_cobblestone"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone"}},{"java_state":{"Name":"minecraft:obsidian"},"bedrock_state":{"bedrock_identifier":"obsidian"}},{"java_state":{"Name":"minecraft:torch"},"bedrock_state":{"bedrock_identifier":"torch","state":{"torch_facing_direction":"top"}}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:wall_torch"},"bedrock_state":{"bedrock_identifier":"torch","state":{"torch_facing_direction":"south"}}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:wall_torch"},"bedrock_state":{"bedrock_identifier":"torch","state":{"torch_facing_direction":"north"}}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:wall_torch"},"bedrock_state":{"bedrock_identifier":"torch","state":{"torch_facing_direction":"east"}}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:wall_torch"},"bedrock_state":{"bedrock_identifier":"torch","state":{"torch_facing_direction":"west"}}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"0"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":0 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"1"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":1 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"2"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":2 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"3"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":3 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"4"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":4 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"5"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":5 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"6"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":6 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"7"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":7 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"8"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":8 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"9"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":9 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"10"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":10 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"11"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":11 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"12"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":12 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"13"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":13 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"14"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","age":"15"},"Name":"minecraft:fire"},"bedrock_state":{"bedrock_identifier":"fire","state":{"age":15 }}},{"java_state":{"Name":"minecraft:soul_fire"},"bedrock_state":{"bedrock_identifier":"soul_fire","state":{"age":0 }}},{"java_state":{"Name":"minecraft:spawner"},"bedrock_state":{"bedrock_identifier":"mob_spawner"}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:oak_stairs"},"bedrock_state":{"bedrock_identifier":"oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","type":"single","facing":"north"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"single","facing":"north"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"left","facing":"north"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"left","facing":"north"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"right","facing":"north"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"right","facing":"north"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"single","facing":"south"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"single","facing":"south"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"left","facing":"south"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"left","facing":"south"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"right","facing":"south"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"right","facing":"south"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"single","facing":"west"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"single","facing":"west"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"left","facing":"west"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"left","facing":"west"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"right","facing":"west"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"right","facing":"west"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"single","facing":"east"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"single","facing":"east"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"left","facing":"east"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"left","facing":"east"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"right","facing":"east"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"right","facing":"east"},"Name":"minecraft:chest"},"bedrock_state":{"bedrock_identifier":"chest","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"west":"up","south":"up","power":"0","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"0","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"0","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"0","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"0","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"0","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"0","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"0","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"0","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"1","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"1","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"1","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"1","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"1","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"1","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"1","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"1","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"1","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"2","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"2","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"2","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"2","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"2","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"2","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"2","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"2","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"2","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"3","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"3","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"3","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"3","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"3","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"3","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"3","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"3","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"3","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"4","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"4","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"4","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"4","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"4","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"4","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"4","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"4","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"4","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"5","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"5","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"5","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"5","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"5","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"5","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"5","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"5","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"5","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"6","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"6","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"6","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"6","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"6","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"6","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"6","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"6","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"6","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"7","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"7","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"7","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"7","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"7","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"7","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"7","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"7","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"7","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"8","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"8","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"8","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"8","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"8","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"8","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"8","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"8","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"8","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"9","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"9","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"9","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"9","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"9","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"9","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"9","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"9","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"9","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"10","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"10","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"10","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"10","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"10","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"10","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"10","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"10","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"10","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"11","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"11","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"11","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"11","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"11","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"11","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"11","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"11","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"11","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"12","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"12","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"12","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"12","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"12","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"12","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"12","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"12","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"12","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"13","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"13","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"13","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"13","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"13","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"13","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"13","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"13","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"13","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"14","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"14","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"14","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"14","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"14","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"14","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"14","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"14","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"14","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"15","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"15","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"15","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"15","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"15","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"15","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"15","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"15","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"15","north":"up","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"0","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"0","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"0","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"0","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"0","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"0","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"0","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"0","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"0","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"1","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"1","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"1","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"1","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"1","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"1","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"1","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"1","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"1","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"2","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"2","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"2","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"2","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"2","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"2","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"2","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"2","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"2","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"3","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"3","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"3","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"3","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"3","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"3","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"3","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"3","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"3","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"4","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"4","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"4","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"4","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"4","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"4","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"4","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"4","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"4","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"5","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"5","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"5","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"5","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"5","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"5","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"5","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"5","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"5","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"6","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"6","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"6","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"6","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"6","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"6","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"6","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"6","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"6","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"7","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"7","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"7","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"7","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"7","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"7","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"7","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"7","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"7","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"8","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"8","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"8","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"8","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"8","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"8","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"8","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"8","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"8","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"9","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"9","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"9","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"9","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"9","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"9","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"9","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"9","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"9","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"10","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"10","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"10","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"10","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"10","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"10","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"10","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"10","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"10","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"11","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"11","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"11","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"11","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"11","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"11","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"11","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"11","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"11","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"12","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"12","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"12","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"12","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"12","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"12","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"12","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"12","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"12","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"13","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"13","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"13","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"13","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"13","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"13","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"13","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"13","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"13","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"14","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"14","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"14","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"14","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"14","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"14","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"14","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"14","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"14","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"15","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"15","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"15","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"15","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"15","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"15","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"15","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"15","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"15","north":"side","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"0","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"0","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"0","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"0","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"0","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"0","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"0","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"0","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"0","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"1","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"1","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"1","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"1","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"1","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"1","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"1","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"1","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"1","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"2","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"2","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"2","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"2","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"2","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"2","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"2","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"2","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"2","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"3","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"3","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"3","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"3","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"3","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"3","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"3","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"3","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"3","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"4","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"4","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"4","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"4","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"4","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"4","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"4","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"4","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"4","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"5","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"5","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"5","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"5","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"5","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"5","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"5","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"5","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"5","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"6","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"6","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"6","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"6","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"6","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"6","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"6","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"6","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"6","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"7","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"7","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"7","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"7","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"7","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"7","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"7","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"7","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"7","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"8","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"8","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"8","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"8","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"8","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"8","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"8","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"8","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"8","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"9","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"9","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"9","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"9","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"9","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"9","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"9","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"9","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"9","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"10","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"10","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"10","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"10","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"10","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"10","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"10","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"10","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"10","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"11","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"11","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"11","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"11","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"11","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"11","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"11","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"11","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"11","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"12","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"12","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"12","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"12","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"12","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"12","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"12","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"12","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"12","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"13","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"13","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"13","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"13","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"13","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"13","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"13","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"13","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"13","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"14","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"14","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"14","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"14","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"14","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"14","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"14","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"14","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"14","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"15","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"15","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"15","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"15","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"15","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"15","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"15","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"15","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"15","north":"none","east":"up"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"0","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"0","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"0","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"0","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"0","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"0","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"0","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"0","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"0","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"1","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"1","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"1","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"1","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"1","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"1","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"1","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"1","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"1","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"2","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"2","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"2","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"2","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"2","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"2","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"2","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"2","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"2","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"3","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"3","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"3","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"3","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"3","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"3","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"3","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"3","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"3","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"4","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"4","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"4","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"4","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"4","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"4","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"4","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"4","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"4","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"5","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"5","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"5","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"5","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"5","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"5","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"5","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"5","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"5","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"6","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"6","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"6","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"6","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"6","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"6","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"6","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"6","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"6","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"7","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"7","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"7","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"7","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"7","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"7","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"7","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"7","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"7","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"8","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"8","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"8","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"8","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"8","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"8","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"8","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"8","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"8","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"9","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"9","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"9","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"9","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"9","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"9","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"9","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"9","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"9","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"10","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"10","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"10","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"10","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"10","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"10","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"10","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"10","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"10","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"11","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"11","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"11","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"11","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"11","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"11","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"11","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"11","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"11","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"12","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"12","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"12","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"12","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"12","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"12","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"12","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"12","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"12","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"13","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"13","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"13","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"13","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"13","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"13","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"13","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"13","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"13","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"14","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"14","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"14","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"14","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"14","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"14","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"14","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"14","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"14","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"15","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"15","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"15","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"15","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"15","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"15","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"15","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"15","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"15","north":"up","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"0","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"0","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"0","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"0","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"0","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"0","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"0","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"0","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"0","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"1","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"1","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"1","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"1","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"1","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"1","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"1","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"1","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"1","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"2","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"2","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"2","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"2","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"2","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"2","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"2","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"2","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"2","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"3","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"3","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"3","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"3","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"3","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"3","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"3","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"3","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"3","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"4","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"4","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"4","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"4","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"4","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"4","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"4","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"4","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"4","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"5","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"5","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"5","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"5","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"5","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"5","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"5","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"5","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"5","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"6","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"6","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"6","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"6","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"6","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"6","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"6","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"6","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"6","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"7","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"7","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"7","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"7","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"7","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"7","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"7","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"7","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"7","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"8","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"8","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"8","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"8","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"8","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"8","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"8","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"8","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"8","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"9","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"9","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"9","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"9","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"9","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"9","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"9","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"9","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"9","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"10","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"10","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"10","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"10","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"10","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"10","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"10","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"10","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"10","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"11","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"11","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"11","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"11","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"11","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"11","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"11","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"11","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"11","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"12","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"12","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"12","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"12","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"12","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"12","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"12","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"12","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"12","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"13","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"13","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"13","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"13","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"13","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"13","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"13","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"13","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"13","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"14","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"14","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"14","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"14","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"14","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"14","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"14","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"14","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"14","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"15","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"15","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"15","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"15","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"15","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"15","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"15","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"15","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"15","north":"side","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"0","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"0","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"0","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"0","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"0","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"0","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"0","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"0","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"0","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"1","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"1","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"1","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"1","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"1","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"1","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"1","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"1","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"1","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"2","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"2","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"2","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"2","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"2","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"2","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"2","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"2","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"2","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"3","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"3","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"3","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"3","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"3","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"3","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"3","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"3","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"3","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"4","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"4","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"4","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"4","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"4","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"4","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"4","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"4","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"4","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"5","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"5","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"5","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"5","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"5","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"5","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"5","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"5","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"5","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"6","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"6","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"6","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"6","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"6","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"6","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"6","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"6","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"6","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"7","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"7","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"7","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"7","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"7","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"7","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"7","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"7","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"7","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"8","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"8","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"8","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"8","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"8","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"8","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"8","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"8","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"8","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"9","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"9","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"9","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"9","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"9","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"9","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"9","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"9","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"9","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"10","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"10","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"10","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"10","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"10","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"10","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"10","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"10","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"10","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"11","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"11","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"11","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"11","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"11","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"11","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"11","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"11","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"11","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"12","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"12","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"12","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"12","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"12","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"12","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"12","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"12","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"12","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"13","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"13","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"13","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"13","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"13","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"13","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"13","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"13","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"13","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"14","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"14","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"14","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"14","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"14","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"14","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"14","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"14","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"14","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"15","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"15","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"15","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"15","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"15","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"15","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"15","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"15","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"15","north":"none","east":"side"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"0","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"0","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"0","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"0","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"0","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"0","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"0","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"0","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"0","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"1","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"1","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"1","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"1","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"1","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"1","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"1","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"1","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"1","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"2","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"2","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"2","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"2","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"2","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"2","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"2","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"2","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"2","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"3","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"3","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"3","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"3","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"3","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"3","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"3","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"3","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"3","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"4","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"4","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"4","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"4","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"4","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"4","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"4","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"4","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"4","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"5","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"5","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"5","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"5","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"5","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"5","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"5","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"5","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"5","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"6","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"6","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"6","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"6","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"6","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"6","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"6","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"6","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"6","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"7","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"7","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"7","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"7","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"7","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"7","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"7","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"7","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"7","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"8","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"8","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"8","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"8","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"8","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"8","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"8","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"8","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"8","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"9","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"9","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"9","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"9","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"9","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"9","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"9","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"9","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"9","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"10","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"10","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"10","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"10","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"10","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"10","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"10","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"10","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"10","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"11","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"11","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"11","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"11","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"11","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"11","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"11","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"11","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"11","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"12","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"12","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"12","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"12","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"12","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"12","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"12","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"12","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"12","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"13","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"13","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"13","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"13","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"13","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"13","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"13","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"13","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"13","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"14","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"14","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"14","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"14","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"14","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"14","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"14","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"14","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"14","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"15","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"15","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"15","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"15","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"15","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"15","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"15","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"15","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"15","north":"up","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"0","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"0","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"0","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"0","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"0","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"0","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"0","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"0","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"0","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"1","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"1","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"1","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"1","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"1","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"1","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"1","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"1","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"1","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"2","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"2","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"2","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"2","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"2","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"2","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"2","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"2","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"2","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"3","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"3","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"3","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"3","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"3","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"3","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"3","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"3","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"3","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"4","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"4","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"4","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"4","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"4","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"4","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"4","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"4","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"4","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"5","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"5","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"5","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"5","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"5","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"5","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"5","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"5","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"5","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"6","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"6","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"6","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"6","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"6","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"6","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"6","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"6","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"6","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"7","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"7","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"7","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"7","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"7","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"7","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"7","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"7","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"7","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"8","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"8","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"8","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"8","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"8","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"8","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"8","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"8","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"8","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"9","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"9","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"9","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"9","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"9","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"9","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"9","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"9","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"9","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"10","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"10","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"10","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"10","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"10","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"10","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"10","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"10","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"10","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"11","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"11","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"11","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"11","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"11","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"11","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"11","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"11","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"11","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"12","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"12","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"12","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"12","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"12","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"12","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"12","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"12","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"12","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"13","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"13","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"13","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"13","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"13","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"13","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"13","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"13","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"13","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"14","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"14","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"14","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"14","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"14","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"14","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"14","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"14","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"14","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"15","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"15","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"15","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"15","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"15","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"15","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"15","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"15","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"15","north":"side","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"0","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"0","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"0","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"0","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"0","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"0","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"0","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"0","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"0","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"1","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"1","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"1","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"1","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"1","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"1","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"1","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"1","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"1","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"2","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"2","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"2","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"2","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"2","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"2","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"2","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"2","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"2","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"3","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"3","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"3","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"3","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"3","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"3","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"3","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"3","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"3","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"4","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"4","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"4","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"4","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"4","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"4","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"4","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"4","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"4","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"5","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"5","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"5","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"5","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"5","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"5","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"5","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"5","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"5","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"6","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"6","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"6","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"6","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"6","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"6","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"6","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"6","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"6","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"7","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"7","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"7","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"7","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"7","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"7","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"7","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"7","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"7","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"8","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"8","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"8","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"8","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"8","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"8","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"8","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"8","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"8","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"9","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"9","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"9","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"9","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"9","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"9","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"9","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"9","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"9","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"10","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"10","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"10","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"10","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"10","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"10","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"10","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"10","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"10","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"11","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"11","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"11","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"11","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"11","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"11","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"11","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"11","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"11","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"12","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"12","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"12","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"12","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"12","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"12","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"12","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"12","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"12","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"13","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"13","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"13","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"13","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"13","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"13","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"13","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"13","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"13","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"14","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"14","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"14","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"14","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"14","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"14","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"14","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"14","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"14","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"west":"up","south":"up","power":"15","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"up","power":"15","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"up","power":"15","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"side","power":"15","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"side","power":"15","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"side","power":"15","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"up","south":"none","power":"15","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"side","south":"none","power":"15","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"west":"none","south":"none","power":"15","north":"none","east":"none"},"Name":"minecraft:redstone_wire"},"bedrock_state":{"bedrock_identifier":"redstone_wire","state":{"redstone_signal":15 }}},{"java_state":{"Name":"minecraft:diamond_ore"},"bedrock_state":{"bedrock_identifier":"diamond_ore"}},{"java_state":{"Name":"minecraft:deepslate_diamond_ore"},"bedrock_state":{"bedrock_identifier":"deepslate_diamond_ore"}},{"java_state":{"Name":"minecraft:diamond_block"},"bedrock_state":{"bedrock_identifier":"diamond_block"}},{"java_state":{"Name":"minecraft:crafting_table"},"bedrock_state":{"bedrock_identifier":"crafting_table"}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:wheat"},"bedrock_state":{"bedrock_identifier":"wheat","state":{"growth":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:wheat"},"bedrock_state":{"bedrock_identifier":"wheat","state":{"growth":1 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:wheat"},"bedrock_state":{"bedrock_identifier":"wheat","state":{"growth":2 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:wheat"},"bedrock_state":{"bedrock_identifier":"wheat","state":{"growth":3 }}},{"java_state":{"Properties":{"age":"4"},"Name":"minecraft:wheat"},"bedrock_state":{"bedrock_identifier":"wheat","state":{"growth":4 }}},{"java_state":{"Properties":{"age":"5"},"Name":"minecraft:wheat"},"bedrock_state":{"bedrock_identifier":"wheat","state":{"growth":5 }}},{"java_state":{"Properties":{"age":"6"},"Name":"minecraft:wheat"},"bedrock_state":{"bedrock_identifier":"wheat","state":{"growth":6 }}},{"java_state":{"Properties":{"age":"7"},"Name":"minecraft:wheat"},"bedrock_state":{"bedrock_identifier":"wheat","state":{"growth":7 }}},{"java_state":{"Properties":{"moisture":"0"},"Name":"minecraft:farmland"},"bedrock_state":{"bedrock_identifier":"farmland","state":{"moisturized_amount":0 }}},{"java_state":{"Properties":{"moisture":"1"},"Name":"minecraft:farmland"},"bedrock_state":{"bedrock_identifier":"farmland","state":{"moisturized_amount":1 }}},{"java_state":{"Properties":{"moisture":"2"},"Name":"minecraft:farmland"},"bedrock_state":{"bedrock_identifier":"farmland","state":{"moisturized_amount":2 }}},{"java_state":{"Properties":{"moisture":"3"},"Name":"minecraft:farmland"},"bedrock_state":{"bedrock_identifier":"farmland","state":{"moisturized_amount":3 }}},{"java_state":{"Properties":{"moisture":"4"},"Name":"minecraft:farmland"},"bedrock_state":{"bedrock_identifier":"farmland","state":{"moisturized_amount":4 }}},{"java_state":{"Properties":{"moisture":"5"},"Name":"minecraft:farmland"},"bedrock_state":{"bedrock_identifier":"farmland","state":{"moisturized_amount":5 }}},{"java_state":{"Properties":{"moisture":"6"},"Name":"minecraft:farmland"},"bedrock_state":{"bedrock_identifier":"farmland","state":{"moisturized_amount":6 }}},{"java_state":{"Properties":{"moisture":"7"},"Name":"minecraft:farmland"},"bedrock_state":{"bedrock_identifier":"farmland","state":{"moisturized_amount":7 }}},{"java_state":{"Properties":{"lit":"true","facing":"north"},"Name":"minecraft:furnace"},"bedrock_state":{"bedrock_identifier":"lit_furnace","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"lit":"false","facing":"north"},"Name":"minecraft:furnace"},"bedrock_state":{"bedrock_identifier":"furnace","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"lit":"true","facing":"south"},"Name":"minecraft:furnace"},"bedrock_state":{"bedrock_identifier":"lit_furnace","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"lit":"false","facing":"south"},"Name":"minecraft:furnace"},"bedrock_state":{"bedrock_identifier":"furnace","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"lit":"true","facing":"west"},"Name":"minecraft:furnace"},"bedrock_state":{"bedrock_identifier":"lit_furnace","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"lit":"false","facing":"west"},"Name":"minecraft:furnace"},"bedrock_state":{"bedrock_identifier":"furnace","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"lit":"true","facing":"east"},"Name":"minecraft:furnace"},"bedrock_state":{"bedrock_identifier":"lit_furnace","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"lit":"false","facing":"east"},"Name":"minecraft:furnace"},"bedrock_state":{"bedrock_identifier":"furnace","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15"},"Name":"minecraft:oak_sign"},"bedrock_state":{"bedrock_identifier":"standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15"},"Name":"minecraft:spruce_sign"},"bedrock_state":{"bedrock_identifier":"spruce_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15"},"Name":"minecraft:birch_sign"},"bedrock_state":{"bedrock_identifier":"birch_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15"},"Name":"minecraft:acacia_sign"},"bedrock_state":{"bedrock_identifier":"acacia_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15"},"Name":"minecraft:cherry_sign"},"bedrock_state":{"bedrock_identifier":"cherry_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15"},"Name":"minecraft:jungle_sign"},"bedrock_state":{"bedrock_identifier":"jungle_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15"},"Name":"minecraft:dark_oak_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15"},"Name":"minecraft:mangrove_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15"},"Name":"minecraft:bamboo_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:oak_door"},"bedrock_state":{"bedrock_identifier":"wooden_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:ladder"},"bedrock_state":{"bedrock_identifier":"ladder","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:ladder"},"bedrock_state":{"bedrock_identifier":"ladder","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:ladder"},"bedrock_state":{"bedrock_identifier":"ladder","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:ladder"},"bedrock_state":{"bedrock_identifier":"ladder","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:ladder"},"bedrock_state":{"bedrock_identifier":"ladder","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:ladder"},"bedrock_state":{"bedrock_identifier":"ladder","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:ladder"},"bedrock_state":{"bedrock_identifier":"ladder","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:ladder"},"bedrock_state":{"bedrock_identifier":"ladder","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"north_south"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"north_south"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"east_west"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"east_west"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_east"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_east"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_west"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_west"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_north"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_north"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_south"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_south"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"south_east"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"south_east"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"south_west"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"south_west"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"north_west"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"north_west"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"north_east"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"north_east"},"Name":"minecraft:rail"},"bedrock_state":{"bedrock_identifier":"rail","state":{"rail_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:spruce_wall_sign"},"bedrock_state":{"bedrock_identifier":"spruce_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:spruce_wall_sign"},"bedrock_state":{"bedrock_identifier":"spruce_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:spruce_wall_sign"},"bedrock_state":{"bedrock_identifier":"spruce_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:spruce_wall_sign"},"bedrock_state":{"bedrock_identifier":"spruce_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:spruce_wall_sign"},"bedrock_state":{"bedrock_identifier":"spruce_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:spruce_wall_sign"},"bedrock_state":{"bedrock_identifier":"spruce_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:spruce_wall_sign"},"bedrock_state":{"bedrock_identifier":"spruce_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:spruce_wall_sign"},"bedrock_state":{"bedrock_identifier":"spruce_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:birch_wall_sign"},"bedrock_state":{"bedrock_identifier":"birch_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:birch_wall_sign"},"bedrock_state":{"bedrock_identifier":"birch_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:birch_wall_sign"},"bedrock_state":{"bedrock_identifier":"birch_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:birch_wall_sign"},"bedrock_state":{"bedrock_identifier":"birch_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:birch_wall_sign"},"bedrock_state":{"bedrock_identifier":"birch_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:birch_wall_sign"},"bedrock_state":{"bedrock_identifier":"birch_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:birch_wall_sign"},"bedrock_state":{"bedrock_identifier":"birch_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:birch_wall_sign"},"bedrock_state":{"bedrock_identifier":"birch_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:acacia_wall_sign"},"bedrock_state":{"bedrock_identifier":"acacia_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:acacia_wall_sign"},"bedrock_state":{"bedrock_identifier":"acacia_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:acacia_wall_sign"},"bedrock_state":{"bedrock_identifier":"acacia_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:acacia_wall_sign"},"bedrock_state":{"bedrock_identifier":"acacia_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:acacia_wall_sign"},"bedrock_state":{"bedrock_identifier":"acacia_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:acacia_wall_sign"},"bedrock_state":{"bedrock_identifier":"acacia_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:acacia_wall_sign"},"bedrock_state":{"bedrock_identifier":"acacia_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:acacia_wall_sign"},"bedrock_state":{"bedrock_identifier":"acacia_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:cherry_wall_sign"},"bedrock_state":{"bedrock_identifier":"cherry_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:cherry_wall_sign"},"bedrock_state":{"bedrock_identifier":"cherry_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:cherry_wall_sign"},"bedrock_state":{"bedrock_identifier":"cherry_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:cherry_wall_sign"},"bedrock_state":{"bedrock_identifier":"cherry_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:cherry_wall_sign"},"bedrock_state":{"bedrock_identifier":"cherry_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:cherry_wall_sign"},"bedrock_state":{"bedrock_identifier":"cherry_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:cherry_wall_sign"},"bedrock_state":{"bedrock_identifier":"cherry_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:cherry_wall_sign"},"bedrock_state":{"bedrock_identifier":"cherry_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:jungle_wall_sign"},"bedrock_state":{"bedrock_identifier":"jungle_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:jungle_wall_sign"},"bedrock_state":{"bedrock_identifier":"jungle_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:jungle_wall_sign"},"bedrock_state":{"bedrock_identifier":"jungle_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:jungle_wall_sign"},"bedrock_state":{"bedrock_identifier":"jungle_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:jungle_wall_sign"},"bedrock_state":{"bedrock_identifier":"jungle_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:jungle_wall_sign"},"bedrock_state":{"bedrock_identifier":"jungle_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:jungle_wall_sign"},"bedrock_state":{"bedrock_identifier":"jungle_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:jungle_wall_sign"},"bedrock_state":{"bedrock_identifier":"jungle_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:dark_oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:dark_oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:dark_oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:dark_oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:dark_oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:dark_oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:dark_oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:dark_oak_wall_sign"},"bedrock_state":{"bedrock_identifier":"darkoak_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:mangrove_wall_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:mangrove_wall_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:mangrove_wall_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:mangrove_wall_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:mangrove_wall_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:mangrove_wall_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:mangrove_wall_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:mangrove_wall_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:bamboo_wall_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:bamboo_wall_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:bamboo_wall_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:bamboo_wall_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:bamboo_wall_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:bamboo_wall_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:bamboo_wall_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:bamboo_wall_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"true"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"false"},"Name":"minecraft:oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"true"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"false"},"Name":"minecraft:spruce_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"true"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"false"},"Name":"minecraft:birch_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"true"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"false"},"Name":"minecraft:acacia_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"true"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"false"},"Name":"minecraft:cherry_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"true"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"false"},"Name":"minecraft:jungle_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"true"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"false"},"Name":"minecraft:dark_oak_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"true"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"false"},"Name":"minecraft:crimson_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"true"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"false"},"Name":"minecraft:warped_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"true"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"false"},"Name":"minecraft:mangrove_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"true"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":true,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":false,"facing_direction":3,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":1,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":2,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":3,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":false,"facing_direction":4,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":5,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":6,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":7,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":9,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":10,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":11,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":false,"facing_direction":5,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":13,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":14,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15","attached":"false"},"Name":"minecraft:bamboo_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":15,"attached_bit":false,"facing_direction":2,"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"oak_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:spruce_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:spruce_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:spruce_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:spruce_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:spruce_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:spruce_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:spruce_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:spruce_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"spruce_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:birch_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:birch_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:birch_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:birch_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:birch_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:birch_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:birch_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:birch_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"birch_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:acacia_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:acacia_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:acacia_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:acacia_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:acacia_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:acacia_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:acacia_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:acacia_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"acacia_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:cherry_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:cherry_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:cherry_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:cherry_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:cherry_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:cherry_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:cherry_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:cherry_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"cherry_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:jungle_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:jungle_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:jungle_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:jungle_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:jungle_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:jungle_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:jungle_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:jungle_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"jungle_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:dark_oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:dark_oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:dark_oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:dark_oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:dark_oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:dark_oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:dark_oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:dark_oak_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"dark_oak_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:mangrove_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:mangrove_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:mangrove_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:mangrove_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:mangrove_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:mangrove_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:mangrove_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:mangrove_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"mangrove_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:crimson_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:crimson_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:crimson_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:crimson_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:crimson_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:crimson_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:crimson_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:crimson_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"crimson_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:warped_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:warped_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:warped_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:warped_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:warped_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:warped_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:warped_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:warped_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"warped_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:bamboo_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:bamboo_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":8,"attached_bit":true,"facing_direction":2,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:bamboo_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:bamboo_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":0,"attached_bit":true,"facing_direction":3,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:bamboo_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:bamboo_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":4,"attached_bit":true,"facing_direction":4,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:bamboo_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:bamboo_wall_hanging_sign"},"bedrock_state":{"bedrock_identifier":"bamboo_hanging_sign","state":{"ground_sign_direction":12,"attached_bit":true,"facing_direction":5,"hanging":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"floor"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":true,"lever_direction":"up_north_south"}}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"floor"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":false,"lever_direction":"up_north_south"}}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"floor"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":false,"lever_direction":"up_north_south"}}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"floor"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":true,"lever_direction":"up_north_south"}}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"floor"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":true,"lever_direction":"up_east_west"}}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"floor"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":false,"lever_direction":"up_east_west"}}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"floor"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":false,"lever_direction":"up_east_west"}}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"floor"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":true,"lever_direction":"up_east_west"}}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"wall"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":true,"lever_direction":"north"}}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"wall"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":false,"lever_direction":"north"}}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"wall"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":true,"lever_direction":"south"}}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"wall"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":false,"lever_direction":"south"}}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"wall"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":true,"lever_direction":"west"}}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"wall"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":false,"lever_direction":"west"}}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"wall"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":true,"lever_direction":"east"}}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"wall"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":false,"lever_direction":"east"}}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"ceiling"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":true,"lever_direction":"down_north_south"}}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"ceiling"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":false,"lever_direction":"down_north_south"}}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"ceiling"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":false,"lever_direction":"down_north_south"}}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"ceiling"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":true,"lever_direction":"down_north_south"}}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"ceiling"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":true,"lever_direction":"down_east_west"}}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"ceiling"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":false,"lever_direction":"down_east_west"}}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"ceiling"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":false,"lever_direction":"down_east_west"}}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"ceiling"},"Name":"minecraft:lever"},"bedrock_state":{"bedrock_identifier":"lever","state":{"open_bit":true,"lever_direction":"down_east_west"}}},{"java_state":{"Properties":{"powered":"true"},"Name":"minecraft:stone_pressure_plate"},"bedrock_state":{"bedrock_identifier":"stone_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"powered":"false"},"Name":"minecraft:stone_pressure_plate"},"bedrock_state":{"bedrock_identifier":"stone_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:iron_door"},"bedrock_state":{"bedrock_identifier":"iron_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true"},"Name":"minecraft:oak_pressure_plate"},"bedrock_state":{"bedrock_identifier":"wooden_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"powered":"false"},"Name":"minecraft:oak_pressure_plate"},"bedrock_state":{"bedrock_identifier":"wooden_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"powered":"true"},"Name":"minecraft:spruce_pressure_plate"},"bedrock_state":{"bedrock_identifier":"spruce_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"powered":"false"},"Name":"minecraft:spruce_pressure_plate"},"bedrock_state":{"bedrock_identifier":"spruce_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"powered":"true"},"Name":"minecraft:birch_pressure_plate"},"bedrock_state":{"bedrock_identifier":"birch_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"powered":"false"},"Name":"minecraft:birch_pressure_plate"},"bedrock_state":{"bedrock_identifier":"birch_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"powered":"true"},"Name":"minecraft:jungle_pressure_plate"},"bedrock_state":{"bedrock_identifier":"jungle_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"powered":"false"},"Name":"minecraft:jungle_pressure_plate"},"bedrock_state":{"bedrock_identifier":"jungle_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"powered":"true"},"Name":"minecraft:acacia_pressure_plate"},"bedrock_state":{"bedrock_identifier":"acacia_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"powered":"false"},"Name":"minecraft:acacia_pressure_plate"},"bedrock_state":{"bedrock_identifier":"acacia_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"powered":"true"},"Name":"minecraft:cherry_pressure_plate"},"bedrock_state":{"bedrock_identifier":"cherry_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"powered":"false"},"Name":"minecraft:cherry_pressure_plate"},"bedrock_state":{"bedrock_identifier":"cherry_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"powered":"true"},"Name":"minecraft:dark_oak_pressure_plate"},"bedrock_state":{"bedrock_identifier":"dark_oak_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"powered":"false"},"Name":"minecraft:dark_oak_pressure_plate"},"bedrock_state":{"bedrock_identifier":"dark_oak_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"powered":"true"},"Name":"minecraft:mangrove_pressure_plate"},"bedrock_state":{"bedrock_identifier":"mangrove_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"powered":"false"},"Name":"minecraft:mangrove_pressure_plate"},"bedrock_state":{"bedrock_identifier":"mangrove_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"powered":"true"},"Name":"minecraft:bamboo_pressure_plate"},"bedrock_state":{"bedrock_identifier":"bamboo_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"powered":"false"},"Name":"minecraft:bamboo_pressure_plate"},"bedrock_state":{"bedrock_identifier":"bamboo_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:redstone_ore"},"bedrock_state":{"bedrock_identifier":"lit_redstone_ore"}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:redstone_ore"},"bedrock_state":{"bedrock_identifier":"redstone_ore"}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:deepslate_redstone_ore"},"bedrock_state":{"bedrock_identifier":"lit_deepslate_redstone_ore"}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:deepslate_redstone_ore"},"bedrock_state":{"bedrock_identifier":"deepslate_redstone_ore"}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:redstone_torch"},"bedrock_state":{"bedrock_identifier":"redstone_torch","state":{"torch_facing_direction":"top"}}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:redstone_torch"},"bedrock_state":{"bedrock_identifier":"unlit_redstone_torch","state":{"torch_facing_direction":"top"}}},{"java_state":{"Properties":{"lit":"true","facing":"north"},"Name":"minecraft:redstone_wall_torch"},"bedrock_state":{"bedrock_identifier":"redstone_torch","state":{"torch_facing_direction":"south"}}},{"java_state":{"Properties":{"lit":"false","facing":"north"},"Name":"minecraft:redstone_wall_torch"},"bedrock_state":{"bedrock_identifier":"unlit_redstone_torch","state":{"torch_facing_direction":"south"}}},{"java_state":{"Properties":{"lit":"true","facing":"south"},"Name":"minecraft:redstone_wall_torch"},"bedrock_state":{"bedrock_identifier":"redstone_torch","state":{"torch_facing_direction":"north"}}},{"java_state":{"Properties":{"lit":"false","facing":"south"},"Name":"minecraft:redstone_wall_torch"},"bedrock_state":{"bedrock_identifier":"unlit_redstone_torch","state":{"torch_facing_direction":"north"}}},{"java_state":{"Properties":{"lit":"true","facing":"west"},"Name":"minecraft:redstone_wall_torch"},"bedrock_state":{"bedrock_identifier":"redstone_torch","state":{"torch_facing_direction":"east"}}},{"java_state":{"Properties":{"lit":"false","facing":"west"},"Name":"minecraft:redstone_wall_torch"},"bedrock_state":{"bedrock_identifier":"unlit_redstone_torch","state":{"torch_facing_direction":"east"}}},{"java_state":{"Properties":{"lit":"true","facing":"east"},"Name":"minecraft:redstone_wall_torch"},"bedrock_state":{"bedrock_identifier":"redstone_torch","state":{"torch_facing_direction":"west"}}},{"java_state":{"Properties":{"lit":"false","facing":"east"},"Name":"minecraft:redstone_wall_torch"},"bedrock_state":{"bedrock_identifier":"unlit_redstone_torch","state":{"torch_facing_direction":"west"}}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"floor"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"floor"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"floor"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"floor"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"floor"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"floor"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"floor"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"floor"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"wall"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":2,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"wall"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":2,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"wall"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":3,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"wall"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":3,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"wall"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":4,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"wall"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":4,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"wall"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":5,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"wall"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":5,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"ceiling"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"ceiling"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"ceiling"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"ceiling"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"ceiling"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"ceiling"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"ceiling"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"ceiling"},"Name":"minecraft:stone_button"},"bedrock_state":{"bedrock_identifier":"stone_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"layers":"1"},"Name":"minecraft:snow"},"bedrock_state":{"bedrock_identifier":"snow_layer","state":{"covered_bit":false,"height":0 }}},{"java_state":{"Properties":{"layers":"2"},"Name":"minecraft:snow"},"bedrock_state":{"bedrock_identifier":"snow_layer","state":{"covered_bit":false,"height":1 }}},{"java_state":{"Properties":{"layers":"3"},"Name":"minecraft:snow"},"bedrock_state":{"bedrock_identifier":"snow_layer","state":{"covered_bit":false,"height":2 }}},{"java_state":{"Properties":{"layers":"4"},"Name":"minecraft:snow"},"bedrock_state":{"bedrock_identifier":"snow_layer","state":{"covered_bit":false,"height":3 }}},{"java_state":{"Properties":{"layers":"5"},"Name":"minecraft:snow"},"bedrock_state":{"bedrock_identifier":"snow_layer","state":{"covered_bit":false,"height":4 }}},{"java_state":{"Properties":{"layers":"6"},"Name":"minecraft:snow"},"bedrock_state":{"bedrock_identifier":"snow_layer","state":{"covered_bit":false,"height":5 }}},{"java_state":{"Properties":{"layers":"7"},"Name":"minecraft:snow"},"bedrock_state":{"bedrock_identifier":"snow_layer","state":{"covered_bit":false,"height":6 }}},{"java_state":{"Properties":{"layers":"8"},"Name":"minecraft:snow"},"bedrock_state":{"bedrock_identifier":"snow_layer","state":{"covered_bit":false,"height":7 }}},{"java_state":{"Name":"minecraft:ice"},"bedrock_state":{"bedrock_identifier":"ice"}},{"java_state":{"Name":"minecraft:snow_block"},"bedrock_state":{"bedrock_identifier":"snow"}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":1 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":2 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":3 }}},{"java_state":{"Properties":{"age":"4"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":4 }}},{"java_state":{"Properties":{"age":"5"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":5 }}},{"java_state":{"Properties":{"age":"6"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":6 }}},{"java_state":{"Properties":{"age":"7"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":7 }}},{"java_state":{"Properties":{"age":"8"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":8 }}},{"java_state":{"Properties":{"age":"9"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":9 }}},{"java_state":{"Properties":{"age":"10"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":10 }}},{"java_state":{"Properties":{"age":"11"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":11 }}},{"java_state":{"Properties":{"age":"12"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":12 }}},{"java_state":{"Properties":{"age":"13"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":13 }}},{"java_state":{"Properties":{"age":"14"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":14 }}},{"java_state":{"Properties":{"age":"15"},"Name":"minecraft:cactus"},"bedrock_state":{"bedrock_identifier":"cactus","state":{"age":15 }}},{"java_state":{"Name":"minecraft:clay"},"bedrock_state":{"bedrock_identifier":"clay"}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":1 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":2 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":3 }}},{"java_state":{"Properties":{"age":"4"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":4 }}},{"java_state":{"Properties":{"age":"5"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":5 }}},{"java_state":{"Properties":{"age":"6"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":6 }}},{"java_state":{"Properties":{"age":"7"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":7 }}},{"java_state":{"Properties":{"age":"8"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":8 }}},{"java_state":{"Properties":{"age":"9"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":9 }}},{"java_state":{"Properties":{"age":"10"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":10 }}},{"java_state":{"Properties":{"age":"11"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":11 }}},{"java_state":{"Properties":{"age":"12"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":12 }}},{"java_state":{"Properties":{"age":"13"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":13 }}},{"java_state":{"Properties":{"age":"14"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":14 }}},{"java_state":{"Properties":{"age":"15"},"Name":"minecraft:sugar_cane"},"bedrock_state":{"bedrock_identifier":"reeds","state":{"age":15 }}},{"java_state":{"Properties":{"has_record":"true"},"Name":"minecraft:jukebox"},"bedrock_state":{"bedrock_identifier":"jukebox"}},{"java_state":{"Properties":{"has_record":"false"},"Name":"minecraft:jukebox"},"bedrock_state":{"bedrock_identifier":"jukebox"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:oak_fence"},"bedrock_state":{"bedrock_identifier":"oak_fence"}},{"java_state":{"Name":"minecraft:netherrack"},"bedrock_state":{"bedrock_identifier":"netherrack"}},{"java_state":{"Name":"minecraft:soul_sand"},"bedrock_state":{"bedrock_identifier":"soul_sand"}},{"java_state":{"Name":"minecraft:soul_soil"},"bedrock_state":{"bedrock_identifier":"soul_soil"}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:basalt"},"bedrock_state":{"bedrock_identifier":"basalt","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:basalt"},"bedrock_state":{"bedrock_identifier":"basalt","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:basalt"},"bedrock_state":{"bedrock_identifier":"basalt","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:polished_basalt"},"bedrock_state":{"bedrock_identifier":"polished_basalt","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:polished_basalt"},"bedrock_state":{"bedrock_identifier":"polished_basalt","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:polished_basalt"},"bedrock_state":{"bedrock_identifier":"polished_basalt","state":{"pillar_axis":"z"}}},{"java_state":{"Name":"minecraft:soul_torch"},"bedrock_state":{"bedrock_identifier":"soul_torch","state":{"torch_facing_direction":"top"}}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:soul_wall_torch"},"bedrock_state":{"bedrock_identifier":"soul_torch","state":{"torch_facing_direction":"south"}}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:soul_wall_torch"},"bedrock_state":{"bedrock_identifier":"soul_torch","state":{"torch_facing_direction":"north"}}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:soul_wall_torch"},"bedrock_state":{"bedrock_identifier":"soul_torch","state":{"torch_facing_direction":"east"}}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:soul_wall_torch"},"bedrock_state":{"bedrock_identifier":"soul_torch","state":{"torch_facing_direction":"west"}}},{"java_state":{"Name":"minecraft:glowstone"},"bedrock_state":{"bedrock_identifier":"glowstone"}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:nether_portal"},"bedrock_state":{"bedrock_identifier":"portal","state":{"portal_axis":"x"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:nether_portal"},"bedrock_state":{"bedrock_identifier":"portal","state":{"portal_axis":"z"}}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:carved_pumpkin"},"bedrock_state":{"bedrock_identifier":"carved_pumpkin","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:carved_pumpkin"},"bedrock_state":{"bedrock_identifier":"carved_pumpkin","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:carved_pumpkin"},"bedrock_state":{"bedrock_identifier":"carved_pumpkin","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:carved_pumpkin"},"bedrock_state":{"bedrock_identifier":"carved_pumpkin","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:jack_o_lantern"},"bedrock_state":{"bedrock_identifier":"lit_pumpkin","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:jack_o_lantern"},"bedrock_state":{"bedrock_identifier":"lit_pumpkin","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:jack_o_lantern"},"bedrock_state":{"bedrock_identifier":"lit_pumpkin","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:jack_o_lantern"},"bedrock_state":{"bedrock_identifier":"lit_pumpkin","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"bites":"0"},"Name":"minecraft:cake"},"bedrock_state":{"bedrock_identifier":"cake","state":{"bite_counter":0 }}},{"java_state":{"Properties":{"bites":"1"},"Name":"minecraft:cake"},"bedrock_state":{"bedrock_identifier":"cake","state":{"bite_counter":1 }}},{"java_state":{"Properties":{"bites":"2"},"Name":"minecraft:cake"},"bedrock_state":{"bedrock_identifier":"cake","state":{"bite_counter":2 }}},{"java_state":{"Properties":{"bites":"3"},"Name":"minecraft:cake"},"bedrock_state":{"bedrock_identifier":"cake","state":{"bite_counter":3 }}},{"java_state":{"Properties":{"bites":"4"},"Name":"minecraft:cake"},"bedrock_state":{"bedrock_identifier":"cake","state":{"bite_counter":4 }}},{"java_state":{"Properties":{"bites":"5"},"Name":"minecraft:cake"},"bedrock_state":{"bedrock_identifier":"cake","state":{"bite_counter":5 }}},{"java_state":{"Properties":{"bites":"6"},"Name":"minecraft:cake"},"bedrock_state":{"bedrock_identifier":"cake","state":{"bite_counter":6 }}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"north","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"north","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"north","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"north","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"south","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"south","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"south","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"south","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"west","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"west","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"west","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"west","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"east","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"east","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"east","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"east","delay":"1"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":0,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"north","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"north","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"north","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"north","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"south","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"south","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"south","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"south","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"west","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"west","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"west","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"west","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"east","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"east","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"east","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"east","delay":"2"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":1,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"north","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"north","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"north","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"north","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"south","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"south","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"south","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"south","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"west","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"west","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"west","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"west","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"east","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"east","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"east","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"east","delay":"3"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":2,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"north","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"north","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"north","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"north","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"south","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"south","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"south","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"south","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"west","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"west","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"west","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"west","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"true","locked":"true","facing":"east","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"false","locked":"true","facing":"east","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"true","locked":"false","facing":"east","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"powered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"false","locked":"false","facing":"east","delay":"4"},"Name":"minecraft:repeater"},"bedrock_state":{"bedrock_identifier":"unpowered_repeater","state":{"repeater_delay":3,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Name":"minecraft:white_stained_glass"},"bedrock_state":{"bedrock_identifier":"white_stained_glass"}},{"java_state":{"Name":"minecraft:orange_stained_glass"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass"}},{"java_state":{"Name":"minecraft:magenta_stained_glass"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass"}},{"java_state":{"Name":"minecraft:light_blue_stained_glass"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass"}},{"java_state":{"Name":"minecraft:yellow_stained_glass"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass"}},{"java_state":{"Name":"minecraft:lime_stained_glass"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass"}},{"java_state":{"Name":"minecraft:pink_stained_glass"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass"}},{"java_state":{"Name":"minecraft:gray_stained_glass"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass"}},{"java_state":{"Name":"minecraft:light_gray_stained_glass"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass"}},{"java_state":{"Name":"minecraft:cyan_stained_glass"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass"}},{"java_state":{"Name":"minecraft:purple_stained_glass"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass"}},{"java_state":{"Name":"minecraft:blue_stained_glass"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass"}},{"java_state":{"Name":"minecraft:brown_stained_glass"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass"}},{"java_state":{"Name":"minecraft:green_stained_glass"},"bedrock_state":{"bedrock_identifier":"green_stained_glass"}},{"java_state":{"Name":"minecraft:red_stained_glass"},"bedrock_state":{"bedrock_identifier":"red_stained_glass"}},{"java_state":{"Name":"minecraft:black_stained_glass"},"bedrock_state":{"bedrock_identifier":"black_stained_glass"}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:spruce_trapdoor"},"bedrock_state":{"bedrock_identifier":"spruce_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:birch_trapdoor"},"bedrock_state":{"bedrock_identifier":"birch_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:jungle_trapdoor"},"bedrock_state":{"bedrock_identifier":"jungle_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:acacia_trapdoor"},"bedrock_state":{"bedrock_identifier":"acacia_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:cherry_trapdoor"},"bedrock_state":{"bedrock_identifier":"cherry_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_trapdoor"},"bedrock_state":{"bedrock_identifier":"dark_oak_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_trapdoor"},"bedrock_state":{"bedrock_identifier":"mangrove_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_trapdoor"},"bedrock_state":{"bedrock_identifier":"bamboo_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Name":"minecraft:stone_bricks"},"bedrock_state":{"bedrock_identifier":"stone_bricks"}},{"java_state":{"Name":"minecraft:mossy_stone_bricks"},"bedrock_state":{"bedrock_identifier":"mossy_stone_bricks"}},{"java_state":{"Name":"minecraft:cracked_stone_bricks"},"bedrock_state":{"bedrock_identifier":"cracked_stone_bricks"}},{"java_state":{"Name":"minecraft:chiseled_stone_bricks"},"bedrock_state":{"bedrock_identifier":"chiseled_stone_bricks"}},{"java_state":{"Name":"minecraft:packed_mud"},"bedrock_state":{"bedrock_identifier":"packed_mud"}},{"java_state":{"Name":"minecraft:mud_bricks"},"bedrock_state":{"bedrock_identifier":"mud_bricks"}},{"java_state":{"Name":"minecraft:infested_stone"},"bedrock_state":{"bedrock_identifier":"infested_stone"}},{"java_state":{"Name":"minecraft:infested_cobblestone"},"bedrock_state":{"bedrock_identifier":"infested_cobblestone"}},{"java_state":{"Name":"minecraft:infested_stone_bricks"},"bedrock_state":{"bedrock_identifier":"infested_stone_bricks"}},{"java_state":{"Name":"minecraft:infested_mossy_stone_bricks"},"bedrock_state":{"bedrock_identifier":"infested_mossy_stone_bricks"}},{"java_state":{"Name":"minecraft:infested_cracked_stone_bricks"},"bedrock_state":{"bedrock_identifier":"infested_cracked_stone_bricks"}},{"java_state":{"Name":"minecraft:infested_chiseled_stone_bricks"},"bedrock_state":{"bedrock_identifier":"infested_chiseled_stone_bricks"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":3 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":9 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":6 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":1 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":2 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":7 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":8 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":4 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":5 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:brown_mushroom_block"},"bedrock_state":{"bedrock_identifier":"brown_mushroom_block","state":{"huge_mushroom_bits":0 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":3 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":9 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":6 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":1 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":2 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":7 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":8 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":4 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":5 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:red_mushroom_block"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":0 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:mushroom_stem"},"bedrock_state":{"bedrock_identifier":"red_mushroom_block","state":{"huge_mushroom_bits":0 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:iron_bars"},"bedrock_state":{"bedrock_identifier":"iron_bars"}},{"java_state":{"Properties":{"waterlogged":"true","axis":"x"},"Name":"minecraft:chain"},"bedrock_state":{"bedrock_identifier":"chain","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"waterlogged":"false","axis":"x"},"Name":"minecraft:chain"},"bedrock_state":{"bedrock_identifier":"chain","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"waterlogged":"true","axis":"y"},"Name":"minecraft:chain"},"bedrock_state":{"bedrock_identifier":"chain","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"waterlogged":"false","axis":"y"},"Name":"minecraft:chain"},"bedrock_state":{"bedrock_identifier":"chain","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"waterlogged":"true","axis":"z"},"Name":"minecraft:chain"},"bedrock_state":{"bedrock_identifier":"chain","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"waterlogged":"false","axis":"z"},"Name":"minecraft:chain"},"bedrock_state":{"bedrock_identifier":"chain","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:glass_pane"},"bedrock_state":{"bedrock_identifier":"glass_pane"}},{"java_state":{"Name":"minecraft:pumpkin"},"bedrock_state":{"bedrock_identifier":"pumpkin","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Name":"minecraft:melon"},"bedrock_state":{"bedrock_identifier":"melon_block"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:attached_pumpkin_stem"},"bedrock_state":{"bedrock_identifier":"pumpkin_stem","state":{"facing_direction":2,"growth":7 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:attached_pumpkin_stem"},"bedrock_state":{"bedrock_identifier":"pumpkin_stem","state":{"facing_direction":3,"growth":7 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:attached_pumpkin_stem"},"bedrock_state":{"bedrock_identifier":"pumpkin_stem","state":{"facing_direction":4,"growth":7 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:attached_pumpkin_stem"},"bedrock_state":{"bedrock_identifier":"pumpkin_stem","state":{"facing_direction":5,"growth":7 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:attached_melon_stem"},"bedrock_state":{"bedrock_identifier":"melon_stem","state":{"facing_direction":2,"growth":7 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:attached_melon_stem"},"bedrock_state":{"bedrock_identifier":"melon_stem","state":{"facing_direction":3,"growth":7 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:attached_melon_stem"},"bedrock_state":{"bedrock_identifier":"melon_stem","state":{"facing_direction":4,"growth":7 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:attached_melon_stem"},"bedrock_state":{"bedrock_identifier":"melon_stem","state":{"facing_direction":5,"growth":7 }}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:pumpkin_stem"},"bedrock_state":{"bedrock_identifier":"pumpkin_stem","state":{"facing_direction":0,"growth":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:pumpkin_stem"},"bedrock_state":{"bedrock_identifier":"pumpkin_stem","state":{"facing_direction":0,"growth":1 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:pumpkin_stem"},"bedrock_state":{"bedrock_identifier":"pumpkin_stem","state":{"facing_direction":0,"growth":2 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:pumpkin_stem"},"bedrock_state":{"bedrock_identifier":"pumpkin_stem","state":{"facing_direction":0,"growth":3 }}},{"java_state":{"Properties":{"age":"4"},"Name":"minecraft:pumpkin_stem"},"bedrock_state":{"bedrock_identifier":"pumpkin_stem","state":{"facing_direction":0,"growth":4 }}},{"java_state":{"Properties":{"age":"5"},"Name":"minecraft:pumpkin_stem"},"bedrock_state":{"bedrock_identifier":"pumpkin_stem","state":{"facing_direction":0,"growth":5 }}},{"java_state":{"Properties":{"age":"6"},"Name":"minecraft:pumpkin_stem"},"bedrock_state":{"bedrock_identifier":"pumpkin_stem","state":{"facing_direction":0,"growth":6 }}},{"java_state":{"Properties":{"age":"7"},"Name":"minecraft:pumpkin_stem"},"bedrock_state":{"bedrock_identifier":"pumpkin_stem","state":{"facing_direction":0,"growth":7 }}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:melon_stem"},"bedrock_state":{"bedrock_identifier":"melon_stem","state":{"facing_direction":0,"growth":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:melon_stem"},"bedrock_state":{"bedrock_identifier":"melon_stem","state":{"facing_direction":0,"growth":1 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:melon_stem"},"bedrock_state":{"bedrock_identifier":"melon_stem","state":{"facing_direction":0,"growth":2 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:melon_stem"},"bedrock_state":{"bedrock_identifier":"melon_stem","state":{"facing_direction":0,"growth":3 }}},{"java_state":{"Properties":{"age":"4"},"Name":"minecraft:melon_stem"},"bedrock_state":{"bedrock_identifier":"melon_stem","state":{"facing_direction":0,"growth":4 }}},{"java_state":{"Properties":{"age":"5"},"Name":"minecraft:melon_stem"},"bedrock_state":{"bedrock_identifier":"melon_stem","state":{"facing_direction":0,"growth":5 }}},{"java_state":{"Properties":{"age":"6"},"Name":"minecraft:melon_stem"},"bedrock_state":{"bedrock_identifier":"melon_stem","state":{"facing_direction":0,"growth":6 }}},{"java_state":{"Properties":{"age":"7"},"Name":"minecraft:melon_stem"},"bedrock_state":{"bedrock_identifier":"melon_stem","state":{"facing_direction":0,"growth":7 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":13 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":15 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":13 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":12 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":14 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":12 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":11 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":9 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":11 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":9 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":10 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":8 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":10 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":8 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":7 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":5 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":7 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":5 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":6 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":4 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":6 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":4 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":3 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":1 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":3 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":1 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":2 }}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":0 }}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":2 }}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:vine"},"bedrock_state":{"bedrock_identifier":"vine","state":{"vine_direction_bits":0 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":63 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":55 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":63 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":55 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":61 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":53 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":61 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":53 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":59 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":51 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":59 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":51 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":57 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":49 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":57 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":49 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":47 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":39 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":47 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":39 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":45 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":37 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":45 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":37 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":43 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":35 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":43 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":35 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":41 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":33 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":41 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":33 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":31 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":23 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":31 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":23 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":29 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":21 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":29 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":21 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":27 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":19 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":27 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":19 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":25 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":17 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":25 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":17 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":15 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":7 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":15 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":7 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":13 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":5 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":13 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":5 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":11 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":3 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":11 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":3 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":9 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":1 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":9 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":1 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":62 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":54 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":62 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":54 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":60 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":52 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":60 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":52 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":58 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":50 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":58 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":50 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":56 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":48 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":56 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":48 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":46 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":38 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":46 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":38 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":44 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":36 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":44 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":36 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":42 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":34 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":42 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":34 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":40 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":32 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":40 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":32 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":30 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":22 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":30 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":22 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":28 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":20 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":28 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":20 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":26 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":18 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":26 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":18 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":24 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":16 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":24 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":16 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":14 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":6 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":14 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":6 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":12 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":4 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":12 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":4 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":10 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":2 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":10 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":2 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":8 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":0 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":8 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:glow_lichen"},"bedrock_state":{"bedrock_identifier":"glow_lichen","state":{"multi_face_direction_bits":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:brick_stairs"},"bedrock_state":{"bedrock_identifier":"brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:mud_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mud_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"snowy":"true"},"Name":"minecraft:mycelium"},"bedrock_state":{"bedrock_identifier":"mycelium"}},{"java_state":{"Properties":{"snowy":"false"},"Name":"minecraft:mycelium"},"bedrock_state":{"bedrock_identifier":"mycelium"}},{"java_state":{"Name":"minecraft:lily_pad"},"bedrock_state":{"bedrock_identifier":"waterlily"}},{"java_state":{"Name":"minecraft:nether_bricks"},"bedrock_state":{"bedrock_identifier":"nether_brick"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:nether_brick_fence"},"bedrock_state":{"bedrock_identifier":"nether_brick_fence"}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:nether_wart"},"bedrock_state":{"bedrock_identifier":"nether_wart","state":{"age":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:nether_wart"},"bedrock_state":{"bedrock_identifier":"nether_wart","state":{"age":1 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:nether_wart"},"bedrock_state":{"bedrock_identifier":"nether_wart","state":{"age":2 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:nether_wart"},"bedrock_state":{"bedrock_identifier":"nether_wart","state":{"age":3 }}},{"java_state":{"Name":"minecraft:enchanting_table"},"bedrock_state":{"bedrock_identifier":"enchanting_table"}},{"java_state":{"Properties":{"has_bottle_2":"true","has_bottle_1":"true","has_bottle_0":"true"},"Name":"minecraft:brewing_stand"},"bedrock_state":{"bedrock_identifier":"brewing_stand","state":{"brewing_stand_slot_c_bit":true,"brewing_stand_slot_a_bit":true,"brewing_stand_slot_b_bit":true }}},{"java_state":{"Properties":{"has_bottle_2":"false","has_bottle_1":"true","has_bottle_0":"true"},"Name":"minecraft:brewing_stand"},"bedrock_state":{"bedrock_identifier":"brewing_stand","state":{"brewing_stand_slot_c_bit":false,"brewing_stand_slot_a_bit":true,"brewing_stand_slot_b_bit":true }}},{"java_state":{"Properties":{"has_bottle_2":"true","has_bottle_1":"false","has_bottle_0":"true"},"Name":"minecraft:brewing_stand"},"bedrock_state":{"bedrock_identifier":"brewing_stand","state":{"brewing_stand_slot_c_bit":true,"brewing_stand_slot_a_bit":true,"brewing_stand_slot_b_bit":false }}},{"java_state":{"Properties":{"has_bottle_2":"false","has_bottle_1":"false","has_bottle_0":"true"},"Name":"minecraft:brewing_stand"},"bedrock_state":{"bedrock_identifier":"brewing_stand","state":{"brewing_stand_slot_c_bit":false,"brewing_stand_slot_a_bit":true,"brewing_stand_slot_b_bit":false }}},{"java_state":{"Properties":{"has_bottle_2":"true","has_bottle_1":"true","has_bottle_0":"false"},"Name":"minecraft:brewing_stand"},"bedrock_state":{"bedrock_identifier":"brewing_stand","state":{"brewing_stand_slot_c_bit":true,"brewing_stand_slot_a_bit":false,"brewing_stand_slot_b_bit":true }}},{"java_state":{"Properties":{"has_bottle_2":"false","has_bottle_1":"true","has_bottle_0":"false"},"Name":"minecraft:brewing_stand"},"bedrock_state":{"bedrock_identifier":"brewing_stand","state":{"brewing_stand_slot_c_bit":false,"brewing_stand_slot_a_bit":false,"brewing_stand_slot_b_bit":true }}},{"java_state":{"Properties":{"has_bottle_2":"true","has_bottle_1":"false","has_bottle_0":"false"},"Name":"minecraft:brewing_stand"},"bedrock_state":{"bedrock_identifier":"brewing_stand","state":{"brewing_stand_slot_c_bit":true,"brewing_stand_slot_a_bit":false,"brewing_stand_slot_b_bit":false }}},{"java_state":{"Properties":{"has_bottle_2":"false","has_bottle_1":"false","has_bottle_0":"false"},"Name":"minecraft:brewing_stand"},"bedrock_state":{"bedrock_identifier":"brewing_stand","state":{"brewing_stand_slot_c_bit":false,"brewing_stand_slot_a_bit":false,"brewing_stand_slot_b_bit":false }}},{"java_state":{"Name":"minecraft:cauldron"},"bedrock_state":{"bedrock_identifier":"cauldron","state":{"fill_level":0,"cauldron_liquid":"water"}}},{"java_state":{"Properties":{"level":"1"},"Name":"minecraft:water_cauldron"},"bedrock_state":{"bedrock_identifier":"cauldron","state":{"fill_level":3,"cauldron_liquid":"water"}}},{"java_state":{"Properties":{"level":"2"},"Name":"minecraft:water_cauldron"},"bedrock_state":{"bedrock_identifier":"cauldron","state":{"fill_level":4,"cauldron_liquid":"water"}}},{"java_state":{"Properties":{"level":"3"},"Name":"minecraft:water_cauldron"},"bedrock_state":{"bedrock_identifier":"cauldron","state":{"fill_level":6,"cauldron_liquid":"water"}}},{"java_state":{"Name":"minecraft:lava_cauldron"},"bedrock_state":{"bedrock_identifier":"cauldron","state":{"fill_level":6,"cauldron_liquid":"lava"}}},{"java_state":{"Properties":{"level":"1"},"Name":"minecraft:powder_snow_cauldron"},"bedrock_state":{"bedrock_identifier":"cauldron","state":{"fill_level":3,"cauldron_liquid":"powder_snow"}}},{"java_state":{"Properties":{"level":"2"},"Name":"minecraft:powder_snow_cauldron"},"bedrock_state":{"bedrock_identifier":"cauldron","state":{"fill_level":4,"cauldron_liquid":"powder_snow"}}},{"java_state":{"Properties":{"level":"3"},"Name":"minecraft:powder_snow_cauldron"},"bedrock_state":{"bedrock_identifier":"cauldron","state":{"fill_level":6,"cauldron_liquid":"powder_snow"}}},{"java_state":{"Name":"minecraft:end_portal"},"bedrock_state":{"bedrock_identifier":"end_portal"}},{"java_state":{"Properties":{"facing":"north","eye":"true"},"Name":"minecraft:end_portal_frame"},"bedrock_state":{"bedrock_identifier":"end_portal_frame","state":{"end_portal_eye_bit":true,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"facing":"south","eye":"true"},"Name":"minecraft:end_portal_frame"},"bedrock_state":{"bedrock_identifier":"end_portal_frame","state":{"end_portal_eye_bit":true,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"facing":"west","eye":"true"},"Name":"minecraft:end_portal_frame"},"bedrock_state":{"bedrock_identifier":"end_portal_frame","state":{"end_portal_eye_bit":true,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"facing":"east","eye":"true"},"Name":"minecraft:end_portal_frame"},"bedrock_state":{"bedrock_identifier":"end_portal_frame","state":{"end_portal_eye_bit":true,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"facing":"north","eye":"false"},"Name":"minecraft:end_portal_frame"},"bedrock_state":{"bedrock_identifier":"end_portal_frame","state":{"end_portal_eye_bit":false,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"facing":"south","eye":"false"},"Name":"minecraft:end_portal_frame"},"bedrock_state":{"bedrock_identifier":"end_portal_frame","state":{"end_portal_eye_bit":false,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"facing":"west","eye":"false"},"Name":"minecraft:end_portal_frame"},"bedrock_state":{"bedrock_identifier":"end_portal_frame","state":{"end_portal_eye_bit":false,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"facing":"east","eye":"false"},"Name":"minecraft:end_portal_frame"},"bedrock_state":{"bedrock_identifier":"end_portal_frame","state":{"end_portal_eye_bit":false,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Name":"minecraft:end_stone"},"bedrock_state":{"bedrock_identifier":"end_stone"}},{"java_state":{"Name":"minecraft:dragon_egg"},"bedrock_state":{"bedrock_identifier":"dragon_egg"}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:redstone_lamp"},"bedrock_state":{"bedrock_identifier":"lit_redstone_lamp"}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:redstone_lamp"},"bedrock_state":{"bedrock_identifier":"redstone_lamp"}},{"java_state":{"Properties":{"facing":"north","age":"0"},"Name":"minecraft:cocoa"},"bedrock_state":{"bedrock_identifier":"cocoa","state":{"age":0,"direction":2 }}},{"java_state":{"Properties":{"facing":"south","age":"0"},"Name":"minecraft:cocoa"},"bedrock_state":{"bedrock_identifier":"cocoa","state":{"age":0,"direction":0 }}},{"java_state":{"Properties":{"facing":"west","age":"0"},"Name":"minecraft:cocoa"},"bedrock_state":{"bedrock_identifier":"cocoa","state":{"age":0,"direction":1 }}},{"java_state":{"Properties":{"facing":"east","age":"0"},"Name":"minecraft:cocoa"},"bedrock_state":{"bedrock_identifier":"cocoa","state":{"age":0,"direction":3 }}},{"java_state":{"Properties":{"facing":"north","age":"1"},"Name":"minecraft:cocoa"},"bedrock_state":{"bedrock_identifier":"cocoa","state":{"age":1,"direction":2 }}},{"java_state":{"Properties":{"facing":"south","age":"1"},"Name":"minecraft:cocoa"},"bedrock_state":{"bedrock_identifier":"cocoa","state":{"age":1,"direction":0 }}},{"java_state":{"Properties":{"facing":"west","age":"1"},"Name":"minecraft:cocoa"},"bedrock_state":{"bedrock_identifier":"cocoa","state":{"age":1,"direction":1 }}},{"java_state":{"Properties":{"facing":"east","age":"1"},"Name":"minecraft:cocoa"},"bedrock_state":{"bedrock_identifier":"cocoa","state":{"age":1,"direction":3 }}},{"java_state":{"Properties":{"facing":"north","age":"2"},"Name":"minecraft:cocoa"},"bedrock_state":{"bedrock_identifier":"cocoa","state":{"age":2,"direction":2 }}},{"java_state":{"Properties":{"facing":"south","age":"2"},"Name":"minecraft:cocoa"},"bedrock_state":{"bedrock_identifier":"cocoa","state":{"age":2,"direction":0 }}},{"java_state":{"Properties":{"facing":"west","age":"2"},"Name":"minecraft:cocoa"},"bedrock_state":{"bedrock_identifier":"cocoa","state":{"age":2,"direction":1 }}},{"java_state":{"Properties":{"facing":"east","age":"2"},"Name":"minecraft:cocoa"},"bedrock_state":{"bedrock_identifier":"cocoa","state":{"age":2,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Name":"minecraft:emerald_ore"},"bedrock_state":{"bedrock_identifier":"emerald_ore"}},{"java_state":{"Name":"minecraft:deepslate_emerald_ore"},"bedrock_state":{"bedrock_identifier":"deepslate_emerald_ore"}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:ender_chest"},"bedrock_state":{"bedrock_identifier":"ender_chest","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:ender_chest"},"bedrock_state":{"bedrock_identifier":"ender_chest","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:ender_chest"},"bedrock_state":{"bedrock_identifier":"ender_chest","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:ender_chest"},"bedrock_state":{"bedrock_identifier":"ender_chest","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:ender_chest"},"bedrock_state":{"bedrock_identifier":"ender_chest","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:ender_chest"},"bedrock_state":{"bedrock_identifier":"ender_chest","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:ender_chest"},"bedrock_state":{"bedrock_identifier":"ender_chest","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:ender_chest"},"bedrock_state":{"bedrock_identifier":"ender_chest","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"true","facing":"north","attached":"true"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":true,"attached_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","facing":"north","attached":"true"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":false,"attached_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","facing":"south","attached":"true"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":true,"attached_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","facing":"south","attached":"true"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":false,"attached_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","facing":"west","attached":"true"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":true,"attached_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","facing":"west","attached":"true"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":false,"attached_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","facing":"east","attached":"true"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":true,"attached_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","facing":"east","attached":"true"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":false,"attached_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","facing":"north","attached":"false"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":true,"attached_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","facing":"north","attached":"false"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":false,"attached_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","facing":"south","attached":"false"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":true,"attached_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","facing":"south","attached":"false"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":false,"attached_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","facing":"west","attached":"false"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":true,"attached_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","facing":"west","attached":"false"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":false,"attached_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","facing":"east","attached":"false"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":true,"attached_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","facing":"east","attached":"false"},"Name":"minecraft:tripwire_hook"},"bedrock_state":{"bedrock_identifier":"tripwire_hook","state":{"powered_bit":false,"attached_bit":false,"direction":3 }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"true","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"true","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"true","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"true","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"true","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"true","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"true","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"true","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"false","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"false","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"false","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"false","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"false","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"false","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"false","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"false","east":"true","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"true","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"true","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"true","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"true","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"true","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"true","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"true","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"true","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"false","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"false","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"false","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"false","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"false","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"false","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"false","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"false","east":"false","disarmed":"true","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"true","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"true","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"true","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"true","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"true","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"true","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"true","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"true","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"false","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"false","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"false","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"false","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"false","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"false","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"false","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"false","east":"true","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"true","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"true","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"true","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"true","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"true","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"true","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"true","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"true","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"false","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"false","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"false","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"false","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"false","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"false","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"false","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"false","east":"false","disarmed":"false","attached":"true"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":true }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"true","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"true","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"true","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"true","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"true","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"true","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"true","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"true","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"false","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"false","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"false","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"false","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"false","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"false","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"false","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"false","east":"true","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"true","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"true","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"true","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"true","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"true","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"true","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"true","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"true","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"false","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"false","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"false","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"false","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"false","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"false","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"false","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"false","east":"false","disarmed":"true","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":true,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"true","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"true","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"true","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"true","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"true","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"true","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"true","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"true","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"false","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"false","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"false","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"false","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"false","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"false","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"false","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"false","east":"true","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"true","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"true","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"true","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"true","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"true","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"true","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"true","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"true","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"true","north":"false","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"true","north":"false","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"true","north":"false","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"true","north":"false","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":true,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"true","powered":"false","north":"false","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"true","powered":"false","north":"false","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"true","south":"false","powered":"false","north":"false","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Properties":{"west":"false","south":"false","powered":"false","north":"false","east":"false","disarmed":"false","attached":"false"},"Name":"minecraft:tripwire"},"bedrock_state":{"bedrock_identifier":"trip_wire","state":{"powered_bit":false,"suspended_bit":true,"disarmed_bit":false,"attached_bit":false }}},{"java_state":{"Name":"minecraft:emerald_block"},"bedrock_state":{"bedrock_identifier":"emerald_block"}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:spruce_stairs"},"bedrock_state":{"bedrock_identifier":"spruce_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:birch_stairs"},"bedrock_state":{"bedrock_identifier":"birch_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:jungle_stairs"},"bedrock_state":{"bedrock_identifier":"jungle_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"facing":"north","conditional":"true"},"Name":"minecraft:command_block"},"bedrock_state":{"bedrock_identifier":"command_block","state":{"conditional_bit":true,"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"east","conditional":"true"},"Name":"minecraft:command_block"},"bedrock_state":{"bedrock_identifier":"command_block","state":{"conditional_bit":true,"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"south","conditional":"true"},"Name":"minecraft:command_block"},"bedrock_state":{"bedrock_identifier":"command_block","state":{"conditional_bit":true,"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west","conditional":"true"},"Name":"minecraft:command_block"},"bedrock_state":{"bedrock_identifier":"command_block","state":{"conditional_bit":true,"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"up","conditional":"true"},"Name":"minecraft:command_block"},"bedrock_state":{"bedrock_identifier":"command_block","state":{"conditional_bit":true,"facing_direction":1 }}},{"java_state":{"Properties":{"facing":"down","conditional":"true"},"Name":"minecraft:command_block"},"bedrock_state":{"bedrock_identifier":"command_block","state":{"conditional_bit":true,"facing_direction":0 }}},{"java_state":{"Properties":{"facing":"north","conditional":"false"},"Name":"minecraft:command_block"},"bedrock_state":{"bedrock_identifier":"command_block","state":{"conditional_bit":false,"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"east","conditional":"false"},"Name":"minecraft:command_block"},"bedrock_state":{"bedrock_identifier":"command_block","state":{"conditional_bit":false,"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"south","conditional":"false"},"Name":"minecraft:command_block"},"bedrock_state":{"bedrock_identifier":"command_block","state":{"conditional_bit":false,"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west","conditional":"false"},"Name":"minecraft:command_block"},"bedrock_state":{"bedrock_identifier":"command_block","state":{"conditional_bit":false,"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"up","conditional":"false"},"Name":"minecraft:command_block"},"bedrock_state":{"bedrock_identifier":"command_block","state":{"conditional_bit":false,"facing_direction":1 }}},{"java_state":{"Properties":{"facing":"down","conditional":"false"},"Name":"minecraft:command_block"},"bedrock_state":{"bedrock_identifier":"command_block","state":{"conditional_bit":false,"facing_direction":0 }}},{"java_state":{"Name":"minecraft:beacon"},"bedrock_state":{"bedrock_identifier":"beacon"}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_cobblestone_wall"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Name":"minecraft:flower_pot"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_torchflower"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_oak_sapling"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_spruce_sapling"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_birch_sapling"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_jungle_sapling"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_acacia_sapling"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_cherry_sapling"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_dark_oak_sapling"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_mangrove_propagule"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_fern"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_dandelion"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_poppy"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_blue_orchid"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_allium"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_azure_bluet"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_red_tulip"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_orange_tulip"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_white_tulip"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_pink_tulip"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_oxeye_daisy"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_cornflower"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_lily_of_the_valley"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_wither_rose"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_red_mushroom"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_brown_mushroom"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_dead_bush"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_cactus"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:carrots"},"bedrock_state":{"bedrock_identifier":"carrots","state":{"growth":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:carrots"},"bedrock_state":{"bedrock_identifier":"carrots","state":{"growth":1 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:carrots"},"bedrock_state":{"bedrock_identifier":"carrots","state":{"growth":2 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:carrots"},"bedrock_state":{"bedrock_identifier":"carrots","state":{"growth":3 }}},{"java_state":{"Properties":{"age":"4"},"Name":"minecraft:carrots"},"bedrock_state":{"bedrock_identifier":"carrots","state":{"growth":4 }}},{"java_state":{"Properties":{"age":"5"},"Name":"minecraft:carrots"},"bedrock_state":{"bedrock_identifier":"carrots","state":{"growth":5 }}},{"java_state":{"Properties":{"age":"6"},"Name":"minecraft:carrots"},"bedrock_state":{"bedrock_identifier":"carrots","state":{"growth":6 }}},{"java_state":{"Properties":{"age":"7"},"Name":"minecraft:carrots"},"bedrock_state":{"bedrock_identifier":"carrots","state":{"growth":7 }}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:potatoes"},"bedrock_state":{"bedrock_identifier":"potatoes","state":{"growth":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:potatoes"},"bedrock_state":{"bedrock_identifier":"potatoes","state":{"growth":1 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:potatoes"},"bedrock_state":{"bedrock_identifier":"potatoes","state":{"growth":2 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:potatoes"},"bedrock_state":{"bedrock_identifier":"potatoes","state":{"growth":3 }}},{"java_state":{"Properties":{"age":"4"},"Name":"minecraft:potatoes"},"bedrock_state":{"bedrock_identifier":"potatoes","state":{"growth":4 }}},{"java_state":{"Properties":{"age":"5"},"Name":"minecraft:potatoes"},"bedrock_state":{"bedrock_identifier":"potatoes","state":{"growth":5 }}},{"java_state":{"Properties":{"age":"6"},"Name":"minecraft:potatoes"},"bedrock_state":{"bedrock_identifier":"potatoes","state":{"growth":6 }}},{"java_state":{"Properties":{"age":"7"},"Name":"minecraft:potatoes"},"bedrock_state":{"bedrock_identifier":"potatoes","state":{"growth":7 }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"floor"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"floor"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"floor"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"floor"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"floor"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"floor"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"floor"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"floor"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"wall"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":2,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"wall"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":2,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"wall"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":3,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"wall"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":3,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"wall"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":4,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"wall"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":4,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"wall"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":5,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"wall"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":5,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"ceiling"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"ceiling"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"ceiling"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"ceiling"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"ceiling"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"ceiling"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"ceiling"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"ceiling"},"Name":"minecraft:oak_button"},"bedrock_state":{"bedrock_identifier":"wooden_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"floor"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"floor"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"floor"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"floor"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"floor"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"floor"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"floor"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"floor"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"wall"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":2,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"wall"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":2,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"wall"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":3,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"wall"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":3,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"wall"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":4,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"wall"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":4,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"wall"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":5,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"wall"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":5,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"ceiling"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"ceiling"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"ceiling"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"ceiling"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"ceiling"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"ceiling"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"ceiling"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"ceiling"},"Name":"minecraft:spruce_button"},"bedrock_state":{"bedrock_identifier":"spruce_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"floor"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"floor"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"floor"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"floor"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"floor"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"floor"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"floor"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"floor"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"wall"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":2,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"wall"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":2,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"wall"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":3,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"wall"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":3,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"wall"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":4,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"wall"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":4,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"wall"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":5,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"wall"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":5,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"ceiling"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"ceiling"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"ceiling"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"ceiling"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"ceiling"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"ceiling"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"ceiling"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"ceiling"},"Name":"minecraft:birch_button"},"bedrock_state":{"bedrock_identifier":"birch_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"floor"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"floor"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"floor"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"floor"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"floor"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"floor"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"floor"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"floor"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"wall"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":2,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"wall"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":2,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"wall"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":3,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"wall"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":3,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"wall"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":4,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"wall"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":4,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"wall"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":5,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"wall"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":5,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"ceiling"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"ceiling"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"ceiling"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"ceiling"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"ceiling"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"ceiling"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"ceiling"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"ceiling"},"Name":"minecraft:jungle_button"},"bedrock_state":{"bedrock_identifier":"jungle_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"floor"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"floor"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"floor"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"floor"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"floor"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"floor"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"floor"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"floor"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"wall"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":2,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"wall"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":2,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"wall"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":3,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"wall"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":3,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"wall"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":4,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"wall"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":4,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"wall"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":5,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"wall"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":5,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"ceiling"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"ceiling"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"ceiling"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"ceiling"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"ceiling"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"ceiling"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"ceiling"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"ceiling"},"Name":"minecraft:acacia_button"},"bedrock_state":{"bedrock_identifier":"acacia_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"floor"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"floor"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"floor"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"floor"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"floor"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"floor"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"floor"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"floor"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"wall"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":2,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"wall"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":2,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"wall"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":3,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"wall"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":3,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"wall"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":4,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"wall"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":4,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"wall"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":5,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"wall"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":5,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"ceiling"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"ceiling"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"ceiling"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"ceiling"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"ceiling"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"ceiling"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"ceiling"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"ceiling"},"Name":"minecraft:cherry_button"},"bedrock_state":{"bedrock_identifier":"cherry_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"floor"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"floor"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"floor"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"floor"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"floor"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"floor"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"floor"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"floor"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"wall"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":2,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"wall"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":2,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"wall"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":3,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"wall"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":3,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"wall"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":4,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"wall"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":4,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"wall"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":5,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"wall"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":5,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"ceiling"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"ceiling"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"ceiling"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"ceiling"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"ceiling"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"ceiling"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"ceiling"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"ceiling"},"Name":"minecraft:dark_oak_button"},"bedrock_state":{"bedrock_identifier":"dark_oak_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"floor"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"floor"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"floor"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"floor"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"floor"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"floor"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"floor"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"floor"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"wall"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":2,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"wall"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":2,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"wall"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":3,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"wall"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":3,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"wall"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":4,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"wall"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":4,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"wall"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":5,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"wall"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":5,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"ceiling"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"ceiling"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"ceiling"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"ceiling"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"ceiling"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"ceiling"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"ceiling"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"ceiling"},"Name":"minecraft:mangrove_button"},"bedrock_state":{"bedrock_identifier":"mangrove_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"floor"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"floor"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"floor"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"floor"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"floor"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"floor"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"floor"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"floor"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"wall"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":2,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"wall"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":2,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"wall"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":3,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"wall"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":3,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"wall"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":4,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"wall"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":4,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"wall"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":5,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"wall"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":5,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"ceiling"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"ceiling"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"ceiling"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"ceiling"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"ceiling"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"ceiling"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"ceiling"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"ceiling"},"Name":"minecraft:bamboo_button"},"bedrock_state":{"bedrock_identifier":"bamboo_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"rotation":"0","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"1","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"2","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"3","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"4","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"5","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"6","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"7","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"8","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"9","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"10","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"11","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"12","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"13","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"14","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"15","powered":"true"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"0","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"1","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"2","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"3","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"4","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"5","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"6","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"7","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"8","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"9","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"10","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"11","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"12","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"13","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"14","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"15","powered":"false"},"Name":"minecraft:skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"powered":"true","facing":"north"},"Name":"minecraft:skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"powered":"false","facing":"north"},"Name":"minecraft:skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"powered":"true","facing":"south"},"Name":"minecraft:skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"powered":"false","facing":"south"},"Name":"minecraft:skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"powered":"true","facing":"west"},"Name":"minecraft:skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"powered":"false","facing":"west"},"Name":"minecraft:skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"powered":"true","facing":"east"},"Name":"minecraft:skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"powered":"false","facing":"east"},"Name":"minecraft:skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"rotation":"0","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"1","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"2","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"3","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"4","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"5","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"6","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"7","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"8","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"9","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"10","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"11","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"12","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"13","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"14","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"15","powered":"true"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"0","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"1","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"2","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"3","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"4","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"5","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"6","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"7","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"8","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"9","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"10","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"11","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"12","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"13","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"14","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"15","powered":"false"},"Name":"minecraft:wither_skeleton_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"powered":"true","facing":"north"},"Name":"minecraft:wither_skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"powered":"false","facing":"north"},"Name":"minecraft:wither_skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"powered":"true","facing":"south"},"Name":"minecraft:wither_skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"powered":"false","facing":"south"},"Name":"minecraft:wither_skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"powered":"true","facing":"west"},"Name":"minecraft:wither_skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"powered":"false","facing":"west"},"Name":"minecraft:wither_skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"powered":"true","facing":"east"},"Name":"minecraft:wither_skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"powered":"false","facing":"east"},"Name":"minecraft:wither_skeleton_wall_skull"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"rotation":"0","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"1","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"2","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"3","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"4","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"5","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"6","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"7","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"8","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"9","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"10","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"11","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"12","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"13","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"14","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"15","powered":"true"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"0","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"1","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"2","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"3","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"4","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"5","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"6","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"7","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"8","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"9","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"10","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"11","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"12","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"13","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"14","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"15","powered":"false"},"Name":"minecraft:zombie_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"powered":"true","facing":"north"},"Name":"minecraft:zombie_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"powered":"false","facing":"north"},"Name":"minecraft:zombie_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"powered":"true","facing":"south"},"Name":"minecraft:zombie_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"powered":"false","facing":"south"},"Name":"minecraft:zombie_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"powered":"true","facing":"west"},"Name":"minecraft:zombie_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"powered":"false","facing":"west"},"Name":"minecraft:zombie_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"powered":"true","facing":"east"},"Name":"minecraft:zombie_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"powered":"false","facing":"east"},"Name":"minecraft:zombie_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"rotation":"0","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"1","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"2","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"3","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"4","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"5","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"6","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"7","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"8","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"9","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"10","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"11","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"12","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"13","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"14","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"15","powered":"true"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"0","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"1","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"2","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"3","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"4","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"5","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"6","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"7","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"8","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"9","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"10","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"11","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"12","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"13","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"14","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"15","powered":"false"},"Name":"minecraft:player_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"powered":"true","facing":"north"},"Name":"minecraft:player_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"powered":"false","facing":"north"},"Name":"minecraft:player_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"powered":"true","facing":"south"},"Name":"minecraft:player_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"powered":"false","facing":"south"},"Name":"minecraft:player_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"powered":"true","facing":"west"},"Name":"minecraft:player_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"powered":"false","facing":"west"},"Name":"minecraft:player_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"powered":"true","facing":"east"},"Name":"minecraft:player_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"powered":"false","facing":"east"},"Name":"minecraft:player_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"rotation":"0","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"1","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"2","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"3","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"4","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"5","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"6","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"7","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"8","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"9","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"10","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"11","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"12","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"13","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"14","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"15","powered":"true"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"0","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"1","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"2","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"3","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"4","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"5","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"6","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"7","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"8","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"9","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"10","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"11","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"12","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"13","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"14","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"15","powered":"false"},"Name":"minecraft:creeper_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"powered":"true","facing":"north"},"Name":"minecraft:creeper_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"powered":"false","facing":"north"},"Name":"minecraft:creeper_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"powered":"true","facing":"south"},"Name":"minecraft:creeper_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"powered":"false","facing":"south"},"Name":"minecraft:creeper_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"powered":"true","facing":"west"},"Name":"minecraft:creeper_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"powered":"false","facing":"west"},"Name":"minecraft:creeper_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"powered":"true","facing":"east"},"Name":"minecraft:creeper_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"powered":"false","facing":"east"},"Name":"minecraft:creeper_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"rotation":"0","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"1","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"2","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"3","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"4","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"5","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"6","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"7","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"8","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"9","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"10","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"11","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"12","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"13","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"14","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"15","powered":"true"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"0","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"1","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"2","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"3","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"4","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"5","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"6","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"7","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"8","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"9","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"10","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"11","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"12","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"13","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"14","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"15","powered":"false"},"Name":"minecraft:dragon_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"powered":"true","facing":"north"},"Name":"minecraft:dragon_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"powered":"false","facing":"north"},"Name":"minecraft:dragon_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"powered":"true","facing":"south"},"Name":"minecraft:dragon_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"powered":"false","facing":"south"},"Name":"minecraft:dragon_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"powered":"true","facing":"west"},"Name":"minecraft:dragon_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"powered":"false","facing":"west"},"Name":"minecraft:dragon_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"powered":"true","facing":"east"},"Name":"minecraft:dragon_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"powered":"false","facing":"east"},"Name":"minecraft:dragon_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"rotation":"0","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"1","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"2","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"3","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"4","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"5","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"6","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"7","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"8","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"9","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"10","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"11","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"12","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"13","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"14","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"15","powered":"true"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"0","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"1","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"2","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"3","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"4","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"5","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"6","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"7","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"8","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"9","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"10","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"11","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"12","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"13","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"14","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"rotation":"15","powered":"false"},"Name":"minecraft:piglin_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"powered":"true","facing":"north"},"Name":"minecraft:piglin_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"powered":"false","facing":"north"},"Name":"minecraft:piglin_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"powered":"true","facing":"south"},"Name":"minecraft:piglin_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"powered":"false","facing":"south"},"Name":"minecraft:piglin_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"powered":"true","facing":"west"},"Name":"minecraft:piglin_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"powered":"false","facing":"west"},"Name":"minecraft:piglin_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"powered":"true","facing":"east"},"Name":"minecraft:piglin_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"powered":"false","facing":"east"},"Name":"minecraft:piglin_wall_head"},"bedrock_state":{"bedrock_identifier":"skull","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:anvil"},"bedrock_state":{"bedrock_identifier":"anvil","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:anvil"},"bedrock_state":{"bedrock_identifier":"anvil","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:anvil"},"bedrock_state":{"bedrock_identifier":"anvil","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:anvil"},"bedrock_state":{"bedrock_identifier":"anvil","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:chipped_anvil"},"bedrock_state":{"bedrock_identifier":"chipped_anvil","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:chipped_anvil"},"bedrock_state":{"bedrock_identifier":"chipped_anvil","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:chipped_anvil"},"bedrock_state":{"bedrock_identifier":"chipped_anvil","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:chipped_anvil"},"bedrock_state":{"bedrock_identifier":"chipped_anvil","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:damaged_anvil"},"bedrock_state":{"bedrock_identifier":"damaged_anvil","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:damaged_anvil"},"bedrock_state":{"bedrock_identifier":"damaged_anvil","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:damaged_anvil"},"bedrock_state":{"bedrock_identifier":"damaged_anvil","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:damaged_anvil"},"bedrock_state":{"bedrock_identifier":"damaged_anvil","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"single","facing":"north"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"single","facing":"north"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"left","facing":"north"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"left","facing":"north"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"right","facing":"north"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"right","facing":"north"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"single","facing":"south"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"single","facing":"south"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"left","facing":"south"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"left","facing":"south"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"right","facing":"south"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"right","facing":"south"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"single","facing":"west"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"single","facing":"west"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"left","facing":"west"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"left","facing":"west"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"right","facing":"west"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"right","facing":"west"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"single","facing":"east"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"single","facing":"east"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"left","facing":"east"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"left","facing":"east"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"right","facing":"east"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"right","facing":"east"},"Name":"minecraft:trapped_chest"},"bedrock_state":{"bedrock_identifier":"trapped_chest","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"power":"0"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"power":"1"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"power":"2"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"power":"3"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"power":"4"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"power":"5"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"power":"6"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"power":"7"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"power":"8"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"power":"9"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"power":"10"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"power":"11"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"power":"12"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"power":"13"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"power":"14"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"power":"15"},"Name":"minecraft:light_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"light_weighted_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"power":"0"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"power":"1"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"power":"2"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"power":"3"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"power":"4"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"power":"5"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"power":"6"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"power":"7"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"power":"8"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"power":"9"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"power":"10"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"power":"11"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"power":"12"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"power":"13"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"power":"14"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"power":"15"},"Name":"minecraft:heavy_weighted_pressure_plate"},"bedrock_state":{"bedrock_identifier":"heavy_weighted_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"powered":"true","mode":"compare","facing":"north"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"powered_comparator","state":{"output_subtract_bit":false,"minecraft:cardinal_direction":"north","output_lit_bit":true }}},{"java_state":{"Properties":{"powered":"false","mode":"compare","facing":"north"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"unpowered_comparator","state":{"output_subtract_bit":false,"minecraft:cardinal_direction":"north","output_lit_bit":false }}},{"java_state":{"Properties":{"powered":"true","mode":"subtract","facing":"north"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"powered_comparator","state":{"output_subtract_bit":true,"minecraft:cardinal_direction":"north","output_lit_bit":true }}},{"java_state":{"Properties":{"powered":"false","mode":"subtract","facing":"north"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"unpowered_comparator","state":{"output_subtract_bit":true,"minecraft:cardinal_direction":"north","output_lit_bit":false }}},{"java_state":{"Properties":{"powered":"true","mode":"compare","facing":"south"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"powered_comparator","state":{"output_subtract_bit":false,"minecraft:cardinal_direction":"south","output_lit_bit":true }}},{"java_state":{"Properties":{"powered":"false","mode":"compare","facing":"south"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"unpowered_comparator","state":{"output_subtract_bit":false,"minecraft:cardinal_direction":"south","output_lit_bit":false }}},{"java_state":{"Properties":{"powered":"true","mode":"subtract","facing":"south"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"powered_comparator","state":{"output_subtract_bit":true,"minecraft:cardinal_direction":"south","output_lit_bit":true }}},{"java_state":{"Properties":{"powered":"false","mode":"subtract","facing":"south"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"unpowered_comparator","state":{"output_subtract_bit":true,"minecraft:cardinal_direction":"south","output_lit_bit":false }}},{"java_state":{"Properties":{"powered":"true","mode":"compare","facing":"west"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"powered_comparator","state":{"output_subtract_bit":false,"minecraft:cardinal_direction":"west","output_lit_bit":true }}},{"java_state":{"Properties":{"powered":"false","mode":"compare","facing":"west"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"unpowered_comparator","state":{"output_subtract_bit":false,"minecraft:cardinal_direction":"west","output_lit_bit":false }}},{"java_state":{"Properties":{"powered":"true","mode":"subtract","facing":"west"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"powered_comparator","state":{"output_subtract_bit":true,"minecraft:cardinal_direction":"west","output_lit_bit":true }}},{"java_state":{"Properties":{"powered":"false","mode":"subtract","facing":"west"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"unpowered_comparator","state":{"output_subtract_bit":true,"minecraft:cardinal_direction":"west","output_lit_bit":false }}},{"java_state":{"Properties":{"powered":"true","mode":"compare","facing":"east"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"powered_comparator","state":{"output_subtract_bit":false,"minecraft:cardinal_direction":"east","output_lit_bit":true }}},{"java_state":{"Properties":{"powered":"false","mode":"compare","facing":"east"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"unpowered_comparator","state":{"output_subtract_bit":false,"minecraft:cardinal_direction":"east","output_lit_bit":false }}},{"java_state":{"Properties":{"powered":"true","mode":"subtract","facing":"east"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"powered_comparator","state":{"output_subtract_bit":true,"minecraft:cardinal_direction":"east","output_lit_bit":true }}},{"java_state":{"Properties":{"powered":"false","mode":"subtract","facing":"east"},"Name":"minecraft:comparator"},"bedrock_state":{"bedrock_identifier":"unpowered_comparator","state":{"output_subtract_bit":true,"minecraft:cardinal_direction":"east","output_lit_bit":false }}},{"java_state":{"Properties":{"power":"0","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"power":"1","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"power":"2","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"power":"3","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"power":"4","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"power":"5","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"power":"6","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"power":"7","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"power":"8","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"power":"9","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"power":"10","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"power":"11","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"power":"12","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"power":"13","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"power":"14","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"power":"15","inverted":"true"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector_inverted","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"power":"0","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"power":"1","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":1 }}},{"java_state":{"Properties":{"power":"2","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":2 }}},{"java_state":{"Properties":{"power":"3","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":3 }}},{"java_state":{"Properties":{"power":"4","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":4 }}},{"java_state":{"Properties":{"power":"5","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":5 }}},{"java_state":{"Properties":{"power":"6","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":6 }}},{"java_state":{"Properties":{"power":"7","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":7 }}},{"java_state":{"Properties":{"power":"8","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":8 }}},{"java_state":{"Properties":{"power":"9","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":9 }}},{"java_state":{"Properties":{"power":"10","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":10 }}},{"java_state":{"Properties":{"power":"11","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":11 }}},{"java_state":{"Properties":{"power":"12","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":12 }}},{"java_state":{"Properties":{"power":"13","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":13 }}},{"java_state":{"Properties":{"power":"14","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":14 }}},{"java_state":{"Properties":{"power":"15","inverted":"false"},"Name":"minecraft:daylight_detector"},"bedrock_state":{"bedrock_identifier":"daylight_detector","state":{"redstone_signal":15 }}},{"java_state":{"Name":"minecraft:redstone_block"},"bedrock_state":{"bedrock_identifier":"redstone_block"}},{"java_state":{"Name":"minecraft:nether_quartz_ore"},"bedrock_state":{"bedrock_identifier":"quartz_ore"}},{"java_state":{"Properties":{"facing":"down","enabled":"true"},"Name":"minecraft:hopper"},"bedrock_state":{"bedrock_identifier":"hopper","state":{"facing_direction":0,"toggle_bit":true }}},{"java_state":{"Properties":{"facing":"north","enabled":"true"},"Name":"minecraft:hopper"},"bedrock_state":{"bedrock_identifier":"hopper","state":{"facing_direction":2,"toggle_bit":true }}},{"java_state":{"Properties":{"facing":"south","enabled":"true"},"Name":"minecraft:hopper"},"bedrock_state":{"bedrock_identifier":"hopper","state":{"facing_direction":3,"toggle_bit":true }}},{"java_state":{"Properties":{"facing":"west","enabled":"true"},"Name":"minecraft:hopper"},"bedrock_state":{"bedrock_identifier":"hopper","state":{"facing_direction":4,"toggle_bit":true }}},{"java_state":{"Properties":{"facing":"east","enabled":"true"},"Name":"minecraft:hopper"},"bedrock_state":{"bedrock_identifier":"hopper","state":{"facing_direction":5,"toggle_bit":true }}},{"java_state":{"Properties":{"facing":"down","enabled":"false"},"Name":"minecraft:hopper"},"bedrock_state":{"bedrock_identifier":"hopper","state":{"facing_direction":0,"toggle_bit":false }}},{"java_state":{"Properties":{"facing":"north","enabled":"false"},"Name":"minecraft:hopper"},"bedrock_state":{"bedrock_identifier":"hopper","state":{"facing_direction":2,"toggle_bit":false }}},{"java_state":{"Properties":{"facing":"south","enabled":"false"},"Name":"minecraft:hopper"},"bedrock_state":{"bedrock_identifier":"hopper","state":{"facing_direction":3,"toggle_bit":false }}},{"java_state":{"Properties":{"facing":"west","enabled":"false"},"Name":"minecraft:hopper"},"bedrock_state":{"bedrock_identifier":"hopper","state":{"facing_direction":4,"toggle_bit":false }}},{"java_state":{"Properties":{"facing":"east","enabled":"false"},"Name":"minecraft:hopper"},"bedrock_state":{"bedrock_identifier":"hopper","state":{"facing_direction":5,"toggle_bit":false }}},{"java_state":{"Name":"minecraft:quartz_block"},"bedrock_state":{"bedrock_identifier":"quartz_block","state":{"pillar_axis":"y"}}},{"java_state":{"Name":"minecraft:chiseled_quartz_block"},"bedrock_state":{"bedrock_identifier":"chiseled_quartz_block","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:quartz_pillar"},"bedrock_state":{"bedrock_identifier":"quartz_pillar","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:quartz_pillar"},"bedrock_state":{"bedrock_identifier":"quartz_pillar","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:quartz_pillar"},"bedrock_state":{"bedrock_identifier":"quartz_pillar","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:quartz_stairs"},"bedrock_state":{"bedrock_identifier":"quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"north_south","powered":"true"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":0,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"north_south","powered":"true"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":0,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"east_west","powered":"true"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":1,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"east_west","powered":"true"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":1,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_east","powered":"true"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":2,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_east","powered":"true"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":2,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_west","powered":"true"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":3,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_west","powered":"true"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":3,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_north","powered":"true"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":4,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_north","powered":"true"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":4,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_south","powered":"true"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":5,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_south","powered":"true"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":5,"rail_data_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"north_south","powered":"false"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":0,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"north_south","powered":"false"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":0,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"east_west","powered":"false"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":1,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"east_west","powered":"false"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":1,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_east","powered":"false"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":2,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_east","powered":"false"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":2,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_west","powered":"false"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":3,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_west","powered":"false"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":3,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_north","powered":"false"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":4,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_north","powered":"false"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":4,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"ascending_south","powered":"false"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":5,"rail_data_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"ascending_south","powered":"false"},"Name":"minecraft:activator_rail"},"bedrock_state":{"bedrock_identifier":"activator_rail","state":{"rail_direction":5,"rail_data_bit":false }}},{"java_state":{"Properties":{"triggered":"true","facing":"north"},"Name":"minecraft:dropper"},"bedrock_state":{"bedrock_identifier":"dropper","state":{"facing_direction":2,"triggered_bit":true }}},{"java_state":{"Properties":{"triggered":"false","facing":"north"},"Name":"minecraft:dropper"},"bedrock_state":{"bedrock_identifier":"dropper","state":{"facing_direction":2,"triggered_bit":false }}},{"java_state":{"Properties":{"triggered":"true","facing":"east"},"Name":"minecraft:dropper"},"bedrock_state":{"bedrock_identifier":"dropper","state":{"facing_direction":5,"triggered_bit":true }}},{"java_state":{"Properties":{"triggered":"false","facing":"east"},"Name":"minecraft:dropper"},"bedrock_state":{"bedrock_identifier":"dropper","state":{"facing_direction":5,"triggered_bit":false }}},{"java_state":{"Properties":{"triggered":"true","facing":"south"},"Name":"minecraft:dropper"},"bedrock_state":{"bedrock_identifier":"dropper","state":{"facing_direction":3,"triggered_bit":true }}},{"java_state":{"Properties":{"triggered":"false","facing":"south"},"Name":"minecraft:dropper"},"bedrock_state":{"bedrock_identifier":"dropper","state":{"facing_direction":3,"triggered_bit":false }}},{"java_state":{"Properties":{"triggered":"true","facing":"west"},"Name":"minecraft:dropper"},"bedrock_state":{"bedrock_identifier":"dropper","state":{"facing_direction":4,"triggered_bit":true }}},{"java_state":{"Properties":{"triggered":"false","facing":"west"},"Name":"minecraft:dropper"},"bedrock_state":{"bedrock_identifier":"dropper","state":{"facing_direction":4,"triggered_bit":false }}},{"java_state":{"Properties":{"triggered":"true","facing":"up"},"Name":"minecraft:dropper"},"bedrock_state":{"bedrock_identifier":"dropper","state":{"facing_direction":1,"triggered_bit":true }}},{"java_state":{"Properties":{"triggered":"false","facing":"up"},"Name":"minecraft:dropper"},"bedrock_state":{"bedrock_identifier":"dropper","state":{"facing_direction":1,"triggered_bit":false }}},{"java_state":{"Properties":{"triggered":"true","facing":"down"},"Name":"minecraft:dropper"},"bedrock_state":{"bedrock_identifier":"dropper","state":{"facing_direction":0,"triggered_bit":true }}},{"java_state":{"Properties":{"triggered":"false","facing":"down"},"Name":"minecraft:dropper"},"bedrock_state":{"bedrock_identifier":"dropper","state":{"facing_direction":0,"triggered_bit":false }}},{"java_state":{"Name":"minecraft:white_terracotta"},"bedrock_state":{"bedrock_identifier":"white_terracotta"}},{"java_state":{"Name":"minecraft:orange_terracotta"},"bedrock_state":{"bedrock_identifier":"orange_terracotta"}},{"java_state":{"Name":"minecraft:magenta_terracotta"},"bedrock_state":{"bedrock_identifier":"magenta_terracotta"}},{"java_state":{"Name":"minecraft:light_blue_terracotta"},"bedrock_state":{"bedrock_identifier":"light_blue_terracotta"}},{"java_state":{"Name":"minecraft:yellow_terracotta"},"bedrock_state":{"bedrock_identifier":"yellow_terracotta"}},{"java_state":{"Name":"minecraft:lime_terracotta"},"bedrock_state":{"bedrock_identifier":"lime_terracotta"}},{"java_state":{"Name":"minecraft:pink_terracotta"},"bedrock_state":{"bedrock_identifier":"pink_terracotta"}},{"java_state":{"Name":"minecraft:gray_terracotta"},"bedrock_state":{"bedrock_identifier":"gray_terracotta"}},{"java_state":{"Name":"minecraft:light_gray_terracotta"},"bedrock_state":{"bedrock_identifier":"light_gray_terracotta"}},{"java_state":{"Name":"minecraft:cyan_terracotta"},"bedrock_state":{"bedrock_identifier":"cyan_terracotta"}},{"java_state":{"Name":"minecraft:purple_terracotta"},"bedrock_state":{"bedrock_identifier":"purple_terracotta"}},{"java_state":{"Name":"minecraft:blue_terracotta"},"bedrock_state":{"bedrock_identifier":"blue_terracotta"}},{"java_state":{"Name":"minecraft:brown_terracotta"},"bedrock_state":{"bedrock_identifier":"brown_terracotta"}},{"java_state":{"Name":"minecraft:green_terracotta"},"bedrock_state":{"bedrock_identifier":"green_terracotta"}},{"java_state":{"Name":"minecraft:red_terracotta"},"bedrock_state":{"bedrock_identifier":"red_terracotta"}},{"java_state":{"Name":"minecraft:black_terracotta"},"bedrock_state":{"bedrock_identifier":"black_terracotta"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:white_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"white_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:orange_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"orange_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:magenta_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"magenta_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:light_blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:yellow_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"yellow_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:lime_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"lime_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:pink_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"pink_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:light_gray_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"light_gray_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:cyan_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"cyan_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:purple_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"purple_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:blue_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"blue_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:brown_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"brown_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:green_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"green_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:red_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"red_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:black_stained_glass_pane"},"bedrock_state":{"bedrock_identifier":"black_stained_glass_pane"}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:acacia_stairs"},"bedrock_state":{"bedrock_identifier":"acacia_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:cherry_stairs"},"bedrock_state":{"bedrock_identifier":"cherry_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:dark_oak_stairs"},"bedrock_state":{"bedrock_identifier":"dark_oak_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:mangrove_stairs"},"bedrock_state":{"bedrock_identifier":"mangrove_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:bamboo_mosaic_stairs"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Name":"minecraft:slime_block"},"bedrock_state":{"bedrock_identifier":"slime"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:barrier"},"bedrock_state":{"bedrock_identifier":"barrier"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:barrier"},"bedrock_state":{"bedrock_identifier":"barrier"}},{"java_state":{"Properties":{"waterlogged":"true","level":"0"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_0"}},{"java_state":{"Properties":{"waterlogged":"false","level":"0"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_0"}},{"java_state":{"Properties":{"waterlogged":"true","level":"1"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_1"}},{"java_state":{"Properties":{"waterlogged":"false","level":"1"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_1"}},{"java_state":{"Properties":{"waterlogged":"true","level":"2"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_2"}},{"java_state":{"Properties":{"waterlogged":"false","level":"2"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_2"}},{"java_state":{"Properties":{"waterlogged":"true","level":"3"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_3"}},{"java_state":{"Properties":{"waterlogged":"false","level":"3"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_3"}},{"java_state":{"Properties":{"waterlogged":"true","level":"4"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_4"}},{"java_state":{"Properties":{"waterlogged":"false","level":"4"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_4"}},{"java_state":{"Properties":{"waterlogged":"true","level":"5"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_5"}},{"java_state":{"Properties":{"waterlogged":"false","level":"5"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_5"}},{"java_state":{"Properties":{"waterlogged":"true","level":"6"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_6"}},{"java_state":{"Properties":{"waterlogged":"false","level":"6"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_6"}},{"java_state":{"Properties":{"waterlogged":"true","level":"7"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_7"}},{"java_state":{"Properties":{"waterlogged":"false","level":"7"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_7"}},{"java_state":{"Properties":{"waterlogged":"true","level":"8"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_8"}},{"java_state":{"Properties":{"waterlogged":"false","level":"8"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_8"}},{"java_state":{"Properties":{"waterlogged":"true","level":"9"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_9"}},{"java_state":{"Properties":{"waterlogged":"false","level":"9"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_9"}},{"java_state":{"Properties":{"waterlogged":"true","level":"10"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_10"}},{"java_state":{"Properties":{"waterlogged":"false","level":"10"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_10"}},{"java_state":{"Properties":{"waterlogged":"true","level":"11"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_11"}},{"java_state":{"Properties":{"waterlogged":"false","level":"11"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_11"}},{"java_state":{"Properties":{"waterlogged":"true","level":"12"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_12"}},{"java_state":{"Properties":{"waterlogged":"false","level":"12"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_12"}},{"java_state":{"Properties":{"waterlogged":"true","level":"13"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_13"}},{"java_state":{"Properties":{"waterlogged":"false","level":"13"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_13"}},{"java_state":{"Properties":{"waterlogged":"true","level":"14"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_14"}},{"java_state":{"Properties":{"waterlogged":"false","level":"14"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_14"}},{"java_state":{"Properties":{"waterlogged":"true","level":"15"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_15"}},{"java_state":{"Properties":{"waterlogged":"false","level":"15"},"Name":"minecraft:light"},"bedrock_state":{"bedrock_identifier":"light_block_15"}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:iron_trapdoor"},"bedrock_state":{"bedrock_identifier":"iron_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Name":"minecraft:prismarine"},"bedrock_state":{"bedrock_identifier":"prismarine"}},{"java_state":{"Name":"minecraft:prismarine_bricks"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks"}},{"java_state":{"Name":"minecraft:dark_prismarine"},"bedrock_state":{"bedrock_identifier":"dark_prismarine"}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:prismarine_brick_stairs"},"bedrock_state":{"bedrock_identifier":"prismarine_bricks_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:dark_prismarine_stairs"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:prismarine_slab"},"bedrock_state":{"bedrock_identifier":"prismarine_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:prismarine_slab"},"bedrock_state":{"bedrock_identifier":"prismarine_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:prismarine_slab"},"bedrock_state":{"bedrock_identifier":"prismarine_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:prismarine_slab"},"bedrock_state":{"bedrock_identifier":"prismarine_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:prismarine_slab"},"bedrock_state":{"bedrock_identifier":"prismarine_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:prismarine_slab"},"bedrock_state":{"bedrock_identifier":"prismarine_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:prismarine_brick_slab"},"bedrock_state":{"bedrock_identifier":"prismarine_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:prismarine_brick_slab"},"bedrock_state":{"bedrock_identifier":"prismarine_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:prismarine_brick_slab"},"bedrock_state":{"bedrock_identifier":"prismarine_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:prismarine_brick_slab"},"bedrock_state":{"bedrock_identifier":"prismarine_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:prismarine_brick_slab"},"bedrock_state":{"bedrock_identifier":"prismarine_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:prismarine_brick_slab"},"bedrock_state":{"bedrock_identifier":"prismarine_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:dark_prismarine_slab"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:dark_prismarine_slab"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:dark_prismarine_slab"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:dark_prismarine_slab"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:dark_prismarine_slab"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:dark_prismarine_slab"},"bedrock_state":{"bedrock_identifier":"dark_prismarine_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Name":"minecraft:sea_lantern"},"bedrock_state":{"bedrock_identifier":"sea_lantern"}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:hay_block"},"bedrock_state":{"bedrock_identifier":"hay_block","state":{"pillar_axis":"x","deprecated":0 }}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:hay_block"},"bedrock_state":{"bedrock_identifier":"hay_block","state":{"pillar_axis":"y","deprecated":0 }}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:hay_block"},"bedrock_state":{"bedrock_identifier":"hay_block","state":{"pillar_axis":"z","deprecated":0 }}},{"java_state":{"Name":"minecraft:white_carpet"},"bedrock_state":{"bedrock_identifier":"white_carpet"}},{"java_state":{"Name":"minecraft:orange_carpet"},"bedrock_state":{"bedrock_identifier":"orange_carpet"}},{"java_state":{"Name":"minecraft:magenta_carpet"},"bedrock_state":{"bedrock_identifier":"magenta_carpet"}},{"java_state":{"Name":"minecraft:light_blue_carpet"},"bedrock_state":{"bedrock_identifier":"light_blue_carpet"}},{"java_state":{"Name":"minecraft:yellow_carpet"},"bedrock_state":{"bedrock_identifier":"yellow_carpet"}},{"java_state":{"Name":"minecraft:lime_carpet"},"bedrock_state":{"bedrock_identifier":"lime_carpet"}},{"java_state":{"Name":"minecraft:pink_carpet"},"bedrock_state":{"bedrock_identifier":"pink_carpet"}},{"java_state":{"Name":"minecraft:gray_carpet"},"bedrock_state":{"bedrock_identifier":"gray_carpet"}},{"java_state":{"Name":"minecraft:light_gray_carpet"},"bedrock_state":{"bedrock_identifier":"light_gray_carpet"}},{"java_state":{"Name":"minecraft:cyan_carpet"},"bedrock_state":{"bedrock_identifier":"cyan_carpet"}},{"java_state":{"Name":"minecraft:purple_carpet"},"bedrock_state":{"bedrock_identifier":"purple_carpet"}},{"java_state":{"Name":"minecraft:blue_carpet"},"bedrock_state":{"bedrock_identifier":"blue_carpet"}},{"java_state":{"Name":"minecraft:brown_carpet"},"bedrock_state":{"bedrock_identifier":"brown_carpet"}},{"java_state":{"Name":"minecraft:green_carpet"},"bedrock_state":{"bedrock_identifier":"green_carpet"}},{"java_state":{"Name":"minecraft:red_carpet"},"bedrock_state":{"bedrock_identifier":"red_carpet"}},{"java_state":{"Name":"minecraft:black_carpet"},"bedrock_state":{"bedrock_identifier":"black_carpet"}},{"java_state":{"Name":"minecraft:terracotta"},"bedrock_state":{"bedrock_identifier":"hardened_clay"}},{"java_state":{"Name":"minecraft:coal_block"},"bedrock_state":{"bedrock_identifier":"coal_block"}},{"java_state":{"Name":"minecraft:packed_ice"},"bedrock_state":{"bedrock_identifier":"packed_ice"}},{"java_state":{"Properties":{"half":"upper"},"Name":"minecraft:sunflower"},"bedrock_state":{"bedrock_identifier":"sunflower","state":{"upper_block_bit":true }}},{"java_state":{"Properties":{"half":"lower"},"Name":"minecraft:sunflower"},"bedrock_state":{"bedrock_identifier":"sunflower","state":{"upper_block_bit":false }}},{"java_state":{"Properties":{"half":"upper"},"Name":"minecraft:lilac"},"bedrock_state":{"bedrock_identifier":"lilac","state":{"upper_block_bit":true }}},{"java_state":{"Properties":{"half":"lower"},"Name":"minecraft:lilac"},"bedrock_state":{"bedrock_identifier":"lilac","state":{"upper_block_bit":false }}},{"java_state":{"Properties":{"half":"upper"},"Name":"minecraft:rose_bush"},"bedrock_state":{"bedrock_identifier":"rose_bush","state":{"upper_block_bit":true }}},{"java_state":{"Properties":{"half":"lower"},"Name":"minecraft:rose_bush"},"bedrock_state":{"bedrock_identifier":"rose_bush","state":{"upper_block_bit":false }}},{"java_state":{"Properties":{"half":"upper"},"Name":"minecraft:peony"},"bedrock_state":{"bedrock_identifier":"peony","state":{"upper_block_bit":true }}},{"java_state":{"Properties":{"half":"lower"},"Name":"minecraft:peony"},"bedrock_state":{"bedrock_identifier":"peony","state":{"upper_block_bit":false }}},{"java_state":{"Properties":{"half":"upper"},"Name":"minecraft:tall_grass"},"bedrock_state":{"bedrock_identifier":"tall_grass","state":{"upper_block_bit":true }}},{"java_state":{"Properties":{"half":"lower"},"Name":"minecraft:tall_grass"},"bedrock_state":{"bedrock_identifier":"tall_grass","state":{"upper_block_bit":false }}},{"java_state":{"Properties":{"half":"upper"},"Name":"minecraft:large_fern"},"bedrock_state":{"bedrock_identifier":"large_fern","state":{"upper_block_bit":true }}},{"java_state":{"Properties":{"half":"lower"},"Name":"minecraft:large_fern"},"bedrock_state":{"bedrock_identifier":"large_fern","state":{"upper_block_bit":false }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:white_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:orange_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:magenta_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:light_blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:yellow_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:lime_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:pink_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:light_gray_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:cyan_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:purple_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:blue_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:brown_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:green_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:red_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"rotation":"0"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"rotation":"1"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"rotation":"2"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"rotation":"3"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"rotation":"4"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"rotation":"5"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"rotation":"6"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"rotation":"7"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"rotation":"8"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"rotation":"9"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"rotation":"10"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"rotation":"11"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"rotation":"12"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"rotation":"13"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"rotation":"14"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"rotation":"15"},"Name":"minecraft:black_banner"},"bedrock_state":{"bedrock_identifier":"standing_banner","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:white_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:white_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:white_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:white_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:orange_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:orange_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:orange_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:orange_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:magenta_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:magenta_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:magenta_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:magenta_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:light_blue_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:light_blue_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:light_blue_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:light_blue_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:yellow_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:yellow_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:yellow_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:yellow_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:lime_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:lime_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:lime_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:lime_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:pink_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:pink_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:pink_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:pink_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:gray_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:gray_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:gray_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:gray_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:light_gray_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:light_gray_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:light_gray_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:light_gray_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:cyan_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:cyan_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:cyan_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:cyan_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:purple_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:purple_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:purple_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:purple_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:blue_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:blue_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:blue_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:blue_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:brown_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:brown_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:brown_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:brown_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:green_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:green_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:green_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:green_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:red_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:red_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:red_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:red_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:black_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:black_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:black_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:black_wall_banner"},"bedrock_state":{"bedrock_identifier":"wall_banner","state":{"facing_direction":5 }}},{"java_state":{"Name":"minecraft:red_sandstone"},"bedrock_state":{"bedrock_identifier":"red_sandstone"}},{"java_state":{"Name":"minecraft:chiseled_red_sandstone"},"bedrock_state":{"bedrock_identifier":"chiseled_red_sandstone"}},{"java_state":{"Name":"minecraft:cut_red_sandstone"},"bedrock_state":{"bedrock_identifier":"cut_red_sandstone"}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:oak_slab"},"bedrock_state":{"bedrock_identifier":"oak_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:oak_slab"},"bedrock_state":{"bedrock_identifier":"oak_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:oak_slab"},"bedrock_state":{"bedrock_identifier":"oak_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:oak_slab"},"bedrock_state":{"bedrock_identifier":"oak_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:oak_slab"},"bedrock_state":{"bedrock_identifier":"oak_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:oak_slab"},"bedrock_state":{"bedrock_identifier":"oak_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:spruce_slab"},"bedrock_state":{"bedrock_identifier":"spruce_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:spruce_slab"},"bedrock_state":{"bedrock_identifier":"spruce_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:spruce_slab"},"bedrock_state":{"bedrock_identifier":"spruce_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:spruce_slab"},"bedrock_state":{"bedrock_identifier":"spruce_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:spruce_slab"},"bedrock_state":{"bedrock_identifier":"spruce_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:spruce_slab"},"bedrock_state":{"bedrock_identifier":"spruce_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:birch_slab"},"bedrock_state":{"bedrock_identifier":"birch_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:birch_slab"},"bedrock_state":{"bedrock_identifier":"birch_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:birch_slab"},"bedrock_state":{"bedrock_identifier":"birch_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:birch_slab"},"bedrock_state":{"bedrock_identifier":"birch_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:birch_slab"},"bedrock_state":{"bedrock_identifier":"birch_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:birch_slab"},"bedrock_state":{"bedrock_identifier":"birch_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:jungle_slab"},"bedrock_state":{"bedrock_identifier":"jungle_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:jungle_slab"},"bedrock_state":{"bedrock_identifier":"jungle_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:jungle_slab"},"bedrock_state":{"bedrock_identifier":"jungle_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:jungle_slab"},"bedrock_state":{"bedrock_identifier":"jungle_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:jungle_slab"},"bedrock_state":{"bedrock_identifier":"jungle_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:jungle_slab"},"bedrock_state":{"bedrock_identifier":"jungle_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:acacia_slab"},"bedrock_state":{"bedrock_identifier":"acacia_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:acacia_slab"},"bedrock_state":{"bedrock_identifier":"acacia_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:acacia_slab"},"bedrock_state":{"bedrock_identifier":"acacia_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:acacia_slab"},"bedrock_state":{"bedrock_identifier":"acacia_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:acacia_slab"},"bedrock_state":{"bedrock_identifier":"acacia_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:acacia_slab"},"bedrock_state":{"bedrock_identifier":"acacia_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:cherry_slab"},"bedrock_state":{"bedrock_identifier":"cherry_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:cherry_slab"},"bedrock_state":{"bedrock_identifier":"cherry_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:cherry_slab"},"bedrock_state":{"bedrock_identifier":"cherry_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:cherry_slab"},"bedrock_state":{"bedrock_identifier":"cherry_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:cherry_slab"},"bedrock_state":{"bedrock_identifier":"cherry_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:cherry_slab"},"bedrock_state":{"bedrock_identifier":"cherry_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:dark_oak_slab"},"bedrock_state":{"bedrock_identifier":"dark_oak_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:dark_oak_slab"},"bedrock_state":{"bedrock_identifier":"dark_oak_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:dark_oak_slab"},"bedrock_state":{"bedrock_identifier":"dark_oak_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:dark_oak_slab"},"bedrock_state":{"bedrock_identifier":"dark_oak_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:dark_oak_slab"},"bedrock_state":{"bedrock_identifier":"dark_oak_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:dark_oak_slab"},"bedrock_state":{"bedrock_identifier":"dark_oak_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:mangrove_slab"},"bedrock_state":{"bedrock_identifier":"mangrove_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:mangrove_slab"},"bedrock_state":{"bedrock_identifier":"mangrove_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:mangrove_slab"},"bedrock_state":{"bedrock_identifier":"mangrove_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:mangrove_slab"},"bedrock_state":{"bedrock_identifier":"mangrove_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:mangrove_slab"},"bedrock_state":{"bedrock_identifier":"mangrove_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:mangrove_slab"},"bedrock_state":{"bedrock_identifier":"mangrove_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:bamboo_slab"},"bedrock_state":{"bedrock_identifier":"bamboo_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:bamboo_slab"},"bedrock_state":{"bedrock_identifier":"bamboo_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:bamboo_slab"},"bedrock_state":{"bedrock_identifier":"bamboo_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:bamboo_slab"},"bedrock_state":{"bedrock_identifier":"bamboo_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:bamboo_slab"},"bedrock_state":{"bedrock_identifier":"bamboo_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:bamboo_slab"},"bedrock_state":{"bedrock_identifier":"bamboo_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:bamboo_mosaic_slab"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:bamboo_mosaic_slab"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:bamboo_mosaic_slab"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:bamboo_mosaic_slab"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:bamboo_mosaic_slab"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:bamboo_mosaic_slab"},"bedrock_state":{"bedrock_identifier":"bamboo_mosaic_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:stone_slab"},"bedrock_state":{"bedrock_identifier":"normal_stone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:stone_slab"},"bedrock_state":{"bedrock_identifier":"normal_stone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:stone_slab"},"bedrock_state":{"bedrock_identifier":"normal_stone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:stone_slab"},"bedrock_state":{"bedrock_identifier":"normal_stone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:stone_slab"},"bedrock_state":{"bedrock_identifier":"normal_stone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:stone_slab"},"bedrock_state":{"bedrock_identifier":"normal_stone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:smooth_stone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_stone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:smooth_stone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_stone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:smooth_stone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_stone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:smooth_stone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_stone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:smooth_stone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_stone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:smooth_stone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_stone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:sandstone_slab"},"bedrock_state":{"bedrock_identifier":"sandstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:sandstone_slab"},"bedrock_state":{"bedrock_identifier":"sandstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:sandstone_slab"},"bedrock_state":{"bedrock_identifier":"sandstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:sandstone_slab"},"bedrock_state":{"bedrock_identifier":"sandstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:sandstone_slab"},"bedrock_state":{"bedrock_identifier":"sandstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:sandstone_slab"},"bedrock_state":{"bedrock_identifier":"sandstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:cut_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"cut_sandstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:cut_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"cut_sandstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:cut_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"cut_sandstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:cut_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"cut_sandstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:cut_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"cut_sandstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:cut_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"cut_sandstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:petrified_oak_slab"},"bedrock_state":{"bedrock_identifier":"petrified_oak_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:petrified_oak_slab"},"bedrock_state":{"bedrock_identifier":"petrified_oak_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:petrified_oak_slab"},"bedrock_state":{"bedrock_identifier":"petrified_oak_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:petrified_oak_slab"},"bedrock_state":{"bedrock_identifier":"petrified_oak_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:petrified_oak_slab"},"bedrock_state":{"bedrock_identifier":"petrified_oak_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:petrified_oak_slab"},"bedrock_state":{"bedrock_identifier":"petrified_oak_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:cobblestone_slab"},"bedrock_state":{"bedrock_identifier":"cobblestone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:cobblestone_slab"},"bedrock_state":{"bedrock_identifier":"cobblestone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:cobblestone_slab"},"bedrock_state":{"bedrock_identifier":"cobblestone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:cobblestone_slab"},"bedrock_state":{"bedrock_identifier":"cobblestone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:cobblestone_slab"},"bedrock_state":{"bedrock_identifier":"cobblestone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:cobblestone_slab"},"bedrock_state":{"bedrock_identifier":"cobblestone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:brick_slab"},"bedrock_state":{"bedrock_identifier":"brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:brick_slab"},"bedrock_state":{"bedrock_identifier":"brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:brick_slab"},"bedrock_state":{"bedrock_identifier":"brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:brick_slab"},"bedrock_state":{"bedrock_identifier":"brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:brick_slab"},"bedrock_state":{"bedrock_identifier":"brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:brick_slab"},"bedrock_state":{"bedrock_identifier":"brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"stone_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"stone_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"stone_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"stone_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"stone_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"stone_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:mud_brick_slab"},"bedrock_state":{"bedrock_identifier":"mud_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:mud_brick_slab"},"bedrock_state":{"bedrock_identifier":"mud_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:mud_brick_slab"},"bedrock_state":{"bedrock_identifier":"mud_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:mud_brick_slab"},"bedrock_state":{"bedrock_identifier":"mud_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:mud_brick_slab"},"bedrock_state":{"bedrock_identifier":"mud_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:mud_brick_slab"},"bedrock_state":{"bedrock_identifier":"mud_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:nether_brick_slab"},"bedrock_state":{"bedrock_identifier":"nether_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:nether_brick_slab"},"bedrock_state":{"bedrock_identifier":"nether_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:nether_brick_slab"},"bedrock_state":{"bedrock_identifier":"nether_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:nether_brick_slab"},"bedrock_state":{"bedrock_identifier":"nether_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:nether_brick_slab"},"bedrock_state":{"bedrock_identifier":"nether_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:nether_brick_slab"},"bedrock_state":{"bedrock_identifier":"nether_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:quartz_slab"},"bedrock_state":{"bedrock_identifier":"quartz_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:quartz_slab"},"bedrock_state":{"bedrock_identifier":"quartz_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:quartz_slab"},"bedrock_state":{"bedrock_identifier":"quartz_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:quartz_slab"},"bedrock_state":{"bedrock_identifier":"quartz_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:quartz_slab"},"bedrock_state":{"bedrock_identifier":"quartz_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:quartz_slab"},"bedrock_state":{"bedrock_identifier":"quartz_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"red_sandstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"red_sandstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"red_sandstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"red_sandstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"red_sandstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"red_sandstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:cut_red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"cut_red_sandstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:cut_red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"cut_red_sandstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:cut_red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"cut_red_sandstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:cut_red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"cut_red_sandstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:cut_red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"cut_red_sandstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:cut_red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"cut_red_sandstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:purpur_slab"},"bedrock_state":{"bedrock_identifier":"purpur_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:purpur_slab"},"bedrock_state":{"bedrock_identifier":"purpur_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:purpur_slab"},"bedrock_state":{"bedrock_identifier":"purpur_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:purpur_slab"},"bedrock_state":{"bedrock_identifier":"purpur_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:purpur_slab"},"bedrock_state":{"bedrock_identifier":"purpur_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:purpur_slab"},"bedrock_state":{"bedrock_identifier":"purpur_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Name":"minecraft:smooth_stone"},"bedrock_state":{"bedrock_identifier":"smooth_stone"}},{"java_state":{"Name":"minecraft:smooth_sandstone"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone"}},{"java_state":{"Name":"minecraft:smooth_quartz"},"bedrock_state":{"bedrock_identifier":"smooth_quartz","state":{"pillar_axis":"y"}}},{"java_state":{"Name":"minecraft:smooth_red_sandstone"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone"}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:spruce_fence_gate"},"bedrock_state":{"bedrock_identifier":"spruce_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:birch_fence_gate"},"bedrock_state":{"bedrock_identifier":"birch_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:jungle_fence_gate"},"bedrock_state":{"bedrock_identifier":"jungle_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:acacia_fence_gate"},"bedrock_state":{"bedrock_identifier":"acacia_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:cherry_fence_gate"},"bedrock_state":{"bedrock_identifier":"cherry_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:dark_oak_fence_gate"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:mangrove_fence_gate"},"bedrock_state":{"bedrock_identifier":"mangrove_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:bamboo_fence_gate"},"bedrock_state":{"bedrock_identifier":"bamboo_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:spruce_fence"},"bedrock_state":{"bedrock_identifier":"spruce_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:birch_fence"},"bedrock_state":{"bedrock_identifier":"birch_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:jungle_fence"},"bedrock_state":{"bedrock_identifier":"jungle_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:acacia_fence"},"bedrock_state":{"bedrock_identifier":"acacia_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:cherry_fence"},"bedrock_state":{"bedrock_identifier":"cherry_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:dark_oak_fence"},"bedrock_state":{"bedrock_identifier":"dark_oak_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:mangrove_fence"},"bedrock_state":{"bedrock_identifier":"mangrove_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:bamboo_fence"},"bedrock_state":{"bedrock_identifier":"bamboo_fence"}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:spruce_door"},"bedrock_state":{"bedrock_identifier":"spruce_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:birch_door"},"bedrock_state":{"bedrock_identifier":"birch_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:jungle_door"},"bedrock_state":{"bedrock_identifier":"jungle_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:acacia_door"},"bedrock_state":{"bedrock_identifier":"acacia_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:cherry_door"},"bedrock_state":{"bedrock_identifier":"cherry_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:dark_oak_door"},"bedrock_state":{"bedrock_identifier":"dark_oak_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:mangrove_door"},"bedrock_state":{"bedrock_identifier":"mangrove_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:bamboo_door"},"bedrock_state":{"bedrock_identifier":"bamboo_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:end_rod"},"bedrock_state":{"bedrock_identifier":"end_rod","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:end_rod"},"bedrock_state":{"bedrock_identifier":"end_rod","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:end_rod"},"bedrock_state":{"bedrock_identifier":"end_rod","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:end_rod"},"bedrock_state":{"bedrock_identifier":"end_rod","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:end_rod"},"bedrock_state":{"bedrock_identifier":"end_rod","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:end_rod"},"bedrock_state":{"bedrock_identifier":"end_rod","state":{"facing_direction":0 }}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"true","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"west":"false","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:chorus_plant"},"bedrock_state":{"bedrock_identifier":"chorus_plant"}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:chorus_flower"},"bedrock_state":{"bedrock_identifier":"chorus_flower","state":{"age":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:chorus_flower"},"bedrock_state":{"bedrock_identifier":"chorus_flower","state":{"age":1 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:chorus_flower"},"bedrock_state":{"bedrock_identifier":"chorus_flower","state":{"age":2 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:chorus_flower"},"bedrock_state":{"bedrock_identifier":"chorus_flower","state":{"age":3 }}},{"java_state":{"Properties":{"age":"4"},"Name":"minecraft:chorus_flower"},"bedrock_state":{"bedrock_identifier":"chorus_flower","state":{"age":4 }}},{"java_state":{"Properties":{"age":"5"},"Name":"minecraft:chorus_flower"},"bedrock_state":{"bedrock_identifier":"chorus_flower","state":{"age":5 }}},{"java_state":{"Name":"minecraft:purpur_block"},"bedrock_state":{"bedrock_identifier":"purpur_block","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:purpur_pillar"},"bedrock_state":{"bedrock_identifier":"purpur_pillar","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:purpur_pillar"},"bedrock_state":{"bedrock_identifier":"purpur_pillar","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:purpur_pillar"},"bedrock_state":{"bedrock_identifier":"purpur_pillar","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:purpur_stairs"},"bedrock_state":{"bedrock_identifier":"purpur_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Name":"minecraft:end_stone_bricks"},"bedrock_state":{"bedrock_identifier":"end_bricks"}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:torchflower_crop"},"bedrock_state":{"bedrock_identifier":"torchflower_crop","state":{"growth":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:torchflower_crop"},"bedrock_state":{"bedrock_identifier":"torchflower_crop","state":{"growth":4 }}},{"java_state":{"Properties":{"half":"upper","age":"0"},"Name":"minecraft:pitcher_crop"},"bedrock_state":{"bedrock_identifier":"pitcher_crop","state":{"upper_block_bit":true,"growth":0 }}},{"java_state":{"Properties":{"half":"lower","age":"0"},"Name":"minecraft:pitcher_crop"},"bedrock_state":{"bedrock_identifier":"pitcher_crop","state":{"upper_block_bit":false,"growth":0 }}},{"java_state":{"Properties":{"half":"upper","age":"1"},"Name":"minecraft:pitcher_crop"},"bedrock_state":{"bedrock_identifier":"pitcher_crop","state":{"upper_block_bit":true,"growth":1 }}},{"java_state":{"Properties":{"half":"lower","age":"1"},"Name":"minecraft:pitcher_crop"},"bedrock_state":{"bedrock_identifier":"pitcher_crop","state":{"upper_block_bit":false,"growth":1 }}},{"java_state":{"Properties":{"half":"upper","age":"2"},"Name":"minecraft:pitcher_crop"},"bedrock_state":{"bedrock_identifier":"pitcher_crop","state":{"upper_block_bit":true,"growth":3 }}},{"java_state":{"Properties":{"half":"lower","age":"2"},"Name":"minecraft:pitcher_crop"},"bedrock_state":{"bedrock_identifier":"pitcher_crop","state":{"upper_block_bit":false,"growth":3 }}},{"java_state":{"Properties":{"half":"upper","age":"3"},"Name":"minecraft:pitcher_crop"},"bedrock_state":{"bedrock_identifier":"pitcher_crop","state":{"upper_block_bit":true,"growth":5 }}},{"java_state":{"Properties":{"half":"lower","age":"3"},"Name":"minecraft:pitcher_crop"},"bedrock_state":{"bedrock_identifier":"pitcher_crop","state":{"upper_block_bit":false,"growth":5 }}},{"java_state":{"Properties":{"half":"upper","age":"4"},"Name":"minecraft:pitcher_crop"},"bedrock_state":{"bedrock_identifier":"pitcher_crop","state":{"upper_block_bit":true,"growth":7 }}},{"java_state":{"Properties":{"half":"lower","age":"4"},"Name":"minecraft:pitcher_crop"},"bedrock_state":{"bedrock_identifier":"pitcher_crop","state":{"upper_block_bit":false,"growth":7 }}},{"java_state":{"Properties":{"half":"upper"},"Name":"minecraft:pitcher_plant"},"bedrock_state":{"bedrock_identifier":"pitcher_plant","state":{"upper_block_bit":true }}},{"java_state":{"Properties":{"half":"lower"},"Name":"minecraft:pitcher_plant"},"bedrock_state":{"bedrock_identifier":"pitcher_plant","state":{"upper_block_bit":false }}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:beetroots"},"bedrock_state":{"bedrock_identifier":"beetroot","state":{"growth":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:beetroots"},"bedrock_state":{"bedrock_identifier":"beetroot","state":{"growth":3 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:beetroots"},"bedrock_state":{"bedrock_identifier":"beetroot","state":{"growth":4 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:beetroots"},"bedrock_state":{"bedrock_identifier":"beetroot","state":{"growth":7 }}},{"java_state":{"Name":"minecraft:dirt_path"},"bedrock_state":{"bedrock_identifier":"grass_path"}},{"java_state":{"Name":"minecraft:end_gateway"},"bedrock_state":{"bedrock_identifier":"end_gateway"}},{"java_state":{"Properties":{"facing":"north","conditional":"true"},"Name":"minecraft:repeating_command_block"},"bedrock_state":{"bedrock_identifier":"repeating_command_block","state":{"conditional_bit":true,"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"east","conditional":"true"},"Name":"minecraft:repeating_command_block"},"bedrock_state":{"bedrock_identifier":"repeating_command_block","state":{"conditional_bit":true,"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"south","conditional":"true"},"Name":"minecraft:repeating_command_block"},"bedrock_state":{"bedrock_identifier":"repeating_command_block","state":{"conditional_bit":true,"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west","conditional":"true"},"Name":"minecraft:repeating_command_block"},"bedrock_state":{"bedrock_identifier":"repeating_command_block","state":{"conditional_bit":true,"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"up","conditional":"true"},"Name":"minecraft:repeating_command_block"},"bedrock_state":{"bedrock_identifier":"repeating_command_block","state":{"conditional_bit":true,"facing_direction":1 }}},{"java_state":{"Properties":{"facing":"down","conditional":"true"},"Name":"minecraft:repeating_command_block"},"bedrock_state":{"bedrock_identifier":"repeating_command_block","state":{"conditional_bit":true,"facing_direction":0 }}},{"java_state":{"Properties":{"facing":"north","conditional":"false"},"Name":"minecraft:repeating_command_block"},"bedrock_state":{"bedrock_identifier":"repeating_command_block","state":{"conditional_bit":false,"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"east","conditional":"false"},"Name":"minecraft:repeating_command_block"},"bedrock_state":{"bedrock_identifier":"repeating_command_block","state":{"conditional_bit":false,"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"south","conditional":"false"},"Name":"minecraft:repeating_command_block"},"bedrock_state":{"bedrock_identifier":"repeating_command_block","state":{"conditional_bit":false,"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west","conditional":"false"},"Name":"minecraft:repeating_command_block"},"bedrock_state":{"bedrock_identifier":"repeating_command_block","state":{"conditional_bit":false,"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"up","conditional":"false"},"Name":"minecraft:repeating_command_block"},"bedrock_state":{"bedrock_identifier":"repeating_command_block","state":{"conditional_bit":false,"facing_direction":1 }}},{"java_state":{"Properties":{"facing":"down","conditional":"false"},"Name":"minecraft:repeating_command_block"},"bedrock_state":{"bedrock_identifier":"repeating_command_block","state":{"conditional_bit":false,"facing_direction":0 }}},{"java_state":{"Properties":{"facing":"north","conditional":"true"},"Name":"minecraft:chain_command_block"},"bedrock_state":{"bedrock_identifier":"chain_command_block","state":{"conditional_bit":true,"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"east","conditional":"true"},"Name":"minecraft:chain_command_block"},"bedrock_state":{"bedrock_identifier":"chain_command_block","state":{"conditional_bit":true,"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"south","conditional":"true"},"Name":"minecraft:chain_command_block"},"bedrock_state":{"bedrock_identifier":"chain_command_block","state":{"conditional_bit":true,"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west","conditional":"true"},"Name":"minecraft:chain_command_block"},"bedrock_state":{"bedrock_identifier":"chain_command_block","state":{"conditional_bit":true,"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"up","conditional":"true"},"Name":"minecraft:chain_command_block"},"bedrock_state":{"bedrock_identifier":"chain_command_block","state":{"conditional_bit":true,"facing_direction":1 }}},{"java_state":{"Properties":{"facing":"down","conditional":"true"},"Name":"minecraft:chain_command_block"},"bedrock_state":{"bedrock_identifier":"chain_command_block","state":{"conditional_bit":true,"facing_direction":0 }}},{"java_state":{"Properties":{"facing":"north","conditional":"false"},"Name":"minecraft:chain_command_block"},"bedrock_state":{"bedrock_identifier":"chain_command_block","state":{"conditional_bit":false,"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"east","conditional":"false"},"Name":"minecraft:chain_command_block"},"bedrock_state":{"bedrock_identifier":"chain_command_block","state":{"conditional_bit":false,"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"south","conditional":"false"},"Name":"minecraft:chain_command_block"},"bedrock_state":{"bedrock_identifier":"chain_command_block","state":{"conditional_bit":false,"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west","conditional":"false"},"Name":"minecraft:chain_command_block"},"bedrock_state":{"bedrock_identifier":"chain_command_block","state":{"conditional_bit":false,"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"up","conditional":"false"},"Name":"minecraft:chain_command_block"},"bedrock_state":{"bedrock_identifier":"chain_command_block","state":{"conditional_bit":false,"facing_direction":1 }}},{"java_state":{"Properties":{"facing":"down","conditional":"false"},"Name":"minecraft:chain_command_block"},"bedrock_state":{"bedrock_identifier":"chain_command_block","state":{"conditional_bit":false,"facing_direction":0 }}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:frosted_ice"},"bedrock_state":{"bedrock_identifier":"frosted_ice","state":{"age":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:frosted_ice"},"bedrock_state":{"bedrock_identifier":"frosted_ice","state":{"age":1 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:frosted_ice"},"bedrock_state":{"bedrock_identifier":"frosted_ice","state":{"age":2 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:frosted_ice"},"bedrock_state":{"bedrock_identifier":"frosted_ice","state":{"age":3 }}},{"java_state":{"Name":"minecraft:magma_block"},"bedrock_state":{"bedrock_identifier":"magma"}},{"java_state":{"Name":"minecraft:nether_wart_block"},"bedrock_state":{"bedrock_identifier":"nether_wart_block"}},{"java_state":{"Name":"minecraft:red_nether_bricks"},"bedrock_state":{"bedrock_identifier":"red_nether_brick"}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:bone_block"},"bedrock_state":{"bedrock_identifier":"bone_block","state":{"pillar_axis":"x","deprecated":0 }}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:bone_block"},"bedrock_state":{"bedrock_identifier":"bone_block","state":{"pillar_axis":"y","deprecated":0 }}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:bone_block"},"bedrock_state":{"bedrock_identifier":"bone_block","state":{"pillar_axis":"z","deprecated":0 }}},{"java_state":{"Name":"minecraft:structure_void"},"bedrock_state":{"bedrock_identifier":"structure_void"}},{"java_state":{"Properties":{"powered":"true","facing":"north"},"Name":"minecraft:observer"},"bedrock_state":{"bedrock_identifier":"observer","state":{"minecraft:facing_direction":"north","powered_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north"},"Name":"minecraft:observer"},"bedrock_state":{"bedrock_identifier":"observer","state":{"minecraft:facing_direction":"north","powered_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east"},"Name":"minecraft:observer"},"bedrock_state":{"bedrock_identifier":"observer","state":{"minecraft:facing_direction":"east","powered_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east"},"Name":"minecraft:observer"},"bedrock_state":{"bedrock_identifier":"observer","state":{"minecraft:facing_direction":"east","powered_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south"},"Name":"minecraft:observer"},"bedrock_state":{"bedrock_identifier":"observer","state":{"minecraft:facing_direction":"south","powered_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south"},"Name":"minecraft:observer"},"bedrock_state":{"bedrock_identifier":"observer","state":{"minecraft:facing_direction":"south","powered_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west"},"Name":"minecraft:observer"},"bedrock_state":{"bedrock_identifier":"observer","state":{"minecraft:facing_direction":"west","powered_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west"},"Name":"minecraft:observer"},"bedrock_state":{"bedrock_identifier":"observer","state":{"minecraft:facing_direction":"west","powered_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"up"},"Name":"minecraft:observer"},"bedrock_state":{"bedrock_identifier":"observer","state":{"minecraft:facing_direction":"up","powered_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"up"},"Name":"minecraft:observer"},"bedrock_state":{"bedrock_identifier":"observer","state":{"minecraft:facing_direction":"up","powered_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"down"},"Name":"minecraft:observer"},"bedrock_state":{"bedrock_identifier":"observer","state":{"minecraft:facing_direction":"down","powered_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"down"},"Name":"minecraft:observer"},"bedrock_state":{"bedrock_identifier":"observer","state":{"minecraft:facing_direction":"down","powered_bit":false }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:shulker_box"},"bedrock_state":{"bedrock_identifier":"undyed_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:shulker_box"},"bedrock_state":{"bedrock_identifier":"undyed_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:shulker_box"},"bedrock_state":{"bedrock_identifier":"undyed_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:shulker_box"},"bedrock_state":{"bedrock_identifier":"undyed_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:shulker_box"},"bedrock_state":{"bedrock_identifier":"undyed_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:shulker_box"},"bedrock_state":{"bedrock_identifier":"undyed_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:white_shulker_box"},"bedrock_state":{"bedrock_identifier":"white_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:white_shulker_box"},"bedrock_state":{"bedrock_identifier":"white_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:white_shulker_box"},"bedrock_state":{"bedrock_identifier":"white_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:white_shulker_box"},"bedrock_state":{"bedrock_identifier":"white_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:white_shulker_box"},"bedrock_state":{"bedrock_identifier":"white_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:white_shulker_box"},"bedrock_state":{"bedrock_identifier":"white_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:orange_shulker_box"},"bedrock_state":{"bedrock_identifier":"orange_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:orange_shulker_box"},"bedrock_state":{"bedrock_identifier":"orange_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:orange_shulker_box"},"bedrock_state":{"bedrock_identifier":"orange_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:orange_shulker_box"},"bedrock_state":{"bedrock_identifier":"orange_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:orange_shulker_box"},"bedrock_state":{"bedrock_identifier":"orange_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:orange_shulker_box"},"bedrock_state":{"bedrock_identifier":"orange_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:magenta_shulker_box"},"bedrock_state":{"bedrock_identifier":"magenta_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:magenta_shulker_box"},"bedrock_state":{"bedrock_identifier":"magenta_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:magenta_shulker_box"},"bedrock_state":{"bedrock_identifier":"magenta_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:magenta_shulker_box"},"bedrock_state":{"bedrock_identifier":"magenta_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:magenta_shulker_box"},"bedrock_state":{"bedrock_identifier":"magenta_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:magenta_shulker_box"},"bedrock_state":{"bedrock_identifier":"magenta_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:light_blue_shulker_box"},"bedrock_state":{"bedrock_identifier":"light_blue_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:light_blue_shulker_box"},"bedrock_state":{"bedrock_identifier":"light_blue_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:light_blue_shulker_box"},"bedrock_state":{"bedrock_identifier":"light_blue_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:light_blue_shulker_box"},"bedrock_state":{"bedrock_identifier":"light_blue_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:light_blue_shulker_box"},"bedrock_state":{"bedrock_identifier":"light_blue_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:light_blue_shulker_box"},"bedrock_state":{"bedrock_identifier":"light_blue_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:yellow_shulker_box"},"bedrock_state":{"bedrock_identifier":"yellow_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:yellow_shulker_box"},"bedrock_state":{"bedrock_identifier":"yellow_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:yellow_shulker_box"},"bedrock_state":{"bedrock_identifier":"yellow_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:yellow_shulker_box"},"bedrock_state":{"bedrock_identifier":"yellow_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:yellow_shulker_box"},"bedrock_state":{"bedrock_identifier":"yellow_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:yellow_shulker_box"},"bedrock_state":{"bedrock_identifier":"yellow_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:lime_shulker_box"},"bedrock_state":{"bedrock_identifier":"lime_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:lime_shulker_box"},"bedrock_state":{"bedrock_identifier":"lime_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:lime_shulker_box"},"bedrock_state":{"bedrock_identifier":"lime_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:lime_shulker_box"},"bedrock_state":{"bedrock_identifier":"lime_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:lime_shulker_box"},"bedrock_state":{"bedrock_identifier":"lime_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:lime_shulker_box"},"bedrock_state":{"bedrock_identifier":"lime_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:pink_shulker_box"},"bedrock_state":{"bedrock_identifier":"pink_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:pink_shulker_box"},"bedrock_state":{"bedrock_identifier":"pink_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:pink_shulker_box"},"bedrock_state":{"bedrock_identifier":"pink_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:pink_shulker_box"},"bedrock_state":{"bedrock_identifier":"pink_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:pink_shulker_box"},"bedrock_state":{"bedrock_identifier":"pink_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:pink_shulker_box"},"bedrock_state":{"bedrock_identifier":"pink_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:gray_shulker_box"},"bedrock_state":{"bedrock_identifier":"gray_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:gray_shulker_box"},"bedrock_state":{"bedrock_identifier":"gray_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:gray_shulker_box"},"bedrock_state":{"bedrock_identifier":"gray_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:gray_shulker_box"},"bedrock_state":{"bedrock_identifier":"gray_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:gray_shulker_box"},"bedrock_state":{"bedrock_identifier":"gray_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:gray_shulker_box"},"bedrock_state":{"bedrock_identifier":"gray_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:light_gray_shulker_box"},"bedrock_state":{"bedrock_identifier":"light_gray_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:light_gray_shulker_box"},"bedrock_state":{"bedrock_identifier":"light_gray_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:light_gray_shulker_box"},"bedrock_state":{"bedrock_identifier":"light_gray_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:light_gray_shulker_box"},"bedrock_state":{"bedrock_identifier":"light_gray_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:light_gray_shulker_box"},"bedrock_state":{"bedrock_identifier":"light_gray_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:light_gray_shulker_box"},"bedrock_state":{"bedrock_identifier":"light_gray_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:cyan_shulker_box"},"bedrock_state":{"bedrock_identifier":"cyan_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:cyan_shulker_box"},"bedrock_state":{"bedrock_identifier":"cyan_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:cyan_shulker_box"},"bedrock_state":{"bedrock_identifier":"cyan_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:cyan_shulker_box"},"bedrock_state":{"bedrock_identifier":"cyan_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:cyan_shulker_box"},"bedrock_state":{"bedrock_identifier":"cyan_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:cyan_shulker_box"},"bedrock_state":{"bedrock_identifier":"cyan_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:purple_shulker_box"},"bedrock_state":{"bedrock_identifier":"purple_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:purple_shulker_box"},"bedrock_state":{"bedrock_identifier":"purple_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:purple_shulker_box"},"bedrock_state":{"bedrock_identifier":"purple_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:purple_shulker_box"},"bedrock_state":{"bedrock_identifier":"purple_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:purple_shulker_box"},"bedrock_state":{"bedrock_identifier":"purple_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:purple_shulker_box"},"bedrock_state":{"bedrock_identifier":"purple_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:blue_shulker_box"},"bedrock_state":{"bedrock_identifier":"blue_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:blue_shulker_box"},"bedrock_state":{"bedrock_identifier":"blue_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:blue_shulker_box"},"bedrock_state":{"bedrock_identifier":"blue_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:blue_shulker_box"},"bedrock_state":{"bedrock_identifier":"blue_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:blue_shulker_box"},"bedrock_state":{"bedrock_identifier":"blue_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:blue_shulker_box"},"bedrock_state":{"bedrock_identifier":"blue_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:brown_shulker_box"},"bedrock_state":{"bedrock_identifier":"brown_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:brown_shulker_box"},"bedrock_state":{"bedrock_identifier":"brown_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:brown_shulker_box"},"bedrock_state":{"bedrock_identifier":"brown_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:brown_shulker_box"},"bedrock_state":{"bedrock_identifier":"brown_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:brown_shulker_box"},"bedrock_state":{"bedrock_identifier":"brown_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:brown_shulker_box"},"bedrock_state":{"bedrock_identifier":"brown_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:green_shulker_box"},"bedrock_state":{"bedrock_identifier":"green_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:green_shulker_box"},"bedrock_state":{"bedrock_identifier":"green_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:green_shulker_box"},"bedrock_state":{"bedrock_identifier":"green_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:green_shulker_box"},"bedrock_state":{"bedrock_identifier":"green_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:green_shulker_box"},"bedrock_state":{"bedrock_identifier":"green_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:green_shulker_box"},"bedrock_state":{"bedrock_identifier":"green_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:red_shulker_box"},"bedrock_state":{"bedrock_identifier":"red_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:red_shulker_box"},"bedrock_state":{"bedrock_identifier":"red_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:red_shulker_box"},"bedrock_state":{"bedrock_identifier":"red_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:red_shulker_box"},"bedrock_state":{"bedrock_identifier":"red_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:red_shulker_box"},"bedrock_state":{"bedrock_identifier":"red_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:red_shulker_box"},"bedrock_state":{"bedrock_identifier":"red_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:black_shulker_box"},"bedrock_state":{"bedrock_identifier":"black_shulker_box"}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:black_shulker_box"},"bedrock_state":{"bedrock_identifier":"black_shulker_box"}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:black_shulker_box"},"bedrock_state":{"bedrock_identifier":"black_shulker_box"}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:black_shulker_box"},"bedrock_state":{"bedrock_identifier":"black_shulker_box"}},{"java_state":{"Properties":{"facing":"up"},"Name":"minecraft:black_shulker_box"},"bedrock_state":{"bedrock_identifier":"black_shulker_box"}},{"java_state":{"Properties":{"facing":"down"},"Name":"minecraft:black_shulker_box"},"bedrock_state":{"bedrock_identifier":"black_shulker_box"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:white_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"white_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:white_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"white_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:white_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"white_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:white_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"white_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:orange_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"orange_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:orange_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"orange_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:orange_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"orange_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:orange_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"orange_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:magenta_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"magenta_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:magenta_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"magenta_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:magenta_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"magenta_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:magenta_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"magenta_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:light_blue_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"light_blue_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:light_blue_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"light_blue_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:light_blue_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"light_blue_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:light_blue_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"light_blue_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:yellow_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"yellow_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:yellow_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"yellow_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:yellow_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"yellow_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:yellow_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"yellow_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:lime_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"lime_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:lime_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"lime_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:lime_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"lime_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:lime_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"lime_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:pink_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"pink_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:pink_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"pink_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:pink_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"pink_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:pink_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"pink_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:gray_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"gray_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:gray_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"gray_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:gray_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"gray_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:gray_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"gray_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:light_gray_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"silver_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:light_gray_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"silver_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:light_gray_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"silver_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:light_gray_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"silver_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:cyan_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"cyan_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:cyan_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"cyan_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:cyan_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"cyan_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:cyan_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"cyan_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:purple_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"purple_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:purple_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"purple_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:purple_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"purple_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:purple_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"purple_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:blue_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"blue_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:blue_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"blue_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:blue_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"blue_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:blue_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"blue_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:brown_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"brown_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:brown_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"brown_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:brown_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"brown_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:brown_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"brown_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:green_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"green_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:green_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"green_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:green_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"green_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:green_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"green_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:red_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"red_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:red_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"red_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:red_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"red_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:red_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"red_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:black_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"black_glazed_terracotta","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:black_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"black_glazed_terracotta","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:black_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"black_glazed_terracotta","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:black_glazed_terracotta"},"bedrock_state":{"bedrock_identifier":"black_glazed_terracotta","state":{"facing_direction":5 }}},{"java_state":{"Name":"minecraft:white_concrete"},"bedrock_state":{"bedrock_identifier":"white_concrete"}},{"java_state":{"Name":"minecraft:orange_concrete"},"bedrock_state":{"bedrock_identifier":"orange_concrete"}},{"java_state":{"Name":"minecraft:magenta_concrete"},"bedrock_state":{"bedrock_identifier":"magenta_concrete"}},{"java_state":{"Name":"minecraft:light_blue_concrete"},"bedrock_state":{"bedrock_identifier":"light_blue_concrete"}},{"java_state":{"Name":"minecraft:yellow_concrete"},"bedrock_state":{"bedrock_identifier":"yellow_concrete"}},{"java_state":{"Name":"minecraft:lime_concrete"},"bedrock_state":{"bedrock_identifier":"lime_concrete"}},{"java_state":{"Name":"minecraft:pink_concrete"},"bedrock_state":{"bedrock_identifier":"pink_concrete"}},{"java_state":{"Name":"minecraft:gray_concrete"},"bedrock_state":{"bedrock_identifier":"gray_concrete"}},{"java_state":{"Name":"minecraft:light_gray_concrete"},"bedrock_state":{"bedrock_identifier":"light_gray_concrete"}},{"java_state":{"Name":"minecraft:cyan_concrete"},"bedrock_state":{"bedrock_identifier":"cyan_concrete"}},{"java_state":{"Name":"minecraft:purple_concrete"},"bedrock_state":{"bedrock_identifier":"purple_concrete"}},{"java_state":{"Name":"minecraft:blue_concrete"},"bedrock_state":{"bedrock_identifier":"blue_concrete"}},{"java_state":{"Name":"minecraft:brown_concrete"},"bedrock_state":{"bedrock_identifier":"brown_concrete"}},{"java_state":{"Name":"minecraft:green_concrete"},"bedrock_state":{"bedrock_identifier":"green_concrete"}},{"java_state":{"Name":"minecraft:red_concrete"},"bedrock_state":{"bedrock_identifier":"red_concrete"}},{"java_state":{"Name":"minecraft:black_concrete"},"bedrock_state":{"bedrock_identifier":"black_concrete"}},{"java_state":{"Name":"minecraft:white_concrete_powder"},"bedrock_state":{"bedrock_identifier":"white_concrete_powder"}},{"java_state":{"Name":"minecraft:orange_concrete_powder"},"bedrock_state":{"bedrock_identifier":"orange_concrete_powder"}},{"java_state":{"Name":"minecraft:magenta_concrete_powder"},"bedrock_state":{"bedrock_identifier":"magenta_concrete_powder"}},{"java_state":{"Name":"minecraft:light_blue_concrete_powder"},"bedrock_state":{"bedrock_identifier":"light_blue_concrete_powder"}},{"java_state":{"Name":"minecraft:yellow_concrete_powder"},"bedrock_state":{"bedrock_identifier":"yellow_concrete_powder"}},{"java_state":{"Name":"minecraft:lime_concrete_powder"},"bedrock_state":{"bedrock_identifier":"lime_concrete_powder"}},{"java_state":{"Name":"minecraft:pink_concrete_powder"},"bedrock_state":{"bedrock_identifier":"pink_concrete_powder"}},{"java_state":{"Name":"minecraft:gray_concrete_powder"},"bedrock_state":{"bedrock_identifier":"gray_concrete_powder"}},{"java_state":{"Name":"minecraft:light_gray_concrete_powder"},"bedrock_state":{"bedrock_identifier":"light_gray_concrete_powder"}},{"java_state":{"Name":"minecraft:cyan_concrete_powder"},"bedrock_state":{"bedrock_identifier":"cyan_concrete_powder"}},{"java_state":{"Name":"minecraft:purple_concrete_powder"},"bedrock_state":{"bedrock_identifier":"purple_concrete_powder"}},{"java_state":{"Name":"minecraft:blue_concrete_powder"},"bedrock_state":{"bedrock_identifier":"blue_concrete_powder"}},{"java_state":{"Name":"minecraft:brown_concrete_powder"},"bedrock_state":{"bedrock_identifier":"brown_concrete_powder"}},{"java_state":{"Name":"minecraft:green_concrete_powder"},"bedrock_state":{"bedrock_identifier":"green_concrete_powder"}},{"java_state":{"Name":"minecraft:red_concrete_powder"},"bedrock_state":{"bedrock_identifier":"red_concrete_powder"}},{"java_state":{"Name":"minecraft:black_concrete_powder"},"bedrock_state":{"bedrock_identifier":"black_concrete_powder"}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":1 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":2 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":3 }}},{"java_state":{"Properties":{"age":"4"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":4 }}},{"java_state":{"Properties":{"age":"5"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":5 }}},{"java_state":{"Properties":{"age":"6"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":6 }}},{"java_state":{"Properties":{"age":"7"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":7 }}},{"java_state":{"Properties":{"age":"8"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":8 }}},{"java_state":{"Properties":{"age":"9"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":9 }}},{"java_state":{"Properties":{"age":"10"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":10 }}},{"java_state":{"Properties":{"age":"11"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":11 }}},{"java_state":{"Properties":{"age":"12"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":12 }}},{"java_state":{"Properties":{"age":"13"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":13 }}},{"java_state":{"Properties":{"age":"14"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":14 }}},{"java_state":{"Properties":{"age":"15"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":15 }}},{"java_state":{"Properties":{"age":"16"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":16 }}},{"java_state":{"Properties":{"age":"17"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":17 }}},{"java_state":{"Properties":{"age":"18"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":18 }}},{"java_state":{"Properties":{"age":"19"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":19 }}},{"java_state":{"Properties":{"age":"20"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":20 }}},{"java_state":{"Properties":{"age":"21"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":21 }}},{"java_state":{"Properties":{"age":"22"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":22 }}},{"java_state":{"Properties":{"age":"23"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":23 }}},{"java_state":{"Properties":{"age":"24"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":24 }}},{"java_state":{"Properties":{"age":"25"},"Name":"minecraft:kelp"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":25 }}},{"java_state":{"Name":"minecraft:kelp_plant"},"bedrock_state":{"bedrock_identifier":"kelp","state":{"kelp_age":0 }}},{"java_state":{"Name":"minecraft:dried_kelp_block"},"bedrock_state":{"bedrock_identifier":"dried_kelp_block"}},{"java_state":{"Properties":{"hatch":"0","eggs":"1"},"Name":"minecraft:turtle_egg"},"bedrock_state":{"bedrock_identifier":"turtle_egg","state":{"turtle_egg_count":"one_egg","cracked_state":"no_cracks"}}},{"java_state":{"Properties":{"hatch":"1","eggs":"1"},"Name":"minecraft:turtle_egg"},"bedrock_state":{"bedrock_identifier":"turtle_egg","state":{"turtle_egg_count":"one_egg","cracked_state":"cracked"}}},{"java_state":{"Properties":{"hatch":"2","eggs":"1"},"Name":"minecraft:turtle_egg"},"bedrock_state":{"bedrock_identifier":"turtle_egg","state":{"turtle_egg_count":"one_egg","cracked_state":"max_cracked"}}},{"java_state":{"Properties":{"hatch":"0","eggs":"2"},"Name":"minecraft:turtle_egg"},"bedrock_state":{"bedrock_identifier":"turtle_egg","state":{"turtle_egg_count":"two_egg","cracked_state":"no_cracks"}}},{"java_state":{"Properties":{"hatch":"1","eggs":"2"},"Name":"minecraft:turtle_egg"},"bedrock_state":{"bedrock_identifier":"turtle_egg","state":{"turtle_egg_count":"two_egg","cracked_state":"cracked"}}},{"java_state":{"Properties":{"hatch":"2","eggs":"2"},"Name":"minecraft:turtle_egg"},"bedrock_state":{"bedrock_identifier":"turtle_egg","state":{"turtle_egg_count":"two_egg","cracked_state":"max_cracked"}}},{"java_state":{"Properties":{"hatch":"0","eggs":"3"},"Name":"minecraft:turtle_egg"},"bedrock_state":{"bedrock_identifier":"turtle_egg","state":{"turtle_egg_count":"three_egg","cracked_state":"no_cracks"}}},{"java_state":{"Properties":{"hatch":"1","eggs":"3"},"Name":"minecraft:turtle_egg"},"bedrock_state":{"bedrock_identifier":"turtle_egg","state":{"turtle_egg_count":"three_egg","cracked_state":"cracked"}}},{"java_state":{"Properties":{"hatch":"2","eggs":"3"},"Name":"minecraft:turtle_egg"},"bedrock_state":{"bedrock_identifier":"turtle_egg","state":{"turtle_egg_count":"three_egg","cracked_state":"max_cracked"}}},{"java_state":{"Properties":{"hatch":"0","eggs":"4"},"Name":"minecraft:turtle_egg"},"bedrock_state":{"bedrock_identifier":"turtle_egg","state":{"turtle_egg_count":"four_egg","cracked_state":"no_cracks"}}},{"java_state":{"Properties":{"hatch":"1","eggs":"4"},"Name":"minecraft:turtle_egg"},"bedrock_state":{"bedrock_identifier":"turtle_egg","state":{"turtle_egg_count":"four_egg","cracked_state":"cracked"}}},{"java_state":{"Properties":{"hatch":"2","eggs":"4"},"Name":"minecraft:turtle_egg"},"bedrock_state":{"bedrock_identifier":"turtle_egg","state":{"turtle_egg_count":"four_egg","cracked_state":"max_cracked"}}},{"java_state":{"Properties":{"hatch":"0"},"Name":"minecraft:sniffer_egg"},"bedrock_state":{"bedrock_identifier":"sniffer_egg","state":{"cracked_state":"no_cracks"}}},{"java_state":{"Properties":{"hatch":"1"},"Name":"minecraft:sniffer_egg"},"bedrock_state":{"bedrock_identifier":"sniffer_egg","state":{"cracked_state":"cracked"}}},{"java_state":{"Properties":{"hatch":"2"},"Name":"minecraft:sniffer_egg"},"bedrock_state":{"bedrock_identifier":"sniffer_egg","state":{"cracked_state":"max_cracked"}}},{"java_state":{"Name":"minecraft:dead_tube_coral_block"},"bedrock_state":{"bedrock_identifier":"dead_tube_coral_block"}},{"java_state":{"Name":"minecraft:dead_brain_coral_block"},"bedrock_state":{"bedrock_identifier":"dead_brain_coral_block"}},{"java_state":{"Name":"minecraft:dead_bubble_coral_block"},"bedrock_state":{"bedrock_identifier":"dead_bubble_coral_block"}},{"java_state":{"Name":"minecraft:dead_fire_coral_block"},"bedrock_state":{"bedrock_identifier":"dead_fire_coral_block"}},{"java_state":{"Name":"minecraft:dead_horn_coral_block"},"bedrock_state":{"bedrock_identifier":"dead_horn_coral_block"}},{"java_state":{"Name":"minecraft:tube_coral_block"},"bedrock_state":{"bedrock_identifier":"tube_coral_block"}},{"java_state":{"Name":"minecraft:brain_coral_block"},"bedrock_state":{"bedrock_identifier":"brain_coral_block"}},{"java_state":{"Name":"minecraft:bubble_coral_block"},"bedrock_state":{"bedrock_identifier":"bubble_coral_block"}},{"java_state":{"Name":"minecraft:fire_coral_block"},"bedrock_state":{"bedrock_identifier":"fire_coral_block"}},{"java_state":{"Name":"minecraft:horn_coral_block"},"bedrock_state":{"bedrock_identifier":"horn_coral_block"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:dead_tube_coral"},"bedrock_state":{"bedrock_identifier":"dead_tube_coral"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:dead_tube_coral"},"bedrock_state":{"bedrock_identifier":"dead_tube_coral"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:dead_brain_coral"},"bedrock_state":{"bedrock_identifier":"dead_brain_coral"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:dead_brain_coral"},"bedrock_state":{"bedrock_identifier":"dead_brain_coral"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:dead_bubble_coral"},"bedrock_state":{"bedrock_identifier":"dead_bubble_coral"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:dead_bubble_coral"},"bedrock_state":{"bedrock_identifier":"dead_bubble_coral"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:dead_fire_coral"},"bedrock_state":{"bedrock_identifier":"dead_fire_coral"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:dead_fire_coral"},"bedrock_state":{"bedrock_identifier":"dead_fire_coral"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:dead_horn_coral"},"bedrock_state":{"bedrock_identifier":"dead_horn_coral"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:dead_horn_coral"},"bedrock_state":{"bedrock_identifier":"dead_horn_coral"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:tube_coral"},"bedrock_state":{"bedrock_identifier":"tube_coral"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:tube_coral"},"bedrock_state":{"bedrock_identifier":"tube_coral"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:brain_coral"},"bedrock_state":{"bedrock_identifier":"brain_coral"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:brain_coral"},"bedrock_state":{"bedrock_identifier":"brain_coral"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:bubble_coral"},"bedrock_state":{"bedrock_identifier":"bubble_coral"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:bubble_coral"},"bedrock_state":{"bedrock_identifier":"bubble_coral"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:fire_coral"},"bedrock_state":{"bedrock_identifier":"fire_coral"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:fire_coral"},"bedrock_state":{"bedrock_identifier":"fire_coral"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:horn_coral"},"bedrock_state":{"bedrock_identifier":"horn_coral"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:horn_coral"},"bedrock_state":{"bedrock_identifier":"horn_coral"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:dead_tube_coral_fan"},"bedrock_state":{"bedrock_identifier":"dead_tube_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:dead_tube_coral_fan"},"bedrock_state":{"bedrock_identifier":"dead_tube_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:dead_brain_coral_fan"},"bedrock_state":{"bedrock_identifier":"dead_brain_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:dead_brain_coral_fan"},"bedrock_state":{"bedrock_identifier":"dead_brain_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:dead_bubble_coral_fan"},"bedrock_state":{"bedrock_identifier":"dead_bubble_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:dead_bubble_coral_fan"},"bedrock_state":{"bedrock_identifier":"dead_bubble_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:dead_fire_coral_fan"},"bedrock_state":{"bedrock_identifier":"dead_fire_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:dead_fire_coral_fan"},"bedrock_state":{"bedrock_identifier":"dead_fire_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:dead_horn_coral_fan"},"bedrock_state":{"bedrock_identifier":"dead_horn_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:dead_horn_coral_fan"},"bedrock_state":{"bedrock_identifier":"dead_horn_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:tube_coral_fan"},"bedrock_state":{"bedrock_identifier":"tube_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:tube_coral_fan"},"bedrock_state":{"bedrock_identifier":"tube_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:brain_coral_fan"},"bedrock_state":{"bedrock_identifier":"brain_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:brain_coral_fan"},"bedrock_state":{"bedrock_identifier":"brain_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:bubble_coral_fan"},"bedrock_state":{"bedrock_identifier":"bubble_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:bubble_coral_fan"},"bedrock_state":{"bedrock_identifier":"bubble_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:fire_coral_fan"},"bedrock_state":{"bedrock_identifier":"fire_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:fire_coral_fan"},"bedrock_state":{"bedrock_identifier":"fire_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:horn_coral_fan"},"bedrock_state":{"bedrock_identifier":"horn_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:horn_coral_fan"},"bedrock_state":{"bedrock_identifier":"horn_coral_fan","state":{"coral_fan_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:dead_tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_tube_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:dead_tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_tube_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:dead_tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_tube_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:dead_tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_tube_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:dead_tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_tube_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:dead_tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_tube_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:dead_tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_tube_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:dead_tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_tube_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:dead_brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_brain_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:dead_brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_brain_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:dead_brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_brain_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:dead_brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_brain_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:dead_brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_brain_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:dead_brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_brain_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:dead_brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_brain_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:dead_brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_brain_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:dead_bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_bubble_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:dead_bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_bubble_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:dead_bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_bubble_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:dead_bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_bubble_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:dead_bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_bubble_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:dead_bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_bubble_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:dead_bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_bubble_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:dead_bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_bubble_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:dead_fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_fire_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:dead_fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_fire_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:dead_fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_fire_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:dead_fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_fire_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:dead_fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_fire_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:dead_fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_fire_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:dead_fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_fire_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:dead_fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_fire_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:dead_horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_horn_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:dead_horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_horn_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:dead_horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_horn_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:dead_horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_horn_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:dead_horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_horn_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:dead_horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_horn_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:dead_horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_horn_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:dead_horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"dead_horn_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"tube_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"tube_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"tube_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"tube_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"tube_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"tube_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"tube_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:tube_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"tube_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"brain_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"brain_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"brain_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"brain_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"brain_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"brain_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"brain_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:brain_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"brain_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"bubble_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"bubble_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"bubble_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"bubble_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"bubble_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"bubble_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"bubble_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:bubble_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"bubble_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"fire_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"fire_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"fire_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"fire_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"fire_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"fire_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"fire_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:fire_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"fire_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"horn_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"horn_coral_wall_fan","state":{"coral_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"horn_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"horn_coral_wall_fan","state":{"coral_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"horn_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"horn_coral_wall_fan","state":{"coral_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"horn_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:horn_coral_wall_fan"},"bedrock_state":{"bedrock_identifier":"horn_coral_wall_fan","state":{"coral_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","pickles":"1"},"Name":"minecraft:sea_pickle"},"bedrock_state":{"bedrock_identifier":"sea_pickle","state":{"dead_bit":false,"cluster_count":0 }}},{"java_state":{"Properties":{"waterlogged":"false","pickles":"1"},"Name":"minecraft:sea_pickle"},"bedrock_state":{"bedrock_identifier":"sea_pickle","state":{"dead_bit":true,"cluster_count":0 }}},{"java_state":{"Properties":{"waterlogged":"true","pickles":"2"},"Name":"minecraft:sea_pickle"},"bedrock_state":{"bedrock_identifier":"sea_pickle","state":{"dead_bit":false,"cluster_count":1 }}},{"java_state":{"Properties":{"waterlogged":"false","pickles":"2"},"Name":"minecraft:sea_pickle"},"bedrock_state":{"bedrock_identifier":"sea_pickle","state":{"dead_bit":true,"cluster_count":1 }}},{"java_state":{"Properties":{"waterlogged":"true","pickles":"3"},"Name":"minecraft:sea_pickle"},"bedrock_state":{"bedrock_identifier":"sea_pickle","state":{"dead_bit":false,"cluster_count":2 }}},{"java_state":{"Properties":{"waterlogged":"false","pickles":"3"},"Name":"minecraft:sea_pickle"},"bedrock_state":{"bedrock_identifier":"sea_pickle","state":{"dead_bit":true,"cluster_count":2 }}},{"java_state":{"Properties":{"waterlogged":"true","pickles":"4"},"Name":"minecraft:sea_pickle"},"bedrock_state":{"bedrock_identifier":"sea_pickle","state":{"dead_bit":false,"cluster_count":3 }}},{"java_state":{"Properties":{"waterlogged":"false","pickles":"4"},"Name":"minecraft:sea_pickle"},"bedrock_state":{"bedrock_identifier":"sea_pickle","state":{"dead_bit":true,"cluster_count":3 }}},{"java_state":{"Name":"minecraft:blue_ice"},"bedrock_state":{"bedrock_identifier":"blue_ice"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:conduit"},"bedrock_state":{"bedrock_identifier":"conduit"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:conduit"},"bedrock_state":{"bedrock_identifier":"conduit"}},{"java_state":{"Name":"minecraft:bamboo_sapling"},"bedrock_state":{"bedrock_identifier":"bamboo_sapling","state":{"age_bit":false }}},{"java_state":{"Properties":{"stage":"0","leaves":"none","age":"0"},"Name":"minecraft:bamboo"},"bedrock_state":{"bedrock_identifier":"bamboo","state":{"bamboo_leaf_size":"no_leaves","age_bit":false,"bamboo_stalk_thickness":"thin"}}},{"java_state":{"Properties":{"stage":"1","leaves":"none","age":"0"},"Name":"minecraft:bamboo"},"bedrock_state":{"bedrock_identifier":"bamboo","state":{"bamboo_leaf_size":"no_leaves","age_bit":false,"bamboo_stalk_thickness":"thin"}}},{"java_state":{"Properties":{"stage":"0","leaves":"small","age":"0"},"Name":"minecraft:bamboo"},"bedrock_state":{"bedrock_identifier":"bamboo","state":{"bamboo_leaf_size":"small_leaves","age_bit":false,"bamboo_stalk_thickness":"thin"}}},{"java_state":{"Properties":{"stage":"1","leaves":"small","age":"0"},"Name":"minecraft:bamboo"},"bedrock_state":{"bedrock_identifier":"bamboo","state":{"bamboo_leaf_size":"small_leaves","age_bit":false,"bamboo_stalk_thickness":"thin"}}},{"java_state":{"Properties":{"stage":"0","leaves":"large","age":"0"},"Name":"minecraft:bamboo"},"bedrock_state":{"bedrock_identifier":"bamboo","state":{"bamboo_leaf_size":"large_leaves","age_bit":false,"bamboo_stalk_thickness":"thin"}}},{"java_state":{"Properties":{"stage":"1","leaves":"large","age":"0"},"Name":"minecraft:bamboo"},"bedrock_state":{"bedrock_identifier":"bamboo","state":{"bamboo_leaf_size":"large_leaves","age_bit":false,"bamboo_stalk_thickness":"thin"}}},{"java_state":{"Properties":{"stage":"0","leaves":"none","age":"1"},"Name":"minecraft:bamboo"},"bedrock_state":{"bedrock_identifier":"bamboo","state":{"bamboo_leaf_size":"no_leaves","age_bit":false,"bamboo_stalk_thickness":"thick"}}},{"java_state":{"Properties":{"stage":"1","leaves":"none","age":"1"},"Name":"minecraft:bamboo"},"bedrock_state":{"bedrock_identifier":"bamboo","state":{"bamboo_leaf_size":"no_leaves","age_bit":false,"bamboo_stalk_thickness":"thick"}}},{"java_state":{"Properties":{"stage":"0","leaves":"small","age":"1"},"Name":"minecraft:bamboo"},"bedrock_state":{"bedrock_identifier":"bamboo","state":{"bamboo_leaf_size":"small_leaves","age_bit":false,"bamboo_stalk_thickness":"thick"}}},{"java_state":{"Properties":{"stage":"1","leaves":"small","age":"1"},"Name":"minecraft:bamboo"},"bedrock_state":{"bedrock_identifier":"bamboo","state":{"bamboo_leaf_size":"small_leaves","age_bit":false,"bamboo_stalk_thickness":"thick"}}},{"java_state":{"Properties":{"stage":"0","leaves":"large","age":"1"},"Name":"minecraft:bamboo"},"bedrock_state":{"bedrock_identifier":"bamboo","state":{"bamboo_leaf_size":"large_leaves","age_bit":false,"bamboo_stalk_thickness":"thick"}}},{"java_state":{"Properties":{"stage":"1","leaves":"large","age":"1"},"Name":"minecraft:bamboo"},"bedrock_state":{"bedrock_identifier":"bamboo","state":{"bamboo_leaf_size":"large_leaves","age_bit":false,"bamboo_stalk_thickness":"thick"}}},{"java_state":{"Name":"minecraft:potted_bamboo"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:void_air"},"bedrock_state":{"bedrock_identifier":"air"}},{"java_state":{"Name":"minecraft:cave_air"},"bedrock_state":{"bedrock_identifier":"air"}},{"java_state":{"Properties":{"drag":"true"},"Name":"minecraft:bubble_column"},"bedrock_state":{"bedrock_identifier":"bubble_column","state":{"drag_down":true }}},{"java_state":{"Properties":{"drag":"false"},"Name":"minecraft:bubble_column"},"bedrock_state":{"bedrock_identifier":"bubble_column","state":{"drag_down":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_granite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:smooth_red_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:mossy_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_diorite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:mossy_cobblestone_stairs"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:end_stone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"end_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:stone_stairs"},"bedrock_state":{"bedrock_identifier":"normal_stone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:smooth_sandstone_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:smooth_quartz_stairs"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:granite_stairs"},"bedrock_state":{"bedrock_identifier":"granite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:andesite_stairs"},"bedrock_state":{"bedrock_identifier":"andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:red_nether_brick_stairs"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_andesite_stairs"},"bedrock_state":{"bedrock_identifier":"polished_andesite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":true,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:diorite_stairs"},"bedrock_state":{"bedrock_identifier":"diorite_stairs","state":{"upside_down_bit":false,"weirdo_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:polished_granite_slab"},"bedrock_state":{"bedrock_identifier":"polished_granite_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:polished_granite_slab"},"bedrock_state":{"bedrock_identifier":"polished_granite_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:polished_granite_slab"},"bedrock_state":{"bedrock_identifier":"polished_granite_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:polished_granite_slab"},"bedrock_state":{"bedrock_identifier":"polished_granite_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:polished_granite_slab"},"bedrock_state":{"bedrock_identifier":"polished_granite_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:polished_granite_slab"},"bedrock_state":{"bedrock_identifier":"polished_granite_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:smooth_red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:smooth_red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:smooth_red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:smooth_red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:smooth_red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:smooth_red_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_red_sandstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:mossy_stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:mossy_stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:mossy_stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:mossy_stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:mossy_stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:mossy_stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:polished_diorite_slab"},"bedrock_state":{"bedrock_identifier":"polished_diorite_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:polished_diorite_slab"},"bedrock_state":{"bedrock_identifier":"polished_diorite_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:polished_diorite_slab"},"bedrock_state":{"bedrock_identifier":"polished_diorite_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:polished_diorite_slab"},"bedrock_state":{"bedrock_identifier":"polished_diorite_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:polished_diorite_slab"},"bedrock_state":{"bedrock_identifier":"polished_diorite_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:polished_diorite_slab"},"bedrock_state":{"bedrock_identifier":"polished_diorite_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:mossy_cobblestone_slab"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:mossy_cobblestone_slab"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:mossy_cobblestone_slab"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:mossy_cobblestone_slab"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:mossy_cobblestone_slab"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:mossy_cobblestone_slab"},"bedrock_state":{"bedrock_identifier":"mossy_cobblestone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:end_stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:end_stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:end_stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:end_stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:end_stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:end_stone_brick_slab"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:smooth_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:smooth_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:smooth_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:smooth_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:smooth_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:smooth_sandstone_slab"},"bedrock_state":{"bedrock_identifier":"smooth_sandstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:smooth_quartz_slab"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:smooth_quartz_slab"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:smooth_quartz_slab"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:smooth_quartz_slab"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:smooth_quartz_slab"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:smooth_quartz_slab"},"bedrock_state":{"bedrock_identifier":"smooth_quartz_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:granite_slab"},"bedrock_state":{"bedrock_identifier":"granite_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:granite_slab"},"bedrock_state":{"bedrock_identifier":"granite_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:granite_slab"},"bedrock_state":{"bedrock_identifier":"granite_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:granite_slab"},"bedrock_state":{"bedrock_identifier":"granite_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:granite_slab"},"bedrock_state":{"bedrock_identifier":"granite_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:granite_slab"},"bedrock_state":{"bedrock_identifier":"granite_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:andesite_slab"},"bedrock_state":{"bedrock_identifier":"andesite_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:andesite_slab"},"bedrock_state":{"bedrock_identifier":"andesite_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:andesite_slab"},"bedrock_state":{"bedrock_identifier":"andesite_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:andesite_slab"},"bedrock_state":{"bedrock_identifier":"andesite_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:andesite_slab"},"bedrock_state":{"bedrock_identifier":"andesite_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:andesite_slab"},"bedrock_state":{"bedrock_identifier":"andesite_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:red_nether_brick_slab"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:red_nether_brick_slab"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:red_nether_brick_slab"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:red_nether_brick_slab"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:red_nether_brick_slab"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:red_nether_brick_slab"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:polished_andesite_slab"},"bedrock_state":{"bedrock_identifier":"polished_andesite_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:polished_andesite_slab"},"bedrock_state":{"bedrock_identifier":"polished_andesite_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:polished_andesite_slab"},"bedrock_state":{"bedrock_identifier":"polished_andesite_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:polished_andesite_slab"},"bedrock_state":{"bedrock_identifier":"polished_andesite_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:polished_andesite_slab"},"bedrock_state":{"bedrock_identifier":"polished_andesite_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:polished_andesite_slab"},"bedrock_state":{"bedrock_identifier":"polished_andesite_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:diorite_slab"},"bedrock_state":{"bedrock_identifier":"diorite_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:diorite_slab"},"bedrock_state":{"bedrock_identifier":"diorite_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:diorite_slab"},"bedrock_state":{"bedrock_identifier":"diorite_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:diorite_slab"},"bedrock_state":{"bedrock_identifier":"diorite_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:diorite_slab"},"bedrock_state":{"bedrock_identifier":"diorite_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:diorite_slab"},"bedrock_state":{"bedrock_identifier":"diorite_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:brick_wall"},"bedrock_state":{"bedrock_identifier":"brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:prismarine_wall"},"bedrock_state":{"bedrock_identifier":"prismarine_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_sandstone_wall"},"bedrock_state":{"bedrock_identifier":"red_sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mossy_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"mossy_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:granite_wall"},"bedrock_state":{"bedrock_identifier":"granite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:mud_brick_wall"},"bedrock_state":{"bedrock_identifier":"mud_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:andesite_wall"},"bedrock_state":{"bedrock_identifier":"andesite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:red_nether_brick_wall"},"bedrock_state":{"bedrock_identifier":"red_nether_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:sandstone_wall"},"bedrock_state":{"bedrock_identifier":"sandstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:end_stone_brick_wall"},"bedrock_state":{"bedrock_identifier":"end_stone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:diorite_wall"},"bedrock_state":{"bedrock_identifier":"diorite_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"waterlogged":"true","distance":"0","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":0,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"0","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":0,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"1","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":1,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"1","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":1,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"2","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":2,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"2","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":2,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"3","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":3,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"3","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":3,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"4","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":4,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"4","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":4,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"5","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":5,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"5","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":5,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"6","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":6,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"6","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":6,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"7","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":7,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"7","bottom":"true"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":7,"stability_check":false }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"0","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":0,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"0","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":0,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"1","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":1,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"1","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":1,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"2","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":2,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"2","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":2,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"3","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":3,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"3","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":3,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"4","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":4,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"4","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":4,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"5","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":5,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"5","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":5,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"6","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":6,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"6","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":6,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"true","distance":"7","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":7,"stability_check":true }}},{"java_state":{"Properties":{"waterlogged":"false","distance":"7","bottom":"false"},"Name":"minecraft:scaffolding"},"bedrock_state":{"bedrock_identifier":"scaffolding","state":{"stability":7,"stability_check":true }}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:loom"},"bedrock_state":{"bedrock_identifier":"loom","state":{"direction":2 }}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:loom"},"bedrock_state":{"bedrock_identifier":"loom","state":{"direction":0 }}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:loom"},"bedrock_state":{"bedrock_identifier":"loom","state":{"direction":1 }}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:loom"},"bedrock_state":{"bedrock_identifier":"loom","state":{"direction":3 }}},{"java_state":{"Properties":{"open":"true","facing":"north"},"Name":"minecraft:barrel"},"bedrock_state":{"bedrock_identifier":"barrel","state":{"facing_direction":2,"open_bit":true }}},{"java_state":{"Properties":{"open":"false","facing":"north"},"Name":"minecraft:barrel"},"bedrock_state":{"bedrock_identifier":"barrel","state":{"facing_direction":2,"open_bit":false }}},{"java_state":{"Properties":{"open":"true","facing":"east"},"Name":"minecraft:barrel"},"bedrock_state":{"bedrock_identifier":"barrel","state":{"facing_direction":5,"open_bit":true }}},{"java_state":{"Properties":{"open":"false","facing":"east"},"Name":"minecraft:barrel"},"bedrock_state":{"bedrock_identifier":"barrel","state":{"facing_direction":5,"open_bit":false }}},{"java_state":{"Properties":{"open":"true","facing":"south"},"Name":"minecraft:barrel"},"bedrock_state":{"bedrock_identifier":"barrel","state":{"facing_direction":3,"open_bit":true }}},{"java_state":{"Properties":{"open":"false","facing":"south"},"Name":"minecraft:barrel"},"bedrock_state":{"bedrock_identifier":"barrel","state":{"facing_direction":3,"open_bit":false }}},{"java_state":{"Properties":{"open":"true","facing":"west"},"Name":"minecraft:barrel"},"bedrock_state":{"bedrock_identifier":"barrel","state":{"facing_direction":4,"open_bit":true }}},{"java_state":{"Properties":{"open":"false","facing":"west"},"Name":"minecraft:barrel"},"bedrock_state":{"bedrock_identifier":"barrel","state":{"facing_direction":4,"open_bit":false }}},{"java_state":{"Properties":{"open":"true","facing":"up"},"Name":"minecraft:barrel"},"bedrock_state":{"bedrock_identifier":"barrel","state":{"facing_direction":1,"open_bit":true }}},{"java_state":{"Properties":{"open":"false","facing":"up"},"Name":"minecraft:barrel"},"bedrock_state":{"bedrock_identifier":"barrel","state":{"facing_direction":1,"open_bit":false }}},{"java_state":{"Properties":{"open":"true","facing":"down"},"Name":"minecraft:barrel"},"bedrock_state":{"bedrock_identifier":"barrel","state":{"facing_direction":0,"open_bit":true }}},{"java_state":{"Properties":{"open":"false","facing":"down"},"Name":"minecraft:barrel"},"bedrock_state":{"bedrock_identifier":"barrel","state":{"facing_direction":0,"open_bit":false }}},{"java_state":{"Properties":{"lit":"true","facing":"north"},"Name":"minecraft:smoker"},"bedrock_state":{"bedrock_identifier":"lit_smoker","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"lit":"false","facing":"north"},"Name":"minecraft:smoker"},"bedrock_state":{"bedrock_identifier":"smoker","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"lit":"true","facing":"south"},"Name":"minecraft:smoker"},"bedrock_state":{"bedrock_identifier":"lit_smoker","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"lit":"false","facing":"south"},"Name":"minecraft:smoker"},"bedrock_state":{"bedrock_identifier":"smoker","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"lit":"true","facing":"west"},"Name":"minecraft:smoker"},"bedrock_state":{"bedrock_identifier":"lit_smoker","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"lit":"false","facing":"west"},"Name":"minecraft:smoker"},"bedrock_state":{"bedrock_identifier":"smoker","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"lit":"true","facing":"east"},"Name":"minecraft:smoker"},"bedrock_state":{"bedrock_identifier":"lit_smoker","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"lit":"false","facing":"east"},"Name":"minecraft:smoker"},"bedrock_state":{"bedrock_identifier":"smoker","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"lit":"true","facing":"north"},"Name":"minecraft:blast_furnace"},"bedrock_state":{"bedrock_identifier":"lit_blast_furnace","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"lit":"false","facing":"north"},"Name":"minecraft:blast_furnace"},"bedrock_state":{"bedrock_identifier":"blast_furnace","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"lit":"true","facing":"south"},"Name":"minecraft:blast_furnace"},"bedrock_state":{"bedrock_identifier":"lit_blast_furnace","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"lit":"false","facing":"south"},"Name":"minecraft:blast_furnace"},"bedrock_state":{"bedrock_identifier":"blast_furnace","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"lit":"true","facing":"west"},"Name":"minecraft:blast_furnace"},"bedrock_state":{"bedrock_identifier":"lit_blast_furnace","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"lit":"false","facing":"west"},"Name":"minecraft:blast_furnace"},"bedrock_state":{"bedrock_identifier":"blast_furnace","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"lit":"true","facing":"east"},"Name":"minecraft:blast_furnace"},"bedrock_state":{"bedrock_identifier":"lit_blast_furnace","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"lit":"false","facing":"east"},"Name":"minecraft:blast_furnace"},"bedrock_state":{"bedrock_identifier":"blast_furnace","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Name":"minecraft:cartography_table"},"bedrock_state":{"bedrock_identifier":"cartography_table"}},{"java_state":{"Name":"minecraft:fletching_table"},"bedrock_state":{"bedrock_identifier":"fletching_table"}},{"java_state":{"Properties":{"facing":"north","face":"floor"},"Name":"minecraft:grindstone"},"bedrock_state":{"bedrock_identifier":"grindstone","state":{"attachment":"standing","direction":2 }}},{"java_state":{"Properties":{"facing":"south","face":"floor"},"Name":"minecraft:grindstone"},"bedrock_state":{"bedrock_identifier":"grindstone","state":{"attachment":"standing","direction":0 }}},{"java_state":{"Properties":{"facing":"west","face":"floor"},"Name":"minecraft:grindstone"},"bedrock_state":{"bedrock_identifier":"grindstone","state":{"attachment":"standing","direction":1 }}},{"java_state":{"Properties":{"facing":"east","face":"floor"},"Name":"minecraft:grindstone"},"bedrock_state":{"bedrock_identifier":"grindstone","state":{"attachment":"standing","direction":3 }}},{"java_state":{"Properties":{"facing":"north","face":"wall"},"Name":"minecraft:grindstone"},"bedrock_state":{"bedrock_identifier":"grindstone","state":{"attachment":"side","direction":2 }}},{"java_state":{"Properties":{"facing":"south","face":"wall"},"Name":"minecraft:grindstone"},"bedrock_state":{"bedrock_identifier":"grindstone","state":{"attachment":"side","direction":0 }}},{"java_state":{"Properties":{"facing":"west","face":"wall"},"Name":"minecraft:grindstone"},"bedrock_state":{"bedrock_identifier":"grindstone","state":{"attachment":"side","direction":1 }}},{"java_state":{"Properties":{"facing":"east","face":"wall"},"Name":"minecraft:grindstone"},"bedrock_state":{"bedrock_identifier":"grindstone","state":{"attachment":"side","direction":3 }}},{"java_state":{"Properties":{"facing":"north","face":"ceiling"},"Name":"minecraft:grindstone"},"bedrock_state":{"bedrock_identifier":"grindstone","state":{"attachment":"hanging","direction":2 }}},{"java_state":{"Properties":{"facing":"south","face":"ceiling"},"Name":"minecraft:grindstone"},"bedrock_state":{"bedrock_identifier":"grindstone","state":{"attachment":"hanging","direction":0 }}},{"java_state":{"Properties":{"facing":"west","face":"ceiling"},"Name":"minecraft:grindstone"},"bedrock_state":{"bedrock_identifier":"grindstone","state":{"attachment":"hanging","direction":1 }}},{"java_state":{"Properties":{"facing":"east","face":"ceiling"},"Name":"minecraft:grindstone"},"bedrock_state":{"bedrock_identifier":"grindstone","state":{"attachment":"hanging","direction":3 }}},{"java_state":{"Properties":{"powered":"true","has_book":"true","facing":"north"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":true,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"false","has_book":"true","facing":"north"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":false,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"true","has_book":"false","facing":"north"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":true,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"false","has_book":"false","facing":"north"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":false,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"powered":"true","has_book":"true","facing":"south"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":true,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"false","has_book":"true","facing":"south"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":false,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"true","has_book":"false","facing":"south"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":true,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"false","has_book":"false","facing":"south"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":false,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"powered":"true","has_book":"true","facing":"west"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":true,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"false","has_book":"true","facing":"west"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":false,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"true","has_book":"false","facing":"west"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":true,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"false","has_book":"false","facing":"west"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":false,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"powered":"true","has_book":"true","facing":"east"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":true,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"false","has_book":"true","facing":"east"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":false,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"true","has_book":"false","facing":"east"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":true,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"false","has_book":"false","facing":"east"},"Name":"minecraft:lectern"},"bedrock_state":{"bedrock_identifier":"lectern","state":{"powered_bit":false,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Name":"minecraft:smithing_table"},"bedrock_state":{"bedrock_identifier":"smithing_table"}},{"java_state":{"Properties":{"facing":"north"},"Name":"minecraft:stonecutter"},"bedrock_state":{"bedrock_identifier":"stonecutter_block","state":{"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"facing":"south"},"Name":"minecraft:stonecutter"},"bedrock_state":{"bedrock_identifier":"stonecutter_block","state":{"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"facing":"west"},"Name":"minecraft:stonecutter"},"bedrock_state":{"bedrock_identifier":"stonecutter_block","state":{"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"facing":"east"},"Name":"minecraft:stonecutter"},"bedrock_state":{"bedrock_identifier":"stonecutter_block","state":{"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"powered":"true","facing":"north","attachment":"floor"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"standing","toggle_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","facing":"north","attachment":"floor"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"standing","toggle_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","facing":"south","attachment":"floor"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"standing","toggle_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","facing":"south","attachment":"floor"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"standing","toggle_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","facing":"west","attachment":"floor"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"standing","toggle_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","facing":"west","attachment":"floor"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"standing","toggle_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","facing":"east","attachment":"floor"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"standing","toggle_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","facing":"east","attachment":"floor"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"standing","toggle_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","facing":"north","attachment":"ceiling"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"hanging","toggle_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","facing":"north","attachment":"ceiling"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"hanging","toggle_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","facing":"south","attachment":"ceiling"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"hanging","toggle_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","facing":"south","attachment":"ceiling"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"hanging","toggle_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","facing":"west","attachment":"ceiling"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"hanging","toggle_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","facing":"west","attachment":"ceiling"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"hanging","toggle_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","facing":"east","attachment":"ceiling"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"hanging","toggle_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","facing":"east","attachment":"ceiling"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"hanging","toggle_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","facing":"north","attachment":"single_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"side","toggle_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","facing":"north","attachment":"single_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"side","toggle_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","facing":"south","attachment":"single_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"side","toggle_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","facing":"south","attachment":"single_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"side","toggle_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","facing":"west","attachment":"single_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"side","toggle_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","facing":"west","attachment":"single_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"side","toggle_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","facing":"east","attachment":"single_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"side","toggle_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","facing":"east","attachment":"single_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"side","toggle_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","facing":"north","attachment":"double_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"multiple","toggle_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","facing":"north","attachment":"double_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"multiple","toggle_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","facing":"south","attachment":"double_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"multiple","toggle_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","facing":"south","attachment":"double_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"multiple","toggle_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","facing":"west","attachment":"double_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"multiple","toggle_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","facing":"west","attachment":"double_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"multiple","toggle_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","facing":"east","attachment":"double_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"multiple","toggle_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","facing":"east","attachment":"double_wall"},"Name":"minecraft:bell"},"bedrock_state":{"bedrock_identifier":"bell","state":{"attachment":"multiple","toggle_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","hanging":"true"},"Name":"minecraft:lantern"},"bedrock_state":{"bedrock_identifier":"lantern","state":{"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","hanging":"true"},"Name":"minecraft:lantern"},"bedrock_state":{"bedrock_identifier":"lantern","state":{"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","hanging":"false"},"Name":"minecraft:lantern"},"bedrock_state":{"bedrock_identifier":"lantern","state":{"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","hanging":"false"},"Name":"minecraft:lantern"},"bedrock_state":{"bedrock_identifier":"lantern","state":{"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","hanging":"true"},"Name":"minecraft:soul_lantern"},"bedrock_state":{"bedrock_identifier":"soul_lantern","state":{"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"false","hanging":"true"},"Name":"minecraft:soul_lantern"},"bedrock_state":{"bedrock_identifier":"soul_lantern","state":{"hanging":true }}},{"java_state":{"Properties":{"waterlogged":"true","hanging":"false"},"Name":"minecraft:soul_lantern"},"bedrock_state":{"bedrock_identifier":"soul_lantern","state":{"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"false","hanging":"false"},"Name":"minecraft:soul_lantern"},"bedrock_state":{"bedrock_identifier":"soul_lantern","state":{"hanging":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"true","facing":"north"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"north","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"true","facing":"north"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"north","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"true","facing":"north"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"north","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"true","facing":"north"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"north","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"false","facing":"north"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"north","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"false","facing":"north"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"north","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"false","facing":"north"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"north","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"false","facing":"north"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"north","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"true","facing":"south"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"south","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"true","facing":"south"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"south","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"true","facing":"south"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"south","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"true","facing":"south"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"south","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"false","facing":"south"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"south","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"false","facing":"south"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"south","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"false","facing":"south"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"south","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"false","facing":"south"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"south","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"true","facing":"west"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"west","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"true","facing":"west"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"west","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"true","facing":"west"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"west","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"true","facing":"west"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"west","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"false","facing":"west"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"west","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"false","facing":"west"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"west","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"false","facing":"west"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"west","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"false","facing":"west"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"west","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"true","facing":"east"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"east","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"true","facing":"east"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"east","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"true","facing":"east"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"east","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"true","facing":"east"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"east","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"false","facing":"east"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"east","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"false","facing":"east"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"east","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"false","facing":"east"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"east","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"false","facing":"east"},"Name":"minecraft:campfire"},"bedrock_state":{"bedrock_identifier":"campfire","state":{"minecraft:cardinal_direction":"east","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"true","facing":"north"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"north","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"true","facing":"north"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"north","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"true","facing":"north"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"north","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"true","facing":"north"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"north","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"false","facing":"north"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"north","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"false","facing":"north"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"north","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"false","facing":"north"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"north","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"false","facing":"north"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"north","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"true","facing":"south"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"south","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"true","facing":"south"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"south","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"true","facing":"south"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"south","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"true","facing":"south"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"south","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"false","facing":"south"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"south","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"false","facing":"south"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"south","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"false","facing":"south"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"south","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"false","facing":"south"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"south","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"true","facing":"west"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"west","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"true","facing":"west"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"west","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"true","facing":"west"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"west","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"true","facing":"west"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"west","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"false","facing":"west"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"west","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"false","facing":"west"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"west","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"false","facing":"west"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"west","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"false","facing":"west"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"west","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"true","facing":"east"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"east","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"true","facing":"east"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"east","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"true","facing":"east"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"east","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"true","facing":"east"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"east","extinguished":false }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"true","lit":"false","facing":"east"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"east","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"true","lit":"false","facing":"east"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"east","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"true","signal_fire":"false","lit":"false","facing":"east"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"east","extinguished":true }}},{"java_state":{"Properties":{"waterlogged":"false","signal_fire":"false","lit":"false","facing":"east"},"Name":"minecraft:soul_campfire"},"bedrock_state":{"bedrock_identifier":"soul_campfire","state":{"minecraft:cardinal_direction":"east","extinguished":true }}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:sweet_berry_bush"},"bedrock_state":{"bedrock_identifier":"sweet_berry_bush","state":{"growth":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:sweet_berry_bush"},"bedrock_state":{"bedrock_identifier":"sweet_berry_bush","state":{"growth":1 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:sweet_berry_bush"},"bedrock_state":{"bedrock_identifier":"sweet_berry_bush","state":{"growth":2 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:sweet_berry_bush"},"bedrock_state":{"bedrock_identifier":"sweet_berry_bush","state":{"growth":3 }}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:warped_stem"},"bedrock_state":{"bedrock_identifier":"warped_stem","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:warped_stem"},"bedrock_state":{"bedrock_identifier":"warped_stem","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:warped_stem"},"bedrock_state":{"bedrock_identifier":"warped_stem","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_warped_stem"},"bedrock_state":{"bedrock_identifier":"stripped_warped_stem","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_warped_stem"},"bedrock_state":{"bedrock_identifier":"stripped_warped_stem","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_warped_stem"},"bedrock_state":{"bedrock_identifier":"stripped_warped_stem","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:warped_hyphae"},"bedrock_state":{"bedrock_identifier":"warped_hyphae","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:warped_hyphae"},"bedrock_state":{"bedrock_identifier":"warped_hyphae","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:warped_hyphae"},"bedrock_state":{"bedrock_identifier":"warped_hyphae","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_warped_hyphae"},"bedrock_state":{"bedrock_identifier":"stripped_warped_hyphae","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_warped_hyphae"},"bedrock_state":{"bedrock_identifier":"stripped_warped_hyphae","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_warped_hyphae"},"bedrock_state":{"bedrock_identifier":"stripped_warped_hyphae","state":{"pillar_axis":"z"}}},{"java_state":{"Name":"minecraft:warped_nylium"},"bedrock_state":{"bedrock_identifier":"warped_nylium"}},{"java_state":{"Name":"minecraft:warped_fungus"},"bedrock_state":{"bedrock_identifier":"warped_fungus"}},{"java_state":{"Name":"minecraft:warped_wart_block"},"bedrock_state":{"bedrock_identifier":"warped_wart_block"}},{"java_state":{"Name":"minecraft:warped_roots"},"bedrock_state":{"bedrock_identifier":"warped_roots"}},{"java_state":{"Name":"minecraft:nether_sprouts"},"bedrock_state":{"bedrock_identifier":"nether_sprouts"}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:crimson_stem"},"bedrock_state":{"bedrock_identifier":"crimson_stem","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:crimson_stem"},"bedrock_state":{"bedrock_identifier":"crimson_stem","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:crimson_stem"},"bedrock_state":{"bedrock_identifier":"crimson_stem","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_crimson_stem"},"bedrock_state":{"bedrock_identifier":"stripped_crimson_stem","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_crimson_stem"},"bedrock_state":{"bedrock_identifier":"stripped_crimson_stem","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_crimson_stem"},"bedrock_state":{"bedrock_identifier":"stripped_crimson_stem","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:crimson_hyphae"},"bedrock_state":{"bedrock_identifier":"crimson_hyphae","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:crimson_hyphae"},"bedrock_state":{"bedrock_identifier":"crimson_hyphae","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:crimson_hyphae"},"bedrock_state":{"bedrock_identifier":"crimson_hyphae","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:stripped_crimson_hyphae"},"bedrock_state":{"bedrock_identifier":"stripped_crimson_hyphae","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:stripped_crimson_hyphae"},"bedrock_state":{"bedrock_identifier":"stripped_crimson_hyphae","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:stripped_crimson_hyphae"},"bedrock_state":{"bedrock_identifier":"stripped_crimson_hyphae","state":{"pillar_axis":"z"}}},{"java_state":{"Name":"minecraft:crimson_nylium"},"bedrock_state":{"bedrock_identifier":"crimson_nylium"}},{"java_state":{"Name":"minecraft:crimson_fungus"},"bedrock_state":{"bedrock_identifier":"crimson_fungus"}},{"java_state":{"Name":"minecraft:shroomlight"},"bedrock_state":{"bedrock_identifier":"shroomlight"}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":1 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":2 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":3 }}},{"java_state":{"Properties":{"age":"4"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":4 }}},{"java_state":{"Properties":{"age":"5"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":5 }}},{"java_state":{"Properties":{"age":"6"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":6 }}},{"java_state":{"Properties":{"age":"7"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":7 }}},{"java_state":{"Properties":{"age":"8"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":8 }}},{"java_state":{"Properties":{"age":"9"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":9 }}},{"java_state":{"Properties":{"age":"10"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":10 }}},{"java_state":{"Properties":{"age":"11"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":11 }}},{"java_state":{"Properties":{"age":"12"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":12 }}},{"java_state":{"Properties":{"age":"13"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":13 }}},{"java_state":{"Properties":{"age":"14"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":14 }}},{"java_state":{"Properties":{"age":"15"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":15 }}},{"java_state":{"Properties":{"age":"16"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":16 }}},{"java_state":{"Properties":{"age":"17"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":17 }}},{"java_state":{"Properties":{"age":"18"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":18 }}},{"java_state":{"Properties":{"age":"19"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":19 }}},{"java_state":{"Properties":{"age":"20"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":20 }}},{"java_state":{"Properties":{"age":"21"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":21 }}},{"java_state":{"Properties":{"age":"22"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":22 }}},{"java_state":{"Properties":{"age":"23"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":23 }}},{"java_state":{"Properties":{"age":"24"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":24 }}},{"java_state":{"Properties":{"age":"25"},"Name":"minecraft:weeping_vines"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":25 }}},{"java_state":{"Name":"minecraft:weeping_vines_plant"},"bedrock_state":{"bedrock_identifier":"weeping_vines","state":{"weeping_vines_age":0 }}},{"java_state":{"Properties":{"age":"0"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":0 }}},{"java_state":{"Properties":{"age":"1"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":1 }}},{"java_state":{"Properties":{"age":"2"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":2 }}},{"java_state":{"Properties":{"age":"3"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":3 }}},{"java_state":{"Properties":{"age":"4"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":4 }}},{"java_state":{"Properties":{"age":"5"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":5 }}},{"java_state":{"Properties":{"age":"6"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":6 }}},{"java_state":{"Properties":{"age":"7"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":7 }}},{"java_state":{"Properties":{"age":"8"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":8 }}},{"java_state":{"Properties":{"age":"9"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":9 }}},{"java_state":{"Properties":{"age":"10"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":10 }}},{"java_state":{"Properties":{"age":"11"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":11 }}},{"java_state":{"Properties":{"age":"12"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":12 }}},{"java_state":{"Properties":{"age":"13"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":13 }}},{"java_state":{"Properties":{"age":"14"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":14 }}},{"java_state":{"Properties":{"age":"15"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":15 }}},{"java_state":{"Properties":{"age":"16"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":16 }}},{"java_state":{"Properties":{"age":"17"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":17 }}},{"java_state":{"Properties":{"age":"18"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":18 }}},{"java_state":{"Properties":{"age":"19"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":19 }}},{"java_state":{"Properties":{"age":"20"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":20 }}},{"java_state":{"Properties":{"age":"21"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":21 }}},{"java_state":{"Properties":{"age":"22"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":22 }}},{"java_state":{"Properties":{"age":"23"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":23 }}},{"java_state":{"Properties":{"age":"24"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":24 }}},{"java_state":{"Properties":{"age":"25"},"Name":"minecraft:twisting_vines"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":25 }}},{"java_state":{"Name":"minecraft:twisting_vines_plant"},"bedrock_state":{"bedrock_identifier":"twisting_vines","state":{"twisting_vines_age":0 }}},{"java_state":{"Name":"minecraft:crimson_roots"},"bedrock_state":{"bedrock_identifier":"crimson_roots"}},{"java_state":{"Name":"minecraft:crimson_planks"},"bedrock_state":{"bedrock_identifier":"crimson_planks"}},{"java_state":{"Name":"minecraft:warped_planks"},"bedrock_state":{"bedrock_identifier":"warped_planks"}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:crimson_slab"},"bedrock_state":{"bedrock_identifier":"crimson_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:crimson_slab"},"bedrock_state":{"bedrock_identifier":"crimson_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:crimson_slab"},"bedrock_state":{"bedrock_identifier":"crimson_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:crimson_slab"},"bedrock_state":{"bedrock_identifier":"crimson_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:crimson_slab"},"bedrock_state":{"bedrock_identifier":"crimson_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:crimson_slab"},"bedrock_state":{"bedrock_identifier":"crimson_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:warped_slab"},"bedrock_state":{"bedrock_identifier":"warped_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:warped_slab"},"bedrock_state":{"bedrock_identifier":"warped_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:warped_slab"},"bedrock_state":{"bedrock_identifier":"warped_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:warped_slab"},"bedrock_state":{"bedrock_identifier":"warped_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:warped_slab"},"bedrock_state":{"bedrock_identifier":"warped_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:warped_slab"},"bedrock_state":{"bedrock_identifier":"warped_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"powered":"true"},"Name":"minecraft:crimson_pressure_plate"},"bedrock_state":{"bedrock_identifier":"crimson_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"powered":"false"},"Name":"minecraft:crimson_pressure_plate"},"bedrock_state":{"bedrock_identifier":"crimson_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"powered":"true"},"Name":"minecraft:warped_pressure_plate"},"bedrock_state":{"bedrock_identifier":"warped_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"powered":"false"},"Name":"minecraft:warped_pressure_plate"},"bedrock_state":{"bedrock_identifier":"warped_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:crimson_fence"},"bedrock_state":{"bedrock_identifier":"crimson_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"true"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"true","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"true","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"true","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"true","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"true","north":"false","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"true","north":"false","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","south":"false","north":"false","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","south":"false","north":"false","east":"false"},"Name":"minecraft:warped_fence"},"bedrock_state":{"bedrock_identifier":"warped_fence"}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:crimson_trapdoor"},"bedrock_state":{"bedrock_identifier":"crimson_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:warped_trapdoor"},"bedrock_state":{"bedrock_identifier":"warped_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:crimson_fence_gate"},"bedrock_state":{"bedrock_identifier":"crimson_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"north"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"north"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"north"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"north"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"south"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"south"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"south"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"south"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"west"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"west"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"west"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"west"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"true","facing":"east"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"true","facing":"east"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","in_wall":"false","facing":"east"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":true,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","in_wall":"false","facing":"east"},"Name":"minecraft:warped_fence_gate"},"bedrock_state":{"bedrock_identifier":"warped_fence_gate","state":{"open_bit":false,"in_wall_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:crimson_stairs"},"bedrock_state":{"bedrock_identifier":"crimson_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:warped_stairs"},"bedrock_state":{"bedrock_identifier":"warped_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"floor"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"floor"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"floor"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"floor"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"floor"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"floor"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"floor"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"floor"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"wall"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":2,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"wall"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":2,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"wall"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":3,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"wall"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":3,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"wall"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":4,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"wall"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":4,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"wall"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":5,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"wall"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":5,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"ceiling"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"ceiling"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"ceiling"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"ceiling"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"ceiling"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"ceiling"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"ceiling"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"ceiling"},"Name":"minecraft:crimson_button"},"bedrock_state":{"bedrock_identifier":"crimson_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"floor"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"floor"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"floor"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"floor"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"floor"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"floor"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"floor"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"floor"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"wall"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":2,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"wall"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":2,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"wall"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":3,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"wall"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":3,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"wall"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":4,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"wall"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":4,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"wall"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":5,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"wall"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":5,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"ceiling"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"ceiling"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"ceiling"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"ceiling"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"ceiling"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"ceiling"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"ceiling"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"ceiling"},"Name":"minecraft:warped_button"},"bedrock_state":{"bedrock_identifier":"warped_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:crimson_door"},"bedrock_state":{"bedrock_identifier":"crimson_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":true,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:warped_door"},"bedrock_state":{"bedrock_identifier":"warped_door","state":{"open_bit":false,"upper_block_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15"},"Name":"minecraft:crimson_sign"},"bedrock_state":{"bedrock_identifier":"crimson_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"0"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"0"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"1"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"1"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"2"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"2"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"3"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"3"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"4"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"4"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"5"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"5"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"6"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"6"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":6 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"7"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"7"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":7 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"8"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"8"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":8 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"9"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"9"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":9 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"10"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"10"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":10 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"11"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"11"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":11 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"12"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"12"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":12 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"13"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"13"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":13 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"14"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"14"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":14 }}},{"java_state":{"Properties":{"waterlogged":"true","rotation":"15"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"false","rotation":"15"},"Name":"minecraft:warped_sign"},"bedrock_state":{"bedrock_identifier":"warped_standing_sign","state":{"ground_sign_direction":15 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:crimson_wall_sign"},"bedrock_state":{"bedrock_identifier":"crimson_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:crimson_wall_sign"},"bedrock_state":{"bedrock_identifier":"crimson_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:crimson_wall_sign"},"bedrock_state":{"bedrock_identifier":"crimson_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:crimson_wall_sign"},"bedrock_state":{"bedrock_identifier":"crimson_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:crimson_wall_sign"},"bedrock_state":{"bedrock_identifier":"crimson_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:crimson_wall_sign"},"bedrock_state":{"bedrock_identifier":"crimson_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:crimson_wall_sign"},"bedrock_state":{"bedrock_identifier":"crimson_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:crimson_wall_sign"},"bedrock_state":{"bedrock_identifier":"crimson_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:warped_wall_sign"},"bedrock_state":{"bedrock_identifier":"warped_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:warped_wall_sign"},"bedrock_state":{"bedrock_identifier":"warped_wall_sign","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:warped_wall_sign"},"bedrock_state":{"bedrock_identifier":"warped_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:warped_wall_sign"},"bedrock_state":{"bedrock_identifier":"warped_wall_sign","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:warped_wall_sign"},"bedrock_state":{"bedrock_identifier":"warped_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:warped_wall_sign"},"bedrock_state":{"bedrock_identifier":"warped_wall_sign","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:warped_wall_sign"},"bedrock_state":{"bedrock_identifier":"warped_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:warped_wall_sign"},"bedrock_state":{"bedrock_identifier":"warped_wall_sign","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"mode":"save"},"Name":"minecraft:structure_block"},"bedrock_state":{"bedrock_identifier":"structure_block","state":{"structure_block_type":"save"}}},{"java_state":{"Properties":{"mode":"load"},"Name":"minecraft:structure_block"},"bedrock_state":{"bedrock_identifier":"structure_block","state":{"structure_block_type":"load"}}},{"java_state":{"Properties":{"mode":"corner"},"Name":"minecraft:structure_block"},"bedrock_state":{"bedrock_identifier":"structure_block","state":{"structure_block_type":"corner"}}},{"java_state":{"Properties":{"mode":"data"},"Name":"minecraft:structure_block"},"bedrock_state":{"bedrock_identifier":"structure_block","state":{"structure_block_type":"data"}}},{"java_state":{"Properties":{"orientation":"down_east"},"Name":"minecraft:jigsaw"},"bedrock_state":{"bedrock_identifier":"jigsaw","state":{"facing_direction":0,"rotation":0 }}},{"java_state":{"Properties":{"orientation":"down_north"},"Name":"minecraft:jigsaw"},"bedrock_state":{"bedrock_identifier":"jigsaw","state":{"facing_direction":0,"rotation":0 }}},{"java_state":{"Properties":{"orientation":"down_south"},"Name":"minecraft:jigsaw"},"bedrock_state":{"bedrock_identifier":"jigsaw","state":{"facing_direction":0,"rotation":0 }}},{"java_state":{"Properties":{"orientation":"down_west"},"Name":"minecraft:jigsaw"},"bedrock_state":{"bedrock_identifier":"jigsaw","state":{"facing_direction":0,"rotation":0 }}},{"java_state":{"Properties":{"orientation":"up_east"},"Name":"minecraft:jigsaw"},"bedrock_state":{"bedrock_identifier":"jigsaw","state":{"facing_direction":0,"rotation":0 }}},{"java_state":{"Properties":{"orientation":"up_north"},"Name":"minecraft:jigsaw"},"bedrock_state":{"bedrock_identifier":"jigsaw","state":{"facing_direction":0,"rotation":0 }}},{"java_state":{"Properties":{"orientation":"up_south"},"Name":"minecraft:jigsaw"},"bedrock_state":{"bedrock_identifier":"jigsaw","state":{"facing_direction":0,"rotation":0 }}},{"java_state":{"Properties":{"orientation":"up_west"},"Name":"minecraft:jigsaw"},"bedrock_state":{"bedrock_identifier":"jigsaw","state":{"facing_direction":0,"rotation":0 }}},{"java_state":{"Properties":{"orientation":"west_up"},"Name":"minecraft:jigsaw"},"bedrock_state":{"bedrock_identifier":"jigsaw","state":{"facing_direction":0,"rotation":0 }}},{"java_state":{"Properties":{"orientation":"east_up"},"Name":"minecraft:jigsaw"},"bedrock_state":{"bedrock_identifier":"jigsaw","state":{"facing_direction":0,"rotation":0 }}},{"java_state":{"Properties":{"orientation":"north_up"},"Name":"minecraft:jigsaw"},"bedrock_state":{"bedrock_identifier":"jigsaw","state":{"facing_direction":0,"rotation":0 }}},{"java_state":{"Properties":{"orientation":"south_up"},"Name":"minecraft:jigsaw"},"bedrock_state":{"bedrock_identifier":"jigsaw","state":{"facing_direction":0,"rotation":0 }}},{"java_state":{"Properties":{"level":"0"},"Name":"minecraft:composter"},"bedrock_state":{"bedrock_identifier":"composter","state":{"composter_fill_level":0 }}},{"java_state":{"Properties":{"level":"1"},"Name":"minecraft:composter"},"bedrock_state":{"bedrock_identifier":"composter","state":{"composter_fill_level":1 }}},{"java_state":{"Properties":{"level":"2"},"Name":"minecraft:composter"},"bedrock_state":{"bedrock_identifier":"composter","state":{"composter_fill_level":2 }}},{"java_state":{"Properties":{"level":"3"},"Name":"minecraft:composter"},"bedrock_state":{"bedrock_identifier":"composter","state":{"composter_fill_level":3 }}},{"java_state":{"Properties":{"level":"4"},"Name":"minecraft:composter"},"bedrock_state":{"bedrock_identifier":"composter","state":{"composter_fill_level":4 }}},{"java_state":{"Properties":{"level":"5"},"Name":"minecraft:composter"},"bedrock_state":{"bedrock_identifier":"composter","state":{"composter_fill_level":5 }}},{"java_state":{"Properties":{"level":"6"},"Name":"minecraft:composter"},"bedrock_state":{"bedrock_identifier":"composter","state":{"composter_fill_level":6 }}},{"java_state":{"Properties":{"level":"7"},"Name":"minecraft:composter"},"bedrock_state":{"bedrock_identifier":"composter","state":{"composter_fill_level":7 }}},{"java_state":{"Properties":{"level":"8"},"Name":"minecraft:composter"},"bedrock_state":{"bedrock_identifier":"composter","state":{"composter_fill_level":8 }}},{"java_state":{"Properties":{"power":"0"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"1"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"2"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"3"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"4"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"5"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"6"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"7"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"8"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"9"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"10"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"11"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"12"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"13"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"14"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"power":"15"},"Name":"minecraft:target"},"bedrock_state":{"bedrock_identifier":"target"}},{"java_state":{"Properties":{"honey_level":"0","facing":"north"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":0,"direction":2 }}},{"java_state":{"Properties":{"honey_level":"1","facing":"north"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":1,"direction":2 }}},{"java_state":{"Properties":{"honey_level":"2","facing":"north"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":2,"direction":2 }}},{"java_state":{"Properties":{"honey_level":"3","facing":"north"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":3,"direction":2 }}},{"java_state":{"Properties":{"honey_level":"4","facing":"north"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":4,"direction":2 }}},{"java_state":{"Properties":{"honey_level":"5","facing":"north"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":5,"direction":2 }}},{"java_state":{"Properties":{"honey_level":"0","facing":"south"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":0,"direction":0 }}},{"java_state":{"Properties":{"honey_level":"1","facing":"south"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":1,"direction":0 }}},{"java_state":{"Properties":{"honey_level":"2","facing":"south"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":2,"direction":0 }}},{"java_state":{"Properties":{"honey_level":"3","facing":"south"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":3,"direction":0 }}},{"java_state":{"Properties":{"honey_level":"4","facing":"south"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":4,"direction":0 }}},{"java_state":{"Properties":{"honey_level":"5","facing":"south"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":5,"direction":0 }}},{"java_state":{"Properties":{"honey_level":"0","facing":"west"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":0,"direction":1 }}},{"java_state":{"Properties":{"honey_level":"1","facing":"west"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":1,"direction":1 }}},{"java_state":{"Properties":{"honey_level":"2","facing":"west"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":2,"direction":1 }}},{"java_state":{"Properties":{"honey_level":"3","facing":"west"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":3,"direction":1 }}},{"java_state":{"Properties":{"honey_level":"4","facing":"west"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":4,"direction":1 }}},{"java_state":{"Properties":{"honey_level":"5","facing":"west"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":5,"direction":1 }}},{"java_state":{"Properties":{"honey_level":"0","facing":"east"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":0,"direction":3 }}},{"java_state":{"Properties":{"honey_level":"1","facing":"east"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":1,"direction":3 }}},{"java_state":{"Properties":{"honey_level":"2","facing":"east"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":2,"direction":3 }}},{"java_state":{"Properties":{"honey_level":"3","facing":"east"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":3,"direction":3 }}},{"java_state":{"Properties":{"honey_level":"4","facing":"east"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":4,"direction":3 }}},{"java_state":{"Properties":{"honey_level":"5","facing":"east"},"Name":"minecraft:bee_nest"},"bedrock_state":{"bedrock_identifier":"bee_nest","state":{"honey_level":5,"direction":3 }}},{"java_state":{"Properties":{"honey_level":"0","facing":"north"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":0,"direction":2 }}},{"java_state":{"Properties":{"honey_level":"1","facing":"north"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":1,"direction":2 }}},{"java_state":{"Properties":{"honey_level":"2","facing":"north"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":2,"direction":2 }}},{"java_state":{"Properties":{"honey_level":"3","facing":"north"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":3,"direction":2 }}},{"java_state":{"Properties":{"honey_level":"4","facing":"north"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":4,"direction":2 }}},{"java_state":{"Properties":{"honey_level":"5","facing":"north"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":5,"direction":2 }}},{"java_state":{"Properties":{"honey_level":"0","facing":"south"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":0,"direction":0 }}},{"java_state":{"Properties":{"honey_level":"1","facing":"south"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":1,"direction":0 }}},{"java_state":{"Properties":{"honey_level":"2","facing":"south"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":2,"direction":0 }}},{"java_state":{"Properties":{"honey_level":"3","facing":"south"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":3,"direction":0 }}},{"java_state":{"Properties":{"honey_level":"4","facing":"south"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":4,"direction":0 }}},{"java_state":{"Properties":{"honey_level":"5","facing":"south"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":5,"direction":0 }}},{"java_state":{"Properties":{"honey_level":"0","facing":"west"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":0,"direction":1 }}},{"java_state":{"Properties":{"honey_level":"1","facing":"west"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":1,"direction":1 }}},{"java_state":{"Properties":{"honey_level":"2","facing":"west"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":2,"direction":1 }}},{"java_state":{"Properties":{"honey_level":"3","facing":"west"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":3,"direction":1 }}},{"java_state":{"Properties":{"honey_level":"4","facing":"west"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":4,"direction":1 }}},{"java_state":{"Properties":{"honey_level":"5","facing":"west"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":5,"direction":1 }}},{"java_state":{"Properties":{"honey_level":"0","facing":"east"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":0,"direction":3 }}},{"java_state":{"Properties":{"honey_level":"1","facing":"east"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":1,"direction":3 }}},{"java_state":{"Properties":{"honey_level":"2","facing":"east"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":2,"direction":3 }}},{"java_state":{"Properties":{"honey_level":"3","facing":"east"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":3,"direction":3 }}},{"java_state":{"Properties":{"honey_level":"4","facing":"east"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":4,"direction":3 }}},{"java_state":{"Properties":{"honey_level":"5","facing":"east"},"Name":"minecraft:beehive"},"bedrock_state":{"bedrock_identifier":"beehive","state":{"honey_level":5,"direction":3 }}},{"java_state":{"Name":"minecraft:honey_block"},"bedrock_state":{"bedrock_identifier":"honey_block"}},{"java_state":{"Name":"minecraft:honeycomb_block"},"bedrock_state":{"bedrock_identifier":"honeycomb_block"}},{"java_state":{"Name":"minecraft:netherite_block"},"bedrock_state":{"bedrock_identifier":"netherite_block"}},{"java_state":{"Name":"minecraft:ancient_debris"},"bedrock_state":{"bedrock_identifier":"ancient_debris"}},{"java_state":{"Name":"minecraft:crying_obsidian"},"bedrock_state":{"bedrock_identifier":"crying_obsidian"}},{"java_state":{"Properties":{"charges":"0"},"Name":"minecraft:respawn_anchor"},"bedrock_state":{"bedrock_identifier":"respawn_anchor","state":{"respawn_anchor_charge":0 }}},{"java_state":{"Properties":{"charges":"1"},"Name":"minecraft:respawn_anchor"},"bedrock_state":{"bedrock_identifier":"respawn_anchor","state":{"respawn_anchor_charge":1 }}},{"java_state":{"Properties":{"charges":"2"},"Name":"minecraft:respawn_anchor"},"bedrock_state":{"bedrock_identifier":"respawn_anchor","state":{"respawn_anchor_charge":2 }}},{"java_state":{"Properties":{"charges":"3"},"Name":"minecraft:respawn_anchor"},"bedrock_state":{"bedrock_identifier":"respawn_anchor","state":{"respawn_anchor_charge":3 }}},{"java_state":{"Properties":{"charges":"4"},"Name":"minecraft:respawn_anchor"},"bedrock_state":{"bedrock_identifier":"respawn_anchor","state":{"respawn_anchor_charge":4 }}},{"java_state":{"Name":"minecraft:potted_crimson_fungus"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_warped_fungus"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_crimson_roots"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_warped_roots"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:lodestone"},"bedrock_state":{"bedrock_identifier":"lodestone"}},{"java_state":{"Name":"minecraft:blackstone"},"bedrock_state":{"bedrock_identifier":"blackstone"}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:blackstone_wall"},"bedrock_state":{"bedrock_identifier":"blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:blackstone_slab"},"bedrock_state":{"bedrock_identifier":"blackstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:blackstone_slab"},"bedrock_state":{"bedrock_identifier":"blackstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:blackstone_slab"},"bedrock_state":{"bedrock_identifier":"blackstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:blackstone_slab"},"bedrock_state":{"bedrock_identifier":"blackstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:blackstone_slab"},"bedrock_state":{"bedrock_identifier":"blackstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:blackstone_slab"},"bedrock_state":{"bedrock_identifier":"blackstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Name":"minecraft:polished_blackstone"},"bedrock_state":{"bedrock_identifier":"polished_blackstone"}},{"java_state":{"Name":"minecraft:polished_blackstone_bricks"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_bricks"}},{"java_state":{"Name":"minecraft:cracked_polished_blackstone_bricks"},"bedrock_state":{"bedrock_identifier":"cracked_polished_blackstone_bricks"}},{"java_state":{"Name":"minecraft:chiseled_polished_blackstone"},"bedrock_state":{"bedrock_identifier":"chiseled_polished_blackstone"}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:polished_blackstone_brick_slab"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:polished_blackstone_brick_slab"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:polished_blackstone_brick_slab"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:polished_blackstone_brick_slab"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:polished_blackstone_brick_slab"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:polished_blackstone_brick_slab"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_brick_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_brick_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Name":"minecraft:gilded_blackstone"},"bedrock_state":{"bedrock_identifier":"gilded_blackstone"}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_blackstone_stairs"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:polished_blackstone_slab"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:polished_blackstone_slab"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:polished_blackstone_slab"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:polished_blackstone_slab"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:polished_blackstone_slab"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:polished_blackstone_slab"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"powered":"true"},"Name":"minecraft:polished_blackstone_pressure_plate"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_pressure_plate","state":{"redstone_signal":15 }}},{"java_state":{"Properties":{"powered":"false"},"Name":"minecraft:polished_blackstone_pressure_plate"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_pressure_plate","state":{"redstone_signal":0 }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"floor"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"floor"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"floor"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"floor"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"floor"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"floor"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"floor"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":1,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"floor"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":1,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"wall"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":2,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"wall"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":2,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"wall"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":3,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"wall"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":3,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"wall"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":4,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"wall"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":4,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"wall"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":5,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"wall"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":5,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"north","face":"ceiling"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"north","face":"ceiling"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"south","face":"ceiling"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"south","face":"ceiling"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"west","face":"ceiling"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"west","face":"ceiling"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"powered":"true","facing":"east","face":"ceiling"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":0,"button_pressed_bit":true }}},{"java_state":{"Properties":{"powered":"false","facing":"east","face":"ceiling"},"Name":"minecraft:polished_blackstone_button"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_button","state":{"facing_direction":0,"button_pressed_bit":false }}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_blackstone_wall"},"bedrock_state":{"bedrock_identifier":"polished_blackstone_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Name":"minecraft:chiseled_nether_bricks"},"bedrock_state":{"bedrock_identifier":"chiseled_nether_bricks"}},{"java_state":{"Name":"minecraft:cracked_nether_bricks"},"bedrock_state":{"bedrock_identifier":"cracked_nether_bricks"}},{"java_state":{"Name":"minecraft:quartz_bricks"},"bedrock_state":{"bedrock_identifier":"quartz_bricks"}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:candle"},"bedrock_state":{"bedrock_identifier":"candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:white_candle"},"bedrock_state":{"bedrock_identifier":"white_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:orange_candle"},"bedrock_state":{"bedrock_identifier":"orange_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:magenta_candle"},"bedrock_state":{"bedrock_identifier":"magenta_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:light_blue_candle"},"bedrock_state":{"bedrock_identifier":"light_blue_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:yellow_candle"},"bedrock_state":{"bedrock_identifier":"yellow_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:lime_candle"},"bedrock_state":{"bedrock_identifier":"lime_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:pink_candle"},"bedrock_state":{"bedrock_identifier":"pink_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:gray_candle"},"bedrock_state":{"bedrock_identifier":"gray_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:light_gray_candle"},"bedrock_state":{"bedrock_identifier":"light_gray_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:cyan_candle"},"bedrock_state":{"bedrock_identifier":"cyan_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:purple_candle"},"bedrock_state":{"bedrock_identifier":"purple_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:blue_candle"},"bedrock_state":{"bedrock_identifier":"blue_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:brown_candle"},"bedrock_state":{"bedrock_identifier":"brown_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:green_candle"},"bedrock_state":{"bedrock_identifier":"green_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:red_candle"},"bedrock_state":{"bedrock_identifier":"red_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"1"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"1"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":true,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"1"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"1"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":false,"candles":0 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"2"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"2"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":true,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"2"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"2"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":false,"candles":1 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"3"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"3"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":true,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"3"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"3"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":false,"candles":2 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"true","candles":"4"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"true","candles":"4"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":true,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"true","lit":"false","candles":"4"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"waterlogged":"false","lit":"false","candles":"4"},"Name":"minecraft:black_candle"},"bedrock_state":{"bedrock_identifier":"black_candle","state":{"lit":false,"candles":3 }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:candle_cake"},"bedrock_state":{"bedrock_identifier":"candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:candle_cake"},"bedrock_state":{"bedrock_identifier":"candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:white_candle_cake"},"bedrock_state":{"bedrock_identifier":"white_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:white_candle_cake"},"bedrock_state":{"bedrock_identifier":"white_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:orange_candle_cake"},"bedrock_state":{"bedrock_identifier":"orange_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:orange_candle_cake"},"bedrock_state":{"bedrock_identifier":"orange_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:magenta_candle_cake"},"bedrock_state":{"bedrock_identifier":"magenta_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:magenta_candle_cake"},"bedrock_state":{"bedrock_identifier":"magenta_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:light_blue_candle_cake"},"bedrock_state":{"bedrock_identifier":"light_blue_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:light_blue_candle_cake"},"bedrock_state":{"bedrock_identifier":"light_blue_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:yellow_candle_cake"},"bedrock_state":{"bedrock_identifier":"yellow_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:yellow_candle_cake"},"bedrock_state":{"bedrock_identifier":"yellow_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:lime_candle_cake"},"bedrock_state":{"bedrock_identifier":"lime_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:lime_candle_cake"},"bedrock_state":{"bedrock_identifier":"lime_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:pink_candle_cake"},"bedrock_state":{"bedrock_identifier":"pink_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:pink_candle_cake"},"bedrock_state":{"bedrock_identifier":"pink_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:gray_candle_cake"},"bedrock_state":{"bedrock_identifier":"gray_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:gray_candle_cake"},"bedrock_state":{"bedrock_identifier":"gray_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:light_gray_candle_cake"},"bedrock_state":{"bedrock_identifier":"light_gray_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:light_gray_candle_cake"},"bedrock_state":{"bedrock_identifier":"light_gray_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:cyan_candle_cake"},"bedrock_state":{"bedrock_identifier":"cyan_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:cyan_candle_cake"},"bedrock_state":{"bedrock_identifier":"cyan_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:purple_candle_cake"},"bedrock_state":{"bedrock_identifier":"purple_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:purple_candle_cake"},"bedrock_state":{"bedrock_identifier":"purple_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:blue_candle_cake"},"bedrock_state":{"bedrock_identifier":"blue_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:blue_candle_cake"},"bedrock_state":{"bedrock_identifier":"blue_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:brown_candle_cake"},"bedrock_state":{"bedrock_identifier":"brown_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:brown_candle_cake"},"bedrock_state":{"bedrock_identifier":"brown_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:green_candle_cake"},"bedrock_state":{"bedrock_identifier":"green_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:green_candle_cake"},"bedrock_state":{"bedrock_identifier":"green_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:red_candle_cake"},"bedrock_state":{"bedrock_identifier":"red_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:red_candle_cake"},"bedrock_state":{"bedrock_identifier":"red_candle_cake","state":{"lit":false }}},{"java_state":{"Properties":{"lit":"true"},"Name":"minecraft:black_candle_cake"},"bedrock_state":{"bedrock_identifier":"black_candle_cake","state":{"lit":true }}},{"java_state":{"Properties":{"lit":"false"},"Name":"minecraft:black_candle_cake"},"bedrock_state":{"bedrock_identifier":"black_candle_cake","state":{"lit":false }}},{"java_state":{"Name":"minecraft:amethyst_block"},"bedrock_state":{"bedrock_identifier":"amethyst_block"}},{"java_state":{"Name":"minecraft:budding_amethyst"},"bedrock_state":{"bedrock_identifier":"budding_amethyst"}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:amethyst_cluster"},"bedrock_state":{"bedrock_identifier":"amethyst_cluster","state":{"minecraft:block_face":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:amethyst_cluster"},"bedrock_state":{"bedrock_identifier":"amethyst_cluster","state":{"minecraft:block_face":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:amethyst_cluster"},"bedrock_state":{"bedrock_identifier":"amethyst_cluster","state":{"minecraft:block_face":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:amethyst_cluster"},"bedrock_state":{"bedrock_identifier":"amethyst_cluster","state":{"minecraft:block_face":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:amethyst_cluster"},"bedrock_state":{"bedrock_identifier":"amethyst_cluster","state":{"minecraft:block_face":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:amethyst_cluster"},"bedrock_state":{"bedrock_identifier":"amethyst_cluster","state":{"minecraft:block_face":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:amethyst_cluster"},"bedrock_state":{"bedrock_identifier":"amethyst_cluster","state":{"minecraft:block_face":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:amethyst_cluster"},"bedrock_state":{"bedrock_identifier":"amethyst_cluster","state":{"minecraft:block_face":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"up"},"Name":"minecraft:amethyst_cluster"},"bedrock_state":{"bedrock_identifier":"amethyst_cluster","state":{"minecraft:block_face":"up"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"up"},"Name":"minecraft:amethyst_cluster"},"bedrock_state":{"bedrock_identifier":"amethyst_cluster","state":{"minecraft:block_face":"up"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"down"},"Name":"minecraft:amethyst_cluster"},"bedrock_state":{"bedrock_identifier":"amethyst_cluster","state":{"minecraft:block_face":"down"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"down"},"Name":"minecraft:amethyst_cluster"},"bedrock_state":{"bedrock_identifier":"amethyst_cluster","state":{"minecraft:block_face":"down"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:large_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"large_amethyst_bud","state":{"minecraft:block_face":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:large_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"large_amethyst_bud","state":{"minecraft:block_face":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:large_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"large_amethyst_bud","state":{"minecraft:block_face":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:large_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"large_amethyst_bud","state":{"minecraft:block_face":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:large_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"large_amethyst_bud","state":{"minecraft:block_face":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:large_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"large_amethyst_bud","state":{"minecraft:block_face":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:large_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"large_amethyst_bud","state":{"minecraft:block_face":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:large_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"large_amethyst_bud","state":{"minecraft:block_face":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"up"},"Name":"minecraft:large_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"large_amethyst_bud","state":{"minecraft:block_face":"up"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"up"},"Name":"minecraft:large_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"large_amethyst_bud","state":{"minecraft:block_face":"up"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"down"},"Name":"minecraft:large_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"large_amethyst_bud","state":{"minecraft:block_face":"down"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"down"},"Name":"minecraft:large_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"large_amethyst_bud","state":{"minecraft:block_face":"down"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:medium_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"medium_amethyst_bud","state":{"minecraft:block_face":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:medium_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"medium_amethyst_bud","state":{"minecraft:block_face":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:medium_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"medium_amethyst_bud","state":{"minecraft:block_face":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:medium_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"medium_amethyst_bud","state":{"minecraft:block_face":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:medium_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"medium_amethyst_bud","state":{"minecraft:block_face":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:medium_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"medium_amethyst_bud","state":{"minecraft:block_face":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:medium_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"medium_amethyst_bud","state":{"minecraft:block_face":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:medium_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"medium_amethyst_bud","state":{"minecraft:block_face":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"up"},"Name":"minecraft:medium_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"medium_amethyst_bud","state":{"minecraft:block_face":"up"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"up"},"Name":"minecraft:medium_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"medium_amethyst_bud","state":{"minecraft:block_face":"up"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"down"},"Name":"minecraft:medium_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"medium_amethyst_bud","state":{"minecraft:block_face":"down"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"down"},"Name":"minecraft:medium_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"medium_amethyst_bud","state":{"minecraft:block_face":"down"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:small_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"small_amethyst_bud","state":{"minecraft:block_face":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:small_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"small_amethyst_bud","state":{"minecraft:block_face":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:small_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"small_amethyst_bud","state":{"minecraft:block_face":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:small_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"small_amethyst_bud","state":{"minecraft:block_face":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:small_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"small_amethyst_bud","state":{"minecraft:block_face":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:small_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"small_amethyst_bud","state":{"minecraft:block_face":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:small_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"small_amethyst_bud","state":{"minecraft:block_face":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:small_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"small_amethyst_bud","state":{"minecraft:block_face":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"up"},"Name":"minecraft:small_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"small_amethyst_bud","state":{"minecraft:block_face":"up"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"up"},"Name":"minecraft:small_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"small_amethyst_bud","state":{"minecraft:block_face":"up"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"down"},"Name":"minecraft:small_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"small_amethyst_bud","state":{"minecraft:block_face":"down"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"down"},"Name":"minecraft:small_amethyst_bud"},"bedrock_state":{"bedrock_identifier":"small_amethyst_bud","state":{"minecraft:block_face":"down"}}},{"java_state":{"Name":"minecraft:tuff"},"bedrock_state":{"bedrock_identifier":"tuff"}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:tuff_slab"},"bedrock_state":{"bedrock_identifier":"tuff_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:tuff_slab"},"bedrock_state":{"bedrock_identifier":"tuff_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:tuff_slab"},"bedrock_state":{"bedrock_identifier":"tuff_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:tuff_slab"},"bedrock_state":{"bedrock_identifier":"tuff_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:tuff_slab"},"bedrock_state":{"bedrock_identifier":"tuff_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:tuff_slab"},"bedrock_state":{"bedrock_identifier":"tuff_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:tuff_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_wall"},"bedrock_state":{"bedrock_identifier":"tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Name":"minecraft:polished_tuff"},"bedrock_state":{"bedrock_identifier":"polished_tuff"}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:polished_tuff_slab"},"bedrock_state":{"bedrock_identifier":"polished_tuff_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:polished_tuff_slab"},"bedrock_state":{"bedrock_identifier":"polished_tuff_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:polished_tuff_slab"},"bedrock_state":{"bedrock_identifier":"polished_tuff_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:polished_tuff_slab"},"bedrock_state":{"bedrock_identifier":"polished_tuff_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:polished_tuff_slab"},"bedrock_state":{"bedrock_identifier":"polished_tuff_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:polished_tuff_slab"},"bedrock_state":{"bedrock_identifier":"polished_tuff_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_tuff_stairs"},"bedrock_state":{"bedrock_identifier":"polished_tuff_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_tuff_wall"},"bedrock_state":{"bedrock_identifier":"polished_tuff_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Name":"minecraft:chiseled_tuff"},"bedrock_state":{"bedrock_identifier":"chiseled_tuff"}},{"java_state":{"Name":"minecraft:tuff_bricks"},"bedrock_state":{"bedrock_identifier":"tuff_bricks"}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:tuff_brick_slab"},"bedrock_state":{"bedrock_identifier":"tuff_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:tuff_brick_slab"},"bedrock_state":{"bedrock_identifier":"tuff_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:tuff_brick_slab"},"bedrock_state":{"bedrock_identifier":"tuff_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:tuff_brick_slab"},"bedrock_state":{"bedrock_identifier":"tuff_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:tuff_brick_slab"},"bedrock_state":{"bedrock_identifier":"tuff_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:tuff_brick_slab"},"bedrock_state":{"bedrock_identifier":"tuff_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:tuff_brick_stairs"},"bedrock_state":{"bedrock_identifier":"tuff_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:tuff_brick_wall"},"bedrock_state":{"bedrock_identifier":"tuff_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Name":"minecraft:chiseled_tuff_bricks"},"bedrock_state":{"bedrock_identifier":"chiseled_tuff_bricks"}},{"java_state":{"Name":"minecraft:calcite"},"bedrock_state":{"bedrock_identifier":"calcite"}},{"java_state":{"Name":"minecraft:tinted_glass"},"bedrock_state":{"bedrock_identifier":"tinted_glass"}},{"java_state":{"Name":"minecraft:powder_snow"},"bedrock_state":{"bedrock_identifier":"powder_snow"}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"0"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"0"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"0"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"0"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"0"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"0"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"1"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"1"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"1"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"1"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"1"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"1"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"2"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"2"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"2"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"2"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"2"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"2"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"3"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"3"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"3"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"3"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"3"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"3"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"4"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"4"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"4"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"4"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"4"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"4"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"5"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"5"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"5"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"5"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"5"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"5"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"6"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"6"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"6"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"6"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"6"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"6"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"7"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"7"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"7"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"7"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"7"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"7"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"8"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"8"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"8"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"8"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"8"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"8"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"9"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"9"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"9"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"9"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"9"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"9"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"10"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"10"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"10"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"10"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"10"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"10"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"11"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"11"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"11"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"11"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"11"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"11"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"12"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"12"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"12"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"12"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"12"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"12"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"13"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"13"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"13"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"13"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"13"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"13"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"14"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"14"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"14"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"14"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"14"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"14"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"15"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"15"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"15"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"15"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"15"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"15"},"Name":"minecraft:sculk_sensor"},"bedrock_state":{"bedrock_identifier":"sculk_sensor","state":{"sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"0","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"0","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"0","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"0","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"0","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"0","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"1","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"1","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"1","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"1","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"1","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"1","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"2","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"2","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"2","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"2","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"2","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"2","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"3","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"3","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"3","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"3","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"3","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"3","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"4","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"4","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"4","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"4","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"4","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"4","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"5","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"5","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"5","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"5","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"5","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"5","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"6","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"6","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"6","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"6","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"6","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"6","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"7","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"7","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"7","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"7","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"7","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"7","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"8","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"8","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"8","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"8","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"8","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"8","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"9","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"9","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"9","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"9","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"9","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"9","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"10","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"10","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"10","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"10","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"10","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"10","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"11","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"11","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"11","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"11","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"11","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"11","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"12","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"12","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"12","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"12","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"12","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"12","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"13","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"13","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"13","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"13","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"13","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"13","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"14","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"14","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"14","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"14","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"14","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"14","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"15","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"15","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"15","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"15","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"15","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"15","facing":"north"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"north","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"0","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"0","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"0","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"0","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"0","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"0","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"1","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"1","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"1","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"1","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"1","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"1","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"2","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"2","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"2","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"2","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"2","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"2","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"3","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"3","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"3","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"3","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"3","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"3","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"4","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"4","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"4","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"4","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"4","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"4","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"5","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"5","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"5","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"5","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"5","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"5","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"6","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"6","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"6","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"6","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"6","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"6","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"7","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"7","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"7","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"7","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"7","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"7","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"8","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"8","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"8","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"8","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"8","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"8","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"9","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"9","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"9","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"9","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"9","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"9","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"10","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"10","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"10","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"10","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"10","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"10","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"11","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"11","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"11","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"11","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"11","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"11","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"12","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"12","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"12","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"12","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"12","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"12","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"13","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"13","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"13","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"13","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"13","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"13","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"14","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"14","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"14","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"14","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"14","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"14","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"15","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"15","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"15","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"15","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"15","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"15","facing":"south"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"south","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"0","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"0","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"0","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"0","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"0","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"0","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"1","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"1","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"1","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"1","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"1","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"1","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"2","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"2","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"2","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"2","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"2","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"2","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"3","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"3","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"3","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"3","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"3","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"3","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"4","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"4","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"4","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"4","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"4","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"4","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"5","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"5","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"5","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"5","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"5","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"5","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"6","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"6","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"6","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"6","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"6","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"6","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"7","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"7","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"7","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"7","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"7","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"7","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"8","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"8","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"8","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"8","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"8","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"8","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"9","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"9","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"9","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"9","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"9","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"9","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"10","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"10","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"10","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"10","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"10","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"10","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"11","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"11","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"11","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"11","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"11","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"11","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"12","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"12","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"12","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"12","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"12","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"12","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"13","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"13","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"13","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"13","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"13","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"13","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"14","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"14","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"14","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"14","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"14","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"14","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"15","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"15","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"15","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"15","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"15","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"15","facing":"west"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"west","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"0","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"0","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"0","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"0","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"0","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"0","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"1","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"1","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"1","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"1","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"1","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"1","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"2","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"2","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"2","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"2","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"2","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"2","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"3","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"3","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"3","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"3","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"3","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"3","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"4","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"4","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"4","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"4","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"4","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"4","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"5","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"5","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"5","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"5","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"5","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"5","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"6","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"6","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"6","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"6","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"6","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"6","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"7","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"7","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"7","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"7","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"7","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"7","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"8","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"8","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"8","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"8","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"8","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"8","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"9","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"9","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"9","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"9","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"9","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"9","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"10","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"10","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"10","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"10","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"10","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"10","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"11","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"11","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"11","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"11","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"11","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"11","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"12","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"12","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"12","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"12","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"12","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"12","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"13","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"13","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"13","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"13","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"13","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"13","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"14","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"14","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"14","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"14","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"14","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"14","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"inactive","power":"15","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"inactive","power":"15","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":0 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"active","power":"15","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"active","power":"15","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":1 }}},{"java_state":{"Properties":{"waterlogged":"true","sculk_sensor_phase":"cooldown","power":"15","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Properties":{"waterlogged":"false","sculk_sensor_phase":"cooldown","power":"15","facing":"east"},"Name":"minecraft:calibrated_sculk_sensor"},"bedrock_state":{"bedrock_identifier":"calibrated_sculk_sensor","state":{"minecraft:cardinal_direction":"east","sculk_sensor_phase":2 }}},{"java_state":{"Name":"minecraft:sculk"},"bedrock_state":{"bedrock_identifier":"sculk"}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":63 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":55 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":63 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":55 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":61 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":53 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":61 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":53 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":59 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":51 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":59 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":51 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":57 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":49 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":57 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"true","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":49 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":47 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":39 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":47 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":39 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":45 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":37 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":45 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":37 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":43 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":35 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":43 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":35 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":41 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":33 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":41 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"false","east":"true","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":33 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":31 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":23 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":31 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":23 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":29 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":21 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":29 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":21 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":27 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":19 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":27 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":19 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":25 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":17 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":25 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"true","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":17 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":15 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":7 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":15 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":7 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":13 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":5 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":13 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":5 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":11 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":3 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":11 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":3 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":9 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":1 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":9 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"false","east":"false","down":"true"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":1 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":62 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":54 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":62 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":54 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":60 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":52 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":60 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":52 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":58 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":50 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":58 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":50 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":56 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":48 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":56 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"true","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":48 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":46 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":38 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":46 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":38 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":44 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":36 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":44 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":36 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":42 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":34 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":42 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":34 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":40 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":32 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":40 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"false","east":"true","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":32 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":30 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":22 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":30 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":22 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":28 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":20 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":28 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":20 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":26 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":18 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":26 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":18 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":24 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":16 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":24 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"true","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":16 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":14 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":6 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":14 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":6 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":12 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":4 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":12 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"true","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":4 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":10 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":2 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":10 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"true","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":2 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"true","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":8 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"true","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":0 }}},{"java_state":{"Properties":{"west":"true","waterlogged":"false","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":8 }}},{"java_state":{"Properties":{"west":"false","waterlogged":"false","up":"false","south":"false","north":"false","east":"false","down":"false"},"Name":"minecraft:sculk_vein"},"bedrock_state":{"bedrock_identifier":"sculk_vein","state":{"multi_face_direction_bits":0 }}},{"java_state":{"Properties":{"bloom":"true"},"Name":"minecraft:sculk_catalyst"},"bedrock_state":{"bedrock_identifier":"sculk_catalyst","state":{"bloom":true }}},{"java_state":{"Properties":{"bloom":"false"},"Name":"minecraft:sculk_catalyst"},"bedrock_state":{"bedrock_identifier":"sculk_catalyst","state":{"bloom":false }}},{"java_state":{"Properties":{"waterlogged":"true","shrieking":"true","can_summon":"true"},"Name":"minecraft:sculk_shrieker"},"bedrock_state":{"bedrock_identifier":"sculk_shrieker","state":{"active":true,"can_summon":true }}},{"java_state":{"Properties":{"waterlogged":"false","shrieking":"true","can_summon":"true"},"Name":"minecraft:sculk_shrieker"},"bedrock_state":{"bedrock_identifier":"sculk_shrieker","state":{"active":true,"can_summon":true }}},{"java_state":{"Properties":{"waterlogged":"true","shrieking":"false","can_summon":"true"},"Name":"minecraft:sculk_shrieker"},"bedrock_state":{"bedrock_identifier":"sculk_shrieker","state":{"active":false,"can_summon":true }}},{"java_state":{"Properties":{"waterlogged":"false","shrieking":"false","can_summon":"true"},"Name":"minecraft:sculk_shrieker"},"bedrock_state":{"bedrock_identifier":"sculk_shrieker","state":{"active":false,"can_summon":true }}},{"java_state":{"Properties":{"waterlogged":"true","shrieking":"true","can_summon":"false"},"Name":"minecraft:sculk_shrieker"},"bedrock_state":{"bedrock_identifier":"sculk_shrieker","state":{"active":true,"can_summon":false }}},{"java_state":{"Properties":{"waterlogged":"false","shrieking":"true","can_summon":"false"},"Name":"minecraft:sculk_shrieker"},"bedrock_state":{"bedrock_identifier":"sculk_shrieker","state":{"active":true,"can_summon":false }}},{"java_state":{"Properties":{"waterlogged":"true","shrieking":"false","can_summon":"false"},"Name":"minecraft:sculk_shrieker"},"bedrock_state":{"bedrock_identifier":"sculk_shrieker","state":{"active":false,"can_summon":false }}},{"java_state":{"Properties":{"waterlogged":"false","shrieking":"false","can_summon":"false"},"Name":"minecraft:sculk_shrieker"},"bedrock_state":{"bedrock_identifier":"sculk_shrieker","state":{"active":false,"can_summon":false }}},{"java_state":{"Name":"minecraft:copper_block"},"bedrock_state":{"bedrock_identifier":"copper_block"}},{"java_state":{"Name":"minecraft:exposed_copper"},"bedrock_state":{"bedrock_identifier":"exposed_copper"}},{"java_state":{"Name":"minecraft:weathered_copper"},"bedrock_state":{"bedrock_identifier":"weathered_copper"}},{"java_state":{"Name":"minecraft:oxidized_copper"},"bedrock_state":{"bedrock_identifier":"oxidized_copper"}},{"java_state":{"Name":"minecraft:copper_ore"},"bedrock_state":{"bedrock_identifier":"copper_ore"}},{"java_state":{"Name":"minecraft:deepslate_copper_ore"},"bedrock_state":{"bedrock_identifier":"deepslate_copper_ore"}},{"java_state":{"Name":"minecraft:oxidized_cut_copper"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper"}},{"java_state":{"Name":"minecraft:weathered_cut_copper"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper"}},{"java_state":{"Name":"minecraft:exposed_cut_copper"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper"}},{"java_state":{"Name":"minecraft:cut_copper"},"bedrock_state":{"bedrock_identifier":"cut_copper"}},{"java_state":{"Name":"minecraft:oxidized_chiseled_copper"},"bedrock_state":{"bedrock_identifier":"oxidized_chiseled_copper"}},{"java_state":{"Name":"minecraft:weathered_chiseled_copper"},"bedrock_state":{"bedrock_identifier":"weathered_chiseled_copper"}},{"java_state":{"Name":"minecraft:exposed_chiseled_copper"},"bedrock_state":{"bedrock_identifier":"exposed_chiseled_copper"}},{"java_state":{"Name":"minecraft:chiseled_copper"},"bedrock_state":{"bedrock_identifier":"chiseled_copper"}},{"java_state":{"Name":"minecraft:waxed_oxidized_chiseled_copper"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_chiseled_copper"}},{"java_state":{"Name":"minecraft:waxed_weathered_chiseled_copper"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_chiseled_copper"}},{"java_state":{"Name":"minecraft:waxed_exposed_chiseled_copper"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_chiseled_copper"}},{"java_state":{"Name":"minecraft:waxed_chiseled_copper"},"bedrock_state":{"bedrock_identifier":"waxed_chiseled_copper"}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:oxidized_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:oxidized_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:oxidized_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:oxidized_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"oxidized_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:oxidized_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"oxidized_double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:oxidized_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"oxidized_double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:weathered_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:weathered_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:weathered_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:weathered_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"weathered_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:weathered_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"weathered_double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:weathered_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"weathered_double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:exposed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:exposed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:exposed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:exposed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"exposed_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:exposed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"exposed_double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:exposed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"exposed_double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Name":"minecraft:waxed_copper_block"},"bedrock_state":{"bedrock_identifier":"waxed_copper"}},{"java_state":{"Name":"minecraft:waxed_weathered_copper"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper"}},{"java_state":{"Name":"minecraft:waxed_exposed_copper"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper"}},{"java_state":{"Name":"minecraft:waxed_oxidized_copper"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper"}},{"java_state":{"Name":"minecraft:waxed_oxidized_cut_copper"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper"}},{"java_state":{"Name":"minecraft:waxed_weathered_cut_copper"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper"}},{"java_state":{"Name":"minecraft:waxed_exposed_cut_copper"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper"}},{"java_state":{"Name":"minecraft:waxed_cut_copper"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper"}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:waxed_cut_copper_stairs"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:waxed_oxidized_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:waxed_oxidized_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:waxed_oxidized_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:waxed_oxidized_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:waxed_oxidized_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:waxed_oxidized_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:waxed_weathered_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:waxed_weathered_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:waxed_weathered_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:waxed_weathered_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:waxed_weathered_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:waxed_weathered_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:waxed_exposed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:waxed_exposed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:waxed_exposed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:waxed_exposed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:waxed_exposed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:waxed_exposed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:waxed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:waxed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:waxed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:waxed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:waxed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:waxed_cut_copper_slab"},"bedrock_state":{"bedrock_identifier":"waxed_double_cut_copper_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:copper_door"},"bedrock_state":{"bedrock_identifier":"copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_exposed_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"north"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":3 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"south"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":1 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"west"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":2 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"upper","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"upper","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":true,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"left","half":"lower","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":false,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"true","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":true,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"true","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"powered":"false","open":"false","hinge":"right","half":"lower","facing":"east"},"Name":"minecraft:waxed_weathered_copper_door"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_door","state":{"upper_block_bit":false,"open_bit":false,"door_hinge_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_exposed_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_oxidized_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"north"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"south"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"west"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"top","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":true,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"true","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":true,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","open":"false","half":"bottom","facing":"east"},"Name":"minecraft:waxed_weathered_copper_trapdoor"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_trapdoor","state":{"open_bit":false,"upside_down_bit":false,"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:copper_grate"},"bedrock_state":{"bedrock_identifier":"copper_grate"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:copper_grate"},"bedrock_state":{"bedrock_identifier":"copper_grate"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:exposed_copper_grate"},"bedrock_state":{"bedrock_identifier":"exposed_copper_grate"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:exposed_copper_grate"},"bedrock_state":{"bedrock_identifier":"exposed_copper_grate"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:weathered_copper_grate"},"bedrock_state":{"bedrock_identifier":"weathered_copper_grate"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:weathered_copper_grate"},"bedrock_state":{"bedrock_identifier":"weathered_copper_grate"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:oxidized_copper_grate"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_grate"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:oxidized_copper_grate"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_grate"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:waxed_copper_grate"},"bedrock_state":{"bedrock_identifier":"waxed_copper_grate"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:waxed_copper_grate"},"bedrock_state":{"bedrock_identifier":"waxed_copper_grate"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:waxed_exposed_copper_grate"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_grate"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:waxed_exposed_copper_grate"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_grate"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:waxed_weathered_copper_grate"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_grate"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:waxed_weathered_copper_grate"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_grate"}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:waxed_oxidized_copper_grate"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_grate"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:waxed_oxidized_copper_grate"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_grate"}},{"java_state":{"Properties":{"powered":"true","lit":"true"},"Name":"minecraft:copper_bulb"},"bedrock_state":{"bedrock_identifier":"copper_bulb","state":{"powered_bit":true,"lit":true }}},{"java_state":{"Properties":{"powered":"false","lit":"true"},"Name":"minecraft:copper_bulb"},"bedrock_state":{"bedrock_identifier":"copper_bulb","state":{"powered_bit":false,"lit":true }}},{"java_state":{"Properties":{"powered":"true","lit":"false"},"Name":"minecraft:copper_bulb"},"bedrock_state":{"bedrock_identifier":"copper_bulb","state":{"powered_bit":true,"lit":false }}},{"java_state":{"Properties":{"powered":"false","lit":"false"},"Name":"minecraft:copper_bulb"},"bedrock_state":{"bedrock_identifier":"copper_bulb","state":{"powered_bit":false,"lit":false }}},{"java_state":{"Properties":{"powered":"true","lit":"true"},"Name":"minecraft:exposed_copper_bulb"},"bedrock_state":{"bedrock_identifier":"exposed_copper_bulb","state":{"powered_bit":true,"lit":true }}},{"java_state":{"Properties":{"powered":"false","lit":"true"},"Name":"minecraft:exposed_copper_bulb"},"bedrock_state":{"bedrock_identifier":"exposed_copper_bulb","state":{"powered_bit":false,"lit":true }}},{"java_state":{"Properties":{"powered":"true","lit":"false"},"Name":"minecraft:exposed_copper_bulb"},"bedrock_state":{"bedrock_identifier":"exposed_copper_bulb","state":{"powered_bit":true,"lit":false }}},{"java_state":{"Properties":{"powered":"false","lit":"false"},"Name":"minecraft:exposed_copper_bulb"},"bedrock_state":{"bedrock_identifier":"exposed_copper_bulb","state":{"powered_bit":false,"lit":false }}},{"java_state":{"Properties":{"powered":"true","lit":"true"},"Name":"minecraft:weathered_copper_bulb"},"bedrock_state":{"bedrock_identifier":"weathered_copper_bulb","state":{"powered_bit":true,"lit":true }}},{"java_state":{"Properties":{"powered":"false","lit":"true"},"Name":"minecraft:weathered_copper_bulb"},"bedrock_state":{"bedrock_identifier":"weathered_copper_bulb","state":{"powered_bit":false,"lit":true }}},{"java_state":{"Properties":{"powered":"true","lit":"false"},"Name":"minecraft:weathered_copper_bulb"},"bedrock_state":{"bedrock_identifier":"weathered_copper_bulb","state":{"powered_bit":true,"lit":false }}},{"java_state":{"Properties":{"powered":"false","lit":"false"},"Name":"minecraft:weathered_copper_bulb"},"bedrock_state":{"bedrock_identifier":"weathered_copper_bulb","state":{"powered_bit":false,"lit":false }}},{"java_state":{"Properties":{"powered":"true","lit":"true"},"Name":"minecraft:oxidized_copper_bulb"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_bulb","state":{"powered_bit":true,"lit":true }}},{"java_state":{"Properties":{"powered":"false","lit":"true"},"Name":"minecraft:oxidized_copper_bulb"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_bulb","state":{"powered_bit":false,"lit":true }}},{"java_state":{"Properties":{"powered":"true","lit":"false"},"Name":"minecraft:oxidized_copper_bulb"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_bulb","state":{"powered_bit":true,"lit":false }}},{"java_state":{"Properties":{"powered":"false","lit":"false"},"Name":"minecraft:oxidized_copper_bulb"},"bedrock_state":{"bedrock_identifier":"oxidized_copper_bulb","state":{"powered_bit":false,"lit":false }}},{"java_state":{"Properties":{"powered":"true","lit":"true"},"Name":"minecraft:waxed_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_copper_bulb","state":{"powered_bit":true,"lit":true }}},{"java_state":{"Properties":{"powered":"false","lit":"true"},"Name":"minecraft:waxed_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_copper_bulb","state":{"powered_bit":false,"lit":true }}},{"java_state":{"Properties":{"powered":"true","lit":"false"},"Name":"minecraft:waxed_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_copper_bulb","state":{"powered_bit":true,"lit":false }}},{"java_state":{"Properties":{"powered":"false","lit":"false"},"Name":"minecraft:waxed_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_copper_bulb","state":{"powered_bit":false,"lit":false }}},{"java_state":{"Properties":{"powered":"true","lit":"true"},"Name":"minecraft:waxed_exposed_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_bulb","state":{"powered_bit":true,"lit":true }}},{"java_state":{"Properties":{"powered":"false","lit":"true"},"Name":"minecraft:waxed_exposed_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_bulb","state":{"powered_bit":false,"lit":true }}},{"java_state":{"Properties":{"powered":"true","lit":"false"},"Name":"minecraft:waxed_exposed_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_bulb","state":{"powered_bit":true,"lit":false }}},{"java_state":{"Properties":{"powered":"false","lit":"false"},"Name":"minecraft:waxed_exposed_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_exposed_copper_bulb","state":{"powered_bit":false,"lit":false }}},{"java_state":{"Properties":{"powered":"true","lit":"true"},"Name":"minecraft:waxed_weathered_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_bulb","state":{"powered_bit":true,"lit":true }}},{"java_state":{"Properties":{"powered":"false","lit":"true"},"Name":"minecraft:waxed_weathered_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_bulb","state":{"powered_bit":false,"lit":true }}},{"java_state":{"Properties":{"powered":"true","lit":"false"},"Name":"minecraft:waxed_weathered_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_bulb","state":{"powered_bit":true,"lit":false }}},{"java_state":{"Properties":{"powered":"false","lit":"false"},"Name":"minecraft:waxed_weathered_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_weathered_copper_bulb","state":{"powered_bit":false,"lit":false }}},{"java_state":{"Properties":{"powered":"true","lit":"true"},"Name":"minecraft:waxed_oxidized_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_bulb","state":{"powered_bit":true,"lit":true }}},{"java_state":{"Properties":{"powered":"false","lit":"true"},"Name":"minecraft:waxed_oxidized_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_bulb","state":{"powered_bit":false,"lit":true }}},{"java_state":{"Properties":{"powered":"true","lit":"false"},"Name":"minecraft:waxed_oxidized_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_bulb","state":{"powered_bit":true,"lit":false }}},{"java_state":{"Properties":{"powered":"false","lit":"false"},"Name":"minecraft:waxed_oxidized_copper_bulb"},"bedrock_state":{"bedrock_identifier":"waxed_oxidized_copper_bulb","state":{"powered_bit":false,"lit":false }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","facing":"north"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","facing":"north"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","facing":"north"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","facing":"north"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","facing":"east"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","facing":"east"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","facing":"east"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","facing":"east"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":5 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","facing":"south"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","facing":"south"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","facing":"south"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","facing":"south"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","facing":"west"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","facing":"west"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","facing":"west"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","facing":"west"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":4 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","facing":"up"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","facing":"up"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","facing":"up"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","facing":"up"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"true","facing":"down"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"true","facing":"down"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","powered":"false","facing":"down"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","powered":"false","facing":"down"},"Name":"minecraft:lightning_rod"},"bedrock_state":{"bedrock_identifier":"lightning_rod","state":{"facing_direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","vertical_direction":"up","thickness":"tip_merge"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":false,"dripstone_thickness":"merge"}}},{"java_state":{"Properties":{"waterlogged":"false","vertical_direction":"up","thickness":"tip_merge"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":false,"dripstone_thickness":"merge"}}},{"java_state":{"Properties":{"waterlogged":"true","vertical_direction":"down","thickness":"tip_merge"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":true,"dripstone_thickness":"merge"}}},{"java_state":{"Properties":{"waterlogged":"false","vertical_direction":"down","thickness":"tip_merge"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":true,"dripstone_thickness":"merge"}}},{"java_state":{"Properties":{"waterlogged":"true","vertical_direction":"up","thickness":"tip"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":false,"dripstone_thickness":"tip"}}},{"java_state":{"Properties":{"waterlogged":"false","vertical_direction":"up","thickness":"tip"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":false,"dripstone_thickness":"tip"}}},{"java_state":{"Properties":{"waterlogged":"true","vertical_direction":"down","thickness":"tip"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":true,"dripstone_thickness":"tip"}}},{"java_state":{"Properties":{"waterlogged":"false","vertical_direction":"down","thickness":"tip"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":true,"dripstone_thickness":"tip"}}},{"java_state":{"Properties":{"waterlogged":"true","vertical_direction":"up","thickness":"frustum"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":false,"dripstone_thickness":"frustum"}}},{"java_state":{"Properties":{"waterlogged":"false","vertical_direction":"up","thickness":"frustum"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":false,"dripstone_thickness":"frustum"}}},{"java_state":{"Properties":{"waterlogged":"true","vertical_direction":"down","thickness":"frustum"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":true,"dripstone_thickness":"frustum"}}},{"java_state":{"Properties":{"waterlogged":"false","vertical_direction":"down","thickness":"frustum"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":true,"dripstone_thickness":"frustum"}}},{"java_state":{"Properties":{"waterlogged":"true","vertical_direction":"up","thickness":"middle"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":false,"dripstone_thickness":"middle"}}},{"java_state":{"Properties":{"waterlogged":"false","vertical_direction":"up","thickness":"middle"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":false,"dripstone_thickness":"middle"}}},{"java_state":{"Properties":{"waterlogged":"true","vertical_direction":"down","thickness":"middle"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":true,"dripstone_thickness":"middle"}}},{"java_state":{"Properties":{"waterlogged":"false","vertical_direction":"down","thickness":"middle"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":true,"dripstone_thickness":"middle"}}},{"java_state":{"Properties":{"waterlogged":"true","vertical_direction":"up","thickness":"base"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":false,"dripstone_thickness":"base"}}},{"java_state":{"Properties":{"waterlogged":"false","vertical_direction":"up","thickness":"base"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":false,"dripstone_thickness":"base"}}},{"java_state":{"Properties":{"waterlogged":"true","vertical_direction":"down","thickness":"base"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":true,"dripstone_thickness":"base"}}},{"java_state":{"Properties":{"waterlogged":"false","vertical_direction":"down","thickness":"base"},"Name":"minecraft:pointed_dripstone"},"bedrock_state":{"bedrock_identifier":"pointed_dripstone","state":{"hanging":true,"dripstone_thickness":"base"}}},{"java_state":{"Name":"minecraft:dripstone_block"},"bedrock_state":{"bedrock_identifier":"dripstone_block"}},{"java_state":{"Properties":{"berries":"true","age":"0"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":0 }}},{"java_state":{"Properties":{"berries":"false","age":"0"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":0 }}},{"java_state":{"Properties":{"berries":"true","age":"1"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":1 }}},{"java_state":{"Properties":{"berries":"false","age":"1"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":1 }}},{"java_state":{"Properties":{"berries":"true","age":"2"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":2 }}},{"java_state":{"Properties":{"berries":"false","age":"2"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":2 }}},{"java_state":{"Properties":{"berries":"true","age":"3"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":3 }}},{"java_state":{"Properties":{"berries":"false","age":"3"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":3 }}},{"java_state":{"Properties":{"berries":"true","age":"4"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":4 }}},{"java_state":{"Properties":{"berries":"false","age":"4"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":4 }}},{"java_state":{"Properties":{"berries":"true","age":"5"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":5 }}},{"java_state":{"Properties":{"berries":"false","age":"5"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":5 }}},{"java_state":{"Properties":{"berries":"true","age":"6"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":6 }}},{"java_state":{"Properties":{"berries":"false","age":"6"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":6 }}},{"java_state":{"Properties":{"berries":"true","age":"7"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":7 }}},{"java_state":{"Properties":{"berries":"false","age":"7"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":7 }}},{"java_state":{"Properties":{"berries":"true","age":"8"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":8 }}},{"java_state":{"Properties":{"berries":"false","age":"8"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":8 }}},{"java_state":{"Properties":{"berries":"true","age":"9"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":9 }}},{"java_state":{"Properties":{"berries":"false","age":"9"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":9 }}},{"java_state":{"Properties":{"berries":"true","age":"10"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":10 }}},{"java_state":{"Properties":{"berries":"false","age":"10"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":10 }}},{"java_state":{"Properties":{"berries":"true","age":"11"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":11 }}},{"java_state":{"Properties":{"berries":"false","age":"11"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":11 }}},{"java_state":{"Properties":{"berries":"true","age":"12"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":12 }}},{"java_state":{"Properties":{"berries":"false","age":"12"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":12 }}},{"java_state":{"Properties":{"berries":"true","age":"13"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":13 }}},{"java_state":{"Properties":{"berries":"false","age":"13"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":13 }}},{"java_state":{"Properties":{"berries":"true","age":"14"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":14 }}},{"java_state":{"Properties":{"berries":"false","age":"14"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":14 }}},{"java_state":{"Properties":{"berries":"true","age":"15"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":15 }}},{"java_state":{"Properties":{"berries":"false","age":"15"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":15 }}},{"java_state":{"Properties":{"berries":"true","age":"16"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":16 }}},{"java_state":{"Properties":{"berries":"false","age":"16"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":16 }}},{"java_state":{"Properties":{"berries":"true","age":"17"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":17 }}},{"java_state":{"Properties":{"berries":"false","age":"17"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":17 }}},{"java_state":{"Properties":{"berries":"true","age":"18"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":18 }}},{"java_state":{"Properties":{"berries":"false","age":"18"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":18 }}},{"java_state":{"Properties":{"berries":"true","age":"19"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":19 }}},{"java_state":{"Properties":{"berries":"false","age":"19"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":19 }}},{"java_state":{"Properties":{"berries":"true","age":"20"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":20 }}},{"java_state":{"Properties":{"berries":"false","age":"20"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":20 }}},{"java_state":{"Properties":{"berries":"true","age":"21"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":21 }}},{"java_state":{"Properties":{"berries":"false","age":"21"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":21 }}},{"java_state":{"Properties":{"berries":"true","age":"22"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":22 }}},{"java_state":{"Properties":{"berries":"false","age":"22"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":22 }}},{"java_state":{"Properties":{"berries":"true","age":"23"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":23 }}},{"java_state":{"Properties":{"berries":"false","age":"23"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":23 }}},{"java_state":{"Properties":{"berries":"true","age":"24"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":24 }}},{"java_state":{"Properties":{"berries":"false","age":"24"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":24 }}},{"java_state":{"Properties":{"berries":"true","age":"25"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines_head_with_berries","state":{"growing_plant_age":25 }}},{"java_state":{"Properties":{"berries":"false","age":"25"},"Name":"minecraft:cave_vines"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":25 }}},{"java_state":{"Properties":{"berries":"true"},"Name":"minecraft:cave_vines_plant"},"bedrock_state":{"bedrock_identifier":"cave_vines_body_with_berries","state":{"growing_plant_age":0 }}},{"java_state":{"Properties":{"berries":"false"},"Name":"minecraft:cave_vines_plant"},"bedrock_state":{"bedrock_identifier":"cave_vines","state":{"growing_plant_age":0 }}},{"java_state":{"Name":"minecraft:spore_blossom"},"bedrock_state":{"bedrock_identifier":"spore_blossom"}},{"java_state":{"Name":"minecraft:azalea"},"bedrock_state":{"bedrock_identifier":"azalea"}},{"java_state":{"Name":"minecraft:flowering_azalea"},"bedrock_state":{"bedrock_identifier":"flowering_azalea"}},{"java_state":{"Name":"minecraft:moss_carpet"},"bedrock_state":{"bedrock_identifier":"moss_carpet"}},{"java_state":{"Properties":{"flower_amount":"1","facing":"north"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"north","growth":0 }}},{"java_state":{"Properties":{"flower_amount":"2","facing":"north"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"north","growth":1 }}},{"java_state":{"Properties":{"flower_amount":"3","facing":"north"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"north","growth":2 }}},{"java_state":{"Properties":{"flower_amount":"4","facing":"north"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"north","growth":3 }}},{"java_state":{"Properties":{"flower_amount":"1","facing":"south"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"south","growth":0 }}},{"java_state":{"Properties":{"flower_amount":"2","facing":"south"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"south","growth":1 }}},{"java_state":{"Properties":{"flower_amount":"3","facing":"south"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"south","growth":2 }}},{"java_state":{"Properties":{"flower_amount":"4","facing":"south"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"south","growth":3 }}},{"java_state":{"Properties":{"flower_amount":"1","facing":"west"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"west","growth":0 }}},{"java_state":{"Properties":{"flower_amount":"2","facing":"west"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"west","growth":1 }}},{"java_state":{"Properties":{"flower_amount":"3","facing":"west"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"west","growth":2 }}},{"java_state":{"Properties":{"flower_amount":"4","facing":"west"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"west","growth":3 }}},{"java_state":{"Properties":{"flower_amount":"1","facing":"east"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"east","growth":0 }}},{"java_state":{"Properties":{"flower_amount":"2","facing":"east"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"east","growth":1 }}},{"java_state":{"Properties":{"flower_amount":"3","facing":"east"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"east","growth":2 }}},{"java_state":{"Properties":{"flower_amount":"4","facing":"east"},"Name":"minecraft:pink_petals"},"bedrock_state":{"bedrock_identifier":"pink_petals","state":{"minecraft:cardinal_direction":"east","growth":3 }}},{"java_state":{"Name":"minecraft:moss_block"},"bedrock_state":{"bedrock_identifier":"moss_block"}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"none","facing":"north"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":true,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"none","facing":"north"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":true,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"unstable","facing":"north"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"unstable","big_dripleaf_head":true,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"unstable","facing":"north"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"unstable","big_dripleaf_head":true,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"partial","facing":"north"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"partial_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"partial","facing":"north"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"partial_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"full","facing":"north"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"full_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"full","facing":"north"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"full_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"none","facing":"south"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":true,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"none","facing":"south"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":true,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"unstable","facing":"south"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"unstable","big_dripleaf_head":true,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"unstable","facing":"south"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"unstable","big_dripleaf_head":true,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"partial","facing":"south"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"partial_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"partial","facing":"south"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"partial_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"full","facing":"south"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"full_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"full","facing":"south"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"full_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"none","facing":"west"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":true,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"none","facing":"west"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":true,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"unstable","facing":"west"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"unstable","big_dripleaf_head":true,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"unstable","facing":"west"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"unstable","big_dripleaf_head":true,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"partial","facing":"west"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"partial_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"partial","facing":"west"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"partial_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"full","facing":"west"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"full_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"full","facing":"west"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"full_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"none","facing":"east"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":true,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"none","facing":"east"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":true,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"unstable","facing":"east"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"unstable","big_dripleaf_head":true,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"unstable","facing":"east"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"unstable","big_dripleaf_head":true,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"partial","facing":"east"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"partial_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"partial","facing":"east"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"partial_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","tilt":"full","facing":"east"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"full_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","tilt":"full","facing":"east"},"Name":"minecraft:big_dripleaf"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"full_tilt","big_dripleaf_head":true,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north"},"Name":"minecraft:big_dripleaf_stem"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":false,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north"},"Name":"minecraft:big_dripleaf_stem"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":false,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south"},"Name":"minecraft:big_dripleaf_stem"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":false,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south"},"Name":"minecraft:big_dripleaf_stem"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":false,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west"},"Name":"minecraft:big_dripleaf_stem"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":false,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west"},"Name":"minecraft:big_dripleaf_stem"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":false,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east"},"Name":"minecraft:big_dripleaf_stem"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":false,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east"},"Name":"minecraft:big_dripleaf_stem"},"bedrock_state":{"bedrock_identifier":"big_dripleaf","state":{"big_dripleaf_tilt":"none","big_dripleaf_head":false,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","half":"upper","facing":"north"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":true,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","half":"upper","facing":"north"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":true,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","half":"lower","facing":"north"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":false,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"false","half":"lower","facing":"north"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":false,"minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"waterlogged":"true","half":"upper","facing":"south"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":true,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","half":"upper","facing":"south"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":true,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","half":"lower","facing":"south"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":false,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"false","half":"lower","facing":"south"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":false,"minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"true","half":"upper","facing":"west"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":true,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","half":"upper","facing":"west"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":true,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","half":"lower","facing":"west"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":false,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"false","half":"lower","facing":"west"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":false,"minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"waterlogged":"true","half":"upper","facing":"east"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":true,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","half":"upper","facing":"east"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":true,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"true","half":"lower","facing":"east"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":false,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"false","half":"lower","facing":"east"},"Name":"minecraft:small_dripleaf"},"bedrock_state":{"bedrock_identifier":"small_dripleaf_block","state":{"upper_block_bit":false,"minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:hanging_roots"},"bedrock_state":{"bedrock_identifier":"hanging_roots"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:hanging_roots"},"bedrock_state":{"bedrock_identifier":"hanging_roots"}},{"java_state":{"Name":"minecraft:rooted_dirt"},"bedrock_state":{"bedrock_identifier":"dirt_with_roots"}},{"java_state":{"Name":"minecraft:mud"},"bedrock_state":{"bedrock_identifier":"mud"}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:deepslate"},"bedrock_state":{"bedrock_identifier":"deepslate","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:deepslate"},"bedrock_state":{"bedrock_identifier":"deepslate","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:deepslate"},"bedrock_state":{"bedrock_identifier":"deepslate","state":{"pillar_axis":"z"}}},{"java_state":{"Name":"minecraft:cobbled_deepslate"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate"}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:cobbled_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:cobbled_deepslate_slab"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:cobbled_deepslate_slab"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:cobbled_deepslate_slab"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:cobbled_deepslate_slab"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:cobbled_deepslate_slab"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:cobbled_deepslate_slab"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:cobbled_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"cobbled_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Name":"minecraft:polished_deepslate"},"bedrock_state":{"bedrock_identifier":"polished_deepslate"}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:polished_deepslate_stairs"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:polished_deepslate_slab"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:polished_deepslate_slab"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:polished_deepslate_slab"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:polished_deepslate_slab"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:polished_deepslate_slab"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:polished_deepslate_slab"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:polished_deepslate_wall"},"bedrock_state":{"bedrock_identifier":"polished_deepslate_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Name":"minecraft:deepslate_tiles"},"bedrock_state":{"bedrock_identifier":"deepslate_tiles"}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_tile_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:deepslate_tile_slab"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:deepslate_tile_slab"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:deepslate_tile_slab"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:deepslate_tile_slab"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:deepslate_tile_slab"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:deepslate_tile_slab"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_tile_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_tile_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Name":"minecraft:deepslate_bricks"},"bedrock_state":{"bedrock_identifier":"deepslate_bricks"}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"north"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":3,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"south"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":2,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"west"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":1,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"top","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"top","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"top","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"top","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"top","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":true }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"straight","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_left","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"inner_right","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_left","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"false","shape":"outer_right","half":"bottom","facing":"east"},"Name":"minecraft:deepslate_brick_stairs"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_stairs","state":{"weirdo_direction":0,"upside_down_bit":false }}},{"java_state":{"Properties":{"waterlogged":"true","type":"top"},"Name":"minecraft:deepslate_brick_slab"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"top"},"Name":"minecraft:deepslate_brick_slab"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_slab","state":{"minecraft:vertical_half":"top"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"bottom"},"Name":"minecraft:deepslate_brick_slab"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"bottom"},"Name":"minecraft:deepslate_brick_slab"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"true","type":"double"},"Name":"minecraft:deepslate_brick_slab"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"waterlogged":"false","type":"double"},"Name":"minecraft:deepslate_brick_slab"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_double_slab","state":{"minecraft:vertical_half":"bottom"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"none"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"none","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"low"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"short","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"none","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"none"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"low","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"short"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"none","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"none","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"low","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"short","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"true","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":true,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"true","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"none","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"none","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"low","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"short","wall_connection_type_north":"tall"}}},{"java_state":{"Properties":{"west":"tall","waterlogged":"false","up":"false","south":"tall","north":"tall","east":"tall"},"Name":"minecraft:deepslate_brick_wall"},"bedrock_state":{"bedrock_identifier":"deepslate_brick_wall","state":{"wall_connection_type_east":"tall","wall_post_bit":false,"wall_connection_type_south":"tall","wall_connection_type_west":"tall","wall_connection_type_north":"tall"}}},{"java_state":{"Name":"minecraft:chiseled_deepslate"},"bedrock_state":{"bedrock_identifier":"chiseled_deepslate"}},{"java_state":{"Name":"minecraft:cracked_deepslate_bricks"},"bedrock_state":{"bedrock_identifier":"cracked_deepslate_bricks"}},{"java_state":{"Name":"minecraft:cracked_deepslate_tiles"},"bedrock_state":{"bedrock_identifier":"cracked_deepslate_tiles"}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:infested_deepslate"},"bedrock_state":{"bedrock_identifier":"infested_deepslate","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:infested_deepslate"},"bedrock_state":{"bedrock_identifier":"infested_deepslate","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:infested_deepslate"},"bedrock_state":{"bedrock_identifier":"infested_deepslate","state":{"pillar_axis":"z"}}},{"java_state":{"Name":"minecraft:smooth_basalt"},"bedrock_state":{"bedrock_identifier":"smooth_basalt"}},{"java_state":{"Name":"minecraft:raw_iron_block"},"bedrock_state":{"bedrock_identifier":"raw_iron_block"}},{"java_state":{"Name":"minecraft:raw_copper_block"},"bedrock_state":{"bedrock_identifier":"raw_copper_block"}},{"java_state":{"Name":"minecraft:raw_gold_block"},"bedrock_state":{"bedrock_identifier":"raw_gold_block"}},{"java_state":{"Name":"minecraft:potted_azalea_bush"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Name":"minecraft:potted_flowering_azalea_bush"},"bedrock_state":{"bedrock_identifier":"flower_pot","state":{"update_bit":false }}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:ochre_froglight"},"bedrock_state":{"bedrock_identifier":"ochre_froglight","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:ochre_froglight"},"bedrock_state":{"bedrock_identifier":"ochre_froglight","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:ochre_froglight"},"bedrock_state":{"bedrock_identifier":"ochre_froglight","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:verdant_froglight"},"bedrock_state":{"bedrock_identifier":"verdant_froglight","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:verdant_froglight"},"bedrock_state":{"bedrock_identifier":"verdant_froglight","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:verdant_froglight"},"bedrock_state":{"bedrock_identifier":"verdant_froglight","state":{"pillar_axis":"z"}}},{"java_state":{"Properties":{"axis":"x"},"Name":"minecraft:pearlescent_froglight"},"bedrock_state":{"bedrock_identifier":"pearlescent_froglight","state":{"pillar_axis":"x"}}},{"java_state":{"Properties":{"axis":"y"},"Name":"minecraft:pearlescent_froglight"},"bedrock_state":{"bedrock_identifier":"pearlescent_froglight","state":{"pillar_axis":"y"}}},{"java_state":{"Properties":{"axis":"z"},"Name":"minecraft:pearlescent_froglight"},"bedrock_state":{"bedrock_identifier":"pearlescent_froglight","state":{"pillar_axis":"z"}}},{"java_state":{"Name":"minecraft:frogspawn"},"bedrock_state":{"bedrock_identifier":"frog_spawn"}},{"java_state":{"Name":"minecraft:reinforced_deepslate"},"bedrock_state":{"bedrock_identifier":"reinforced_deepslate"}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north","cracked":"true"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north","cracked":"true"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south","cracked":"true"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south","cracked":"true"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west","cracked":"true"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west","cracked":"true"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east","cracked":"true"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east","cracked":"true"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"north","cracked":"false"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"north","cracked":"false"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":0 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"south","cracked":"false"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"south","cracked":"false"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":2 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"west","cracked":"false"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"west","cracked":"false"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":3 }}},{"java_state":{"Properties":{"waterlogged":"true","facing":"east","cracked":"false"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":1 }}},{"java_state":{"Properties":{"waterlogged":"false","facing":"east","cracked":"false"},"Name":"minecraft:decorated_pot"},"bedrock_state":{"bedrock_identifier":"decorated_pot","state":{"direction":1 }}},{"java_state":{"Properties":{"triggered":"true","orientation":"down_east","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"down_east","crafting":true }}},{"java_state":{"Properties":{"triggered":"false","orientation":"down_east","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"down_east","crafting":true }}},{"java_state":{"Properties":{"triggered":"true","orientation":"down_north","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"down_north","crafting":true }}},{"java_state":{"Properties":{"triggered":"false","orientation":"down_north","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"down_north","crafting":true }}},{"java_state":{"Properties":{"triggered":"true","orientation":"down_south","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"down_south","crafting":true }}},{"java_state":{"Properties":{"triggered":"false","orientation":"down_south","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"down_south","crafting":true }}},{"java_state":{"Properties":{"triggered":"true","orientation":"down_west","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"down_west","crafting":true }}},{"java_state":{"Properties":{"triggered":"false","orientation":"down_west","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"down_west","crafting":true }}},{"java_state":{"Properties":{"triggered":"true","orientation":"up_east","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"up_east","crafting":true }}},{"java_state":{"Properties":{"triggered":"false","orientation":"up_east","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"up_east","crafting":true }}},{"java_state":{"Properties":{"triggered":"true","orientation":"up_north","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"up_north","crafting":true }}},{"java_state":{"Properties":{"triggered":"false","orientation":"up_north","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"up_north","crafting":true }}},{"java_state":{"Properties":{"triggered":"true","orientation":"up_south","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"up_south","crafting":true }}},{"java_state":{"Properties":{"triggered":"false","orientation":"up_south","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"up_south","crafting":true }}},{"java_state":{"Properties":{"triggered":"true","orientation":"up_west","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"up_west","crafting":true }}},{"java_state":{"Properties":{"triggered":"false","orientation":"up_west","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"up_west","crafting":true }}},{"java_state":{"Properties":{"triggered":"true","orientation":"west_up","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"west_up","crafting":true }}},{"java_state":{"Properties":{"triggered":"false","orientation":"west_up","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"west_up","crafting":true }}},{"java_state":{"Properties":{"triggered":"true","orientation":"east_up","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"east_up","crafting":true }}},{"java_state":{"Properties":{"triggered":"false","orientation":"east_up","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"east_up","crafting":true }}},{"java_state":{"Properties":{"triggered":"true","orientation":"north_up","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"north_up","crafting":true }}},{"java_state":{"Properties":{"triggered":"false","orientation":"north_up","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"north_up","crafting":true }}},{"java_state":{"Properties":{"triggered":"true","orientation":"south_up","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"south_up","crafting":true }}},{"java_state":{"Properties":{"triggered":"false","orientation":"south_up","crafting":"true"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"south_up","crafting":true }}},{"java_state":{"Properties":{"triggered":"true","orientation":"down_east","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"down_east","crafting":false }}},{"java_state":{"Properties":{"triggered":"false","orientation":"down_east","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"down_east","crafting":false }}},{"java_state":{"Properties":{"triggered":"true","orientation":"down_north","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"down_north","crafting":false }}},{"java_state":{"Properties":{"triggered":"false","orientation":"down_north","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"down_north","crafting":false }}},{"java_state":{"Properties":{"triggered":"true","orientation":"down_south","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"down_south","crafting":false }}},{"java_state":{"Properties":{"triggered":"false","orientation":"down_south","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"down_south","crafting":false }}},{"java_state":{"Properties":{"triggered":"true","orientation":"down_west","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"down_west","crafting":false }}},{"java_state":{"Properties":{"triggered":"false","orientation":"down_west","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"down_west","crafting":false }}},{"java_state":{"Properties":{"triggered":"true","orientation":"up_east","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"up_east","crafting":false }}},{"java_state":{"Properties":{"triggered":"false","orientation":"up_east","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"up_east","crafting":false }}},{"java_state":{"Properties":{"triggered":"true","orientation":"up_north","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"up_north","crafting":false }}},{"java_state":{"Properties":{"triggered":"false","orientation":"up_north","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"up_north","crafting":false }}},{"java_state":{"Properties":{"triggered":"true","orientation":"up_south","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"up_south","crafting":false }}},{"java_state":{"Properties":{"triggered":"false","orientation":"up_south","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"up_south","crafting":false }}},{"java_state":{"Properties":{"triggered":"true","orientation":"up_west","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"up_west","crafting":false }}},{"java_state":{"Properties":{"triggered":"false","orientation":"up_west","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"up_west","crafting":false }}},{"java_state":{"Properties":{"triggered":"true","orientation":"west_up","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"west_up","crafting":false }}},{"java_state":{"Properties":{"triggered":"false","orientation":"west_up","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"west_up","crafting":false }}},{"java_state":{"Properties":{"triggered":"true","orientation":"east_up","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"east_up","crafting":false }}},{"java_state":{"Properties":{"triggered":"false","orientation":"east_up","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"east_up","crafting":false }}},{"java_state":{"Properties":{"triggered":"true","orientation":"north_up","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"north_up","crafting":false }}},{"java_state":{"Properties":{"triggered":"false","orientation":"north_up","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"north_up","crafting":false }}},{"java_state":{"Properties":{"triggered":"true","orientation":"south_up","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":true,"orientation":"south_up","crafting":false }}},{"java_state":{"Properties":{"triggered":"false","orientation":"south_up","crafting":"false"},"Name":"minecraft:crafter"},"bedrock_state":{"bedrock_identifier":"crafter","state":{"triggered_bit":false,"orientation":"south_up","crafting":false }}},{"java_state":{"Properties":{"trial_spawner_state":"inactive","ominous":"true"},"Name":"minecraft:trial_spawner"},"bedrock_state":{"bedrock_identifier":"trial_spawner","state":{"ominous":true,"trial_spawner_state":0 }}},{"java_state":{"Properties":{"trial_spawner_state":"waiting_for_players","ominous":"true"},"Name":"minecraft:trial_spawner"},"bedrock_state":{"bedrock_identifier":"trial_spawner","state":{"ominous":true,"trial_spawner_state":1 }}},{"java_state":{"Properties":{"trial_spawner_state":"active","ominous":"true"},"Name":"minecraft:trial_spawner"},"bedrock_state":{"bedrock_identifier":"trial_spawner","state":{"ominous":true,"trial_spawner_state":2 }}},{"java_state":{"Properties":{"trial_spawner_state":"waiting_for_reward_ejection","ominous":"true"},"Name":"minecraft:trial_spawner"},"bedrock_state":{"bedrock_identifier":"trial_spawner","state":{"ominous":true,"trial_spawner_state":3 }}},{"java_state":{"Properties":{"trial_spawner_state":"ejecting_reward","ominous":"true"},"Name":"minecraft:trial_spawner"},"bedrock_state":{"bedrock_identifier":"trial_spawner","state":{"ominous":true,"trial_spawner_state":4 }}},{"java_state":{"Properties":{"trial_spawner_state":"cooldown","ominous":"true"},"Name":"minecraft:trial_spawner"},"bedrock_state":{"bedrock_identifier":"trial_spawner","state":{"ominous":true,"trial_spawner_state":5 }}},{"java_state":{"Properties":{"trial_spawner_state":"inactive","ominous":"false"},"Name":"minecraft:trial_spawner"},"bedrock_state":{"bedrock_identifier":"trial_spawner","state":{"ominous":false,"trial_spawner_state":0 }}},{"java_state":{"Properties":{"trial_spawner_state":"waiting_for_players","ominous":"false"},"Name":"minecraft:trial_spawner"},"bedrock_state":{"bedrock_identifier":"trial_spawner","state":{"ominous":false,"trial_spawner_state":1 }}},{"java_state":{"Properties":{"trial_spawner_state":"active","ominous":"false"},"Name":"minecraft:trial_spawner"},"bedrock_state":{"bedrock_identifier":"trial_spawner","state":{"ominous":false,"trial_spawner_state":2 }}},{"java_state":{"Properties":{"trial_spawner_state":"waiting_for_reward_ejection","ominous":"false"},"Name":"minecraft:trial_spawner"},"bedrock_state":{"bedrock_identifier":"trial_spawner","state":{"ominous":false,"trial_spawner_state":3 }}},{"java_state":{"Properties":{"trial_spawner_state":"ejecting_reward","ominous":"false"},"Name":"minecraft:trial_spawner"},"bedrock_state":{"bedrock_identifier":"trial_spawner","state":{"ominous":false,"trial_spawner_state":4 }}},{"java_state":{"Properties":{"trial_spawner_state":"cooldown","ominous":"false"},"Name":"minecraft:trial_spawner"},"bedrock_state":{"bedrock_identifier":"trial_spawner","state":{"ominous":false,"trial_spawner_state":5 }}},{"java_state":{"Properties":{"vault_state":"inactive","ominous":"true","facing":"north"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"inactive","minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"vault_state":"active","ominous":"true","facing":"north"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"active","minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"vault_state":"unlocking","ominous":"true","facing":"north"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"unlocking","minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"vault_state":"ejecting","ominous":"true","facing":"north"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"ejecting","minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"vault_state":"inactive","ominous":"false","facing":"north"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"inactive","minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"vault_state":"active","ominous":"false","facing":"north"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"active","minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"vault_state":"unlocking","ominous":"false","facing":"north"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"unlocking","minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"vault_state":"ejecting","ominous":"false","facing":"north"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"ejecting","minecraft:cardinal_direction":"north"}}},{"java_state":{"Properties":{"vault_state":"inactive","ominous":"true","facing":"south"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"inactive","minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"vault_state":"active","ominous":"true","facing":"south"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"active","minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"vault_state":"unlocking","ominous":"true","facing":"south"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"unlocking","minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"vault_state":"ejecting","ominous":"true","facing":"south"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"ejecting","minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"vault_state":"inactive","ominous":"false","facing":"south"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"inactive","minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"vault_state":"active","ominous":"false","facing":"south"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"active","minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"vault_state":"unlocking","ominous":"false","facing":"south"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"unlocking","minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"vault_state":"ejecting","ominous":"false","facing":"south"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"ejecting","minecraft:cardinal_direction":"south"}}},{"java_state":{"Properties":{"vault_state":"inactive","ominous":"true","facing":"west"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"inactive","minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"vault_state":"active","ominous":"true","facing":"west"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"active","minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"vault_state":"unlocking","ominous":"true","facing":"west"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"unlocking","minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"vault_state":"ejecting","ominous":"true","facing":"west"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"ejecting","minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"vault_state":"inactive","ominous":"false","facing":"west"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"inactive","minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"vault_state":"active","ominous":"false","facing":"west"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"active","minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"vault_state":"unlocking","ominous":"false","facing":"west"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"unlocking","minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"vault_state":"ejecting","ominous":"false","facing":"west"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"ejecting","minecraft:cardinal_direction":"west"}}},{"java_state":{"Properties":{"vault_state":"inactive","ominous":"true","facing":"east"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"inactive","minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"vault_state":"active","ominous":"true","facing":"east"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"active","minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"vault_state":"unlocking","ominous":"true","facing":"east"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"unlocking","minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"vault_state":"ejecting","ominous":"true","facing":"east"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":true,"vault_state":"ejecting","minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"vault_state":"inactive","ominous":"false","facing":"east"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"inactive","minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"vault_state":"active","ominous":"false","facing":"east"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"active","minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"vault_state":"unlocking","ominous":"false","facing":"east"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"unlocking","minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"vault_state":"ejecting","ominous":"false","facing":"east"},"Name":"minecraft:vault"},"bedrock_state":{"bedrock_identifier":"vault","state":{"ominous":false,"vault_state":"ejecting","minecraft:cardinal_direction":"east"}}},{"java_state":{"Properties":{"waterlogged":"true"},"Name":"minecraft:heavy_core"},"bedrock_state":{"bedrock_identifier":"heavy_core"}},{"java_state":{"Properties":{"waterlogged":"false"},"Name":"minecraft:heavy_core"},"bedrock_state":{"bedrock_identifier":"heavy_core"}}],"DataVersion":3953 } \ No newline at end of file diff --git a/platforms/allay/src/main/resources/mapping/items_JE_1_20_4_TO_BE_1_20_0.json b/platforms/allay/src/main/resources/mapping/items_JE_1_20_4_TO_BE_1_20_0.json deleted file mode 100644 index 3e25907e1..000000000 --- a/platforms/allay/src/main/resources/mapping/items_JE_1_20_4_TO_BE_1_20_0.json +++ /dev/null @@ -1,7347 +0,0 @@ -{ - "minecraft:air": { - "bedrock_identifier": "minecraft:air", - "bedrock_data": 0 - }, - "minecraft:stone": { - "bedrock_identifier": "minecraft:stone", - "bedrock_data": 0, - "firstBlockRuntimeId": 1 - }, - "minecraft:granite": { - "bedrock_identifier": "minecraft:granite", - "bedrock_data": 1, - "firstBlockRuntimeId": 2 - }, - "minecraft:polished_granite": { - "bedrock_identifier": "minecraft:polished_granite", - "bedrock_data": 2, - "firstBlockRuntimeId": 3 - }, - "minecraft:diorite": { - "bedrock_identifier": "minecraft:diorite", - "bedrock_data": 3, - "firstBlockRuntimeId": 4 - }, - "minecraft:polished_diorite": { - "bedrock_identifier": "minecraft:polished_diorite", - "bedrock_data": 4, - "firstBlockRuntimeId": 5 - }, - "minecraft:andesite": { - "bedrock_identifier": "minecraft:andesite", - "bedrock_data": 5, - "firstBlockRuntimeId": 6 - }, - "minecraft:polished_andesite": { - "bedrock_identifier": "minecraft:polished_andesite", - "bedrock_data": 6, - "firstBlockRuntimeId": 7 - }, - "minecraft:deepslate": { - "bedrock_identifier": "minecraft:deepslate", - "bedrock_data": 0, - "firstBlockRuntimeId": 24904, - "lastBlockRuntimeId": 24906 - }, - "minecraft:cobbled_deepslate": { - "bedrock_identifier": "minecraft:cobbled_deepslate", - "bedrock_data": 0, - "firstBlockRuntimeId": 24907 - }, - "minecraft:polished_deepslate": { - "bedrock_identifier": "minecraft:polished_deepslate", - "bedrock_data": 0, - "firstBlockRuntimeId": 25318 - }, - "minecraft:calcite": { - "bedrock_identifier": "minecraft:calcite", - "bedrock_data": 0, - "firstBlockRuntimeId": 22316 - }, - "minecraft:tuff": { - "bedrock_identifier": "minecraft:tuff", - "bedrock_data": 0, - "firstBlockRuntimeId": 21081 - }, - "minecraft:tuff_slab": { - "bedrock_identifier": "minecraft:tuff_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 21082, - "lastBlockRuntimeId": 21087 - }, - "minecraft:tuff_stairs": { - "bedrock_identifier": "minecraft:tuff_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 21088, - "lastBlockRuntimeId": 21167 - }, - "minecraft:tuff_wall": { - "bedrock_identifier": "minecraft:tuff_wall", - "bedrock_data": 0, - "firstBlockRuntimeId": 21168, - "lastBlockRuntimeId": 21491 - }, - "minecraft:chiseled_tuff": { - "bedrock_identifier": "minecraft:chiseled_tuff", - "bedrock_data": 0, - "firstBlockRuntimeId": 21903 - }, - "minecraft:polished_tuff": { - "bedrock_identifier": "minecraft:polished_tuff", - "bedrock_data": 0, - "firstBlockRuntimeId": 21492 - }, - "minecraft:polished_tuff_slab": { - "bedrock_identifier": "minecraft:polished_tuff_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 21493, - "lastBlockRuntimeId": 21498 - }, - "minecraft:polished_tuff_stairs": { - "bedrock_identifier": "minecraft:polished_tuff_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 21499, - "lastBlockRuntimeId": 21578 - }, - "minecraft:polished_tuff_wall": { - "bedrock_identifier": "minecraft:polished_tuff_wall", - "bedrock_data": 0, - "firstBlockRuntimeId": 21579, - "lastBlockRuntimeId": 21902 - }, - "minecraft:tuff_bricks": { - "bedrock_identifier": "minecraft:tuff_bricks", - "bedrock_data": 0, - "firstBlockRuntimeId": 21904 - }, - "minecraft:tuff_brick_slab": { - "bedrock_identifier": "minecraft:tuff_brick_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 21905, - "lastBlockRuntimeId": 21910 - }, - "minecraft:tuff_brick_stairs": { - "bedrock_identifier": "minecraft:tuff_brick_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 21911, - "lastBlockRuntimeId": 21990 - }, - "minecraft:tuff_brick_wall": { - "bedrock_identifier": "minecraft:tuff_brick_wall", - "bedrock_data": 0, - "firstBlockRuntimeId": 21991, - "lastBlockRuntimeId": 22314 - }, - "minecraft:chiseled_tuff_bricks": { - "bedrock_identifier": "minecraft:chiseled_tuff_bricks", - "bedrock_data": 0, - "firstBlockRuntimeId": 22315 - }, - "minecraft:dripstone_block": { - "bedrock_identifier": "minecraft:dripstone_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 24768 - }, - "minecraft:grass_block": { - "bedrock_identifier": "minecraft:grass_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 8, - "lastBlockRuntimeId": 9 - }, - "minecraft:dirt": { - "bedrock_identifier": "minecraft:dirt", - "bedrock_data": 0, - "firstBlockRuntimeId": 10 - }, - "minecraft:coarse_dirt": { - "bedrock_identifier": "minecraft:dirt", - "bedrock_data": 1, - "firstBlockRuntimeId": 11 - }, - "minecraft:podzol": { - "bedrock_identifier": "minecraft:podzol", - "bedrock_data": 0, - "firstBlockRuntimeId": 12, - "lastBlockRuntimeId": 13 - }, - "minecraft:rooted_dirt": { - "bedrock_identifier": "minecraft:dirt_with_roots", - "bedrock_data": 0, - "firstBlockRuntimeId": 24902 - }, - "minecraft:mud": { - "bedrock_identifier": "minecraft:mud", - "bedrock_data": 0, - "firstBlockRuntimeId": 24903 - }, - "minecraft:crimson_nylium": { - "bedrock_identifier": "minecraft:crimson_nylium", - "bedrock_data": 0, - "firstBlockRuntimeId": 18608 - }, - "minecraft:warped_nylium": { - "bedrock_identifier": "minecraft:warped_nylium", - "bedrock_data": 0, - "firstBlockRuntimeId": 18591 - }, - "minecraft:cobblestone": { - "bedrock_identifier": "minecraft:cobblestone", - "bedrock_data": 0, - "firstBlockRuntimeId": 14 - }, - "minecraft:oak_planks": { - "bedrock_identifier": "minecraft:oak_planks", - "bedrock_data": 0, - "firstBlockRuntimeId": 15 - }, - "minecraft:spruce_planks": { - "bedrock_identifier": "minecraft:spruce_planks", - "bedrock_data": 1, - "firstBlockRuntimeId": 16 - }, - "minecraft:birch_planks": { - "bedrock_identifier": "minecraft:birch_planks", - "bedrock_data": 2, - "firstBlockRuntimeId": 17 - }, - "minecraft:jungle_planks": { - "bedrock_identifier": "minecraft:jungle_planks", - "bedrock_data": 3, - "firstBlockRuntimeId": 18 - }, - "minecraft:acacia_planks": { - "bedrock_identifier": "minecraft:acacia_planks", - "bedrock_data": 4, - "firstBlockRuntimeId": 19 - }, - "minecraft:cherry_planks": { - "bedrock_identifier": "minecraft:cherry_planks", - "bedrock_data": 0, - "firstBlockRuntimeId": 20 - }, - "minecraft:dark_oak_planks": { - "bedrock_identifier": "minecraft:dark_oak_planks", - "bedrock_data": 5, - "firstBlockRuntimeId": 21 - }, - "minecraft:mangrove_planks": { - "bedrock_identifier": "minecraft:mangrove_planks", - "bedrock_data": 0, - "firstBlockRuntimeId": 22 - }, - "minecraft:bamboo_planks": { - "bedrock_identifier": "minecraft:bamboo_planks", - "bedrock_data": 0, - "firstBlockRuntimeId": 23 - }, - "minecraft:crimson_planks": { - "bedrock_identifier": "minecraft:crimson_planks", - "bedrock_data": 0, - "firstBlockRuntimeId": 18666 - }, - "minecraft:warped_planks": { - "bedrock_identifier": "minecraft:warped_planks", - "bedrock_data": 0, - "firstBlockRuntimeId": 18667 - }, - "minecraft:bamboo_mosaic": { - "bedrock_identifier": "minecraft:bamboo_mosaic", - "bedrock_data": 0, - "firstBlockRuntimeId": 24 - }, - "minecraft:oak_sapling": { - "bedrock_identifier": "minecraft:oak_sapling", - "bedrock_data": 0, - "firstBlockRuntimeId": 25, - "lastBlockRuntimeId": 26 - }, - "minecraft:spruce_sapling": { - "bedrock_identifier": "minecraft:spruce_sapling", - "bedrock_data": 0, - "firstBlockRuntimeId": 27, - "lastBlockRuntimeId": 28 - }, - "minecraft:birch_sapling": { - "bedrock_identifier": "minecraft:birch_sapling", - "bedrock_data": 0, - "firstBlockRuntimeId": 29, - "lastBlockRuntimeId": 30 - }, - "minecraft:jungle_sapling": { - "bedrock_identifier": "minecraft:jungle_sapling", - "bedrock_data": 0, - "firstBlockRuntimeId": 31, - "lastBlockRuntimeId": 32 - }, - "minecraft:acacia_sapling": { - "bedrock_identifier": "minecraft:acacia_sapling", - "bedrock_data": 0, - "firstBlockRuntimeId": 33, - "lastBlockRuntimeId": 34 - }, - "minecraft:cherry_sapling": { - "bedrock_identifier": "minecraft:cherry_sapling", - "bedrock_data": 0, - "firstBlockRuntimeId": 35, - "lastBlockRuntimeId": 36 - }, - "minecraft:dark_oak_sapling": { - "bedrock_identifier": "minecraft:dark_oak_sapling", - "bedrock_data": 0, - "firstBlockRuntimeId": 37, - "lastBlockRuntimeId": 38 - }, - "minecraft:mangrove_propagule": { - "bedrock_identifier": "minecraft:mangrove_propagule", - "bedrock_data": 0, - "firstBlockRuntimeId": 39, - "lastBlockRuntimeId": 78 - }, - "minecraft:bedrock": { - "bedrock_identifier": "minecraft:bedrock", - "bedrock_data": 0, - "firstBlockRuntimeId": 79 - }, - "minecraft:sand": { - "bedrock_identifier": "minecraft:sand", - "bedrock_data": 0, - "firstBlockRuntimeId": 112 - }, - "minecraft:suspicious_sand": { - "bedrock_identifier": "minecraft:suspicious_sand", - "bedrock_data": 0, - "firstBlockRuntimeId": 113, - "lastBlockRuntimeId": 116 - }, - "minecraft:suspicious_gravel": { - "bedrock_identifier": "minecraft:suspicious_gravel", - "bedrock_data": 0, - "firstBlockRuntimeId": 119, - "lastBlockRuntimeId": 122 - }, - "minecraft:red_sand": { - "bedrock_identifier": "minecraft:sand", - "bedrock_data": 1, - "firstBlockRuntimeId": 117 - }, - "minecraft:gravel": { - "bedrock_identifier": "minecraft:gravel", - "bedrock_data": 0, - "firstBlockRuntimeId": 118 - }, - "minecraft:coal_ore": { - "bedrock_identifier": "minecraft:coal_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 127 - }, - "minecraft:deepslate_coal_ore": { - "bedrock_identifier": "minecraft:deepslate_coal_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 128 - }, - "minecraft:iron_ore": { - "bedrock_identifier": "minecraft:iron_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 125 - }, - "minecraft:deepslate_iron_ore": { - "bedrock_identifier": "minecraft:deepslate_iron_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 126 - }, - "minecraft:copper_ore": { - "bedrock_identifier": "minecraft:copper_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 22942 - }, - "minecraft:deepslate_copper_ore": { - "bedrock_identifier": "minecraft:deepslate_copper_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 22943 - }, - "minecraft:gold_ore": { - "bedrock_identifier": "minecraft:gold_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 123 - }, - "minecraft:deepslate_gold_ore": { - "bedrock_identifier": "minecraft:deepslate_gold_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 124 - }, - "minecraft:redstone_ore": { - "bedrock_identifier": "minecraft:redstone_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 5734, - "lastBlockRuntimeId": 5735 - }, - "minecraft:deepslate_redstone_ore": { - "bedrock_identifier": "minecraft:deepslate_redstone_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 5736, - "lastBlockRuntimeId": 5737 - }, - "minecraft:emerald_ore": { - "bedrock_identifier": "minecraft:emerald_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 7511 - }, - "minecraft:deepslate_emerald_ore": { - "bedrock_identifier": "minecraft:deepslate_emerald_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 7512 - }, - "minecraft:lapis_ore": { - "bedrock_identifier": "minecraft:lapis_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 520 - }, - "minecraft:deepslate_lapis_ore": { - "bedrock_identifier": "minecraft:deepslate_lapis_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 521 - }, - "minecraft:diamond_ore": { - "bedrock_identifier": "minecraft:diamond_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 4274 - }, - "minecraft:deepslate_diamond_ore": { - "bedrock_identifier": "minecraft:deepslate_diamond_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 4275 - }, - "minecraft:nether_gold_ore": { - "bedrock_identifier": "minecraft:nether_gold_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 129 - }, - "minecraft:nether_quartz_ore": { - "bedrock_identifier": "minecraft:quartz_ore", - "bedrock_data": 0, - "firstBlockRuntimeId": 9224 - }, - "minecraft:ancient_debris": { - "bedrock_identifier": "minecraft:ancient_debris", - "bedrock_data": 0, - "firstBlockRuntimeId": 19448 - }, - "minecraft:coal_block": { - "bedrock_identifier": "minecraft:coal_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 10745 - }, - "minecraft:raw_iron_block": { - "bedrock_identifier": "minecraft:raw_iron_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 26558 - }, - "minecraft:raw_copper_block": { - "bedrock_identifier": "minecraft:raw_copper_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 26559 - }, - "minecraft:raw_gold_block": { - "bedrock_identifier": "minecraft:raw_gold_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 26560 - }, - "minecraft:heavy_core": { - "bedrock_identifier": "minecraft:heavy_core", - "bedrock_data": 0, - "firstBlockRuntimeId": 26682, - "lastBlockRuntimeId": 26683 - }, - "minecraft:amethyst_block": { - "bedrock_identifier": "minecraft:amethyst_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 21031 - }, - "minecraft:budding_amethyst": { - "bedrock_identifier": "minecraft:budding_amethyst", - "bedrock_data": 0, - "firstBlockRuntimeId": 21032 - }, - "minecraft:iron_block": { - "bedrock_identifier": "minecraft:iron_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 2092 - }, - "minecraft:copper_block": { - "bedrock_identifier": "minecraft:copper_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 22938 - }, - "minecraft:gold_block": { - "bedrock_identifier": "minecraft:gold_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 2091 - }, - "minecraft:diamond_block": { - "bedrock_identifier": "minecraft:diamond_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 4276 - }, - "minecraft:netherite_block": { - "bedrock_identifier": "minecraft:netherite_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 19447 - }, - "minecraft:exposed_copper": { - "bedrock_identifier": "minecraft:exposed_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22939 - }, - "minecraft:weathered_copper": { - "bedrock_identifier": "minecraft:weathered_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22940 - }, - "minecraft:oxidized_copper": { - "bedrock_identifier": "minecraft:oxidized_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22941 - }, - "minecraft:chiseled_copper": { - "bedrock_identifier": "minecraft:chiseled_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22951 - }, - "minecraft:exposed_chiseled_copper": { - "bedrock_identifier": "minecraft:exposed_chiseled_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22950 - }, - "minecraft:weathered_chiseled_copper": { - "bedrock_identifier": "minecraft:weathered_chiseled_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22949 - }, - "minecraft:oxidized_chiseled_copper": { - "bedrock_identifier": "minecraft:oxidized_chiseled_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22948 - }, - "minecraft:cut_copper": { - "bedrock_identifier": "minecraft:cut_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22947 - }, - "minecraft:exposed_cut_copper": { - "bedrock_identifier": "minecraft:exposed_cut_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22946 - }, - "minecraft:weathered_cut_copper": { - "bedrock_identifier": "minecraft:weathered_cut_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22945 - }, - "minecraft:oxidized_cut_copper": { - "bedrock_identifier": "minecraft:oxidized_cut_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22944 - }, - "minecraft:cut_copper_stairs": { - "bedrock_identifier": "minecraft:cut_copper_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 23196, - "lastBlockRuntimeId": 23275 - }, - "minecraft:exposed_cut_copper_stairs": { - "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 23116, - "lastBlockRuntimeId": 23195 - }, - "minecraft:weathered_cut_copper_stairs": { - "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 23036, - "lastBlockRuntimeId": 23115 - }, - "minecraft:oxidized_cut_copper_stairs": { - "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 22956, - "lastBlockRuntimeId": 23035 - }, - "minecraft:cut_copper_slab": { - "bedrock_identifier": "minecraft:cut_copper_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 23294, - "lastBlockRuntimeId": 23299 - }, - "minecraft:exposed_cut_copper_slab": { - "bedrock_identifier": "minecraft:exposed_cut_copper_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 23288, - "lastBlockRuntimeId": 23293 - }, - "minecraft:weathered_cut_copper_slab": { - "bedrock_identifier": "minecraft:weathered_cut_copper_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 23282, - "lastBlockRuntimeId": 23287 - }, - "minecraft:oxidized_cut_copper_slab": { - "bedrock_identifier": "minecraft:oxidized_cut_copper_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 23276, - "lastBlockRuntimeId": 23281 - }, - "minecraft:waxed_copper_block": { - "bedrock_identifier": "minecraft:waxed_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 23300 - }, - "minecraft:waxed_exposed_copper": { - "bedrock_identifier": "minecraft:waxed_exposed_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 23302 - }, - "minecraft:waxed_weathered_copper": { - "bedrock_identifier": "minecraft:waxed_weathered_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 23301 - }, - "minecraft:waxed_oxidized_copper": { - "bedrock_identifier": "minecraft:waxed_oxidized_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 23303 - }, - "minecraft:waxed_chiseled_copper": { - "bedrock_identifier": "minecraft:waxed_chiseled_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22955 - }, - "minecraft:waxed_exposed_chiseled_copper": { - "bedrock_identifier": "minecraft:waxed_exposed_chiseled_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22954 - }, - "minecraft:waxed_weathered_chiseled_copper": { - "bedrock_identifier": "minecraft:waxed_weathered_chiseled_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22953 - }, - "minecraft:waxed_oxidized_chiseled_copper": { - "bedrock_identifier": "minecraft:waxed_oxidized_chiseled_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 22952 - }, - "minecraft:waxed_cut_copper": { - "bedrock_identifier": "minecraft:waxed_cut_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 23307 - }, - "minecraft:waxed_exposed_cut_copper": { - "bedrock_identifier": "minecraft:waxed_exposed_cut_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 23306 - }, - "minecraft:waxed_weathered_cut_copper": { - "bedrock_identifier": "minecraft:waxed_weathered_cut_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 23305 - }, - "minecraft:waxed_oxidized_cut_copper": { - "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper", - "bedrock_data": 0, - "firstBlockRuntimeId": 23304 - }, - "minecraft:waxed_cut_copper_stairs": { - "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 23548, - "lastBlockRuntimeId": 23627 - }, - "minecraft:waxed_exposed_cut_copper_stairs": { - "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 23468, - "lastBlockRuntimeId": 23547 - }, - "minecraft:waxed_weathered_cut_copper_stairs": { - "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 23388, - "lastBlockRuntimeId": 23467 - }, - "minecraft:waxed_oxidized_cut_copper_stairs": { - "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 23308, - "lastBlockRuntimeId": 23387 - }, - "minecraft:waxed_cut_copper_slab": { - "bedrock_identifier": "minecraft:waxed_cut_copper_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 23646, - "lastBlockRuntimeId": 23651 - }, - "minecraft:waxed_exposed_cut_copper_slab": { - "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 23640, - "lastBlockRuntimeId": 23645 - }, - "minecraft:waxed_weathered_cut_copper_slab": { - "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 23634, - "lastBlockRuntimeId": 23639 - }, - "minecraft:waxed_oxidized_cut_copper_slab": { - "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 23628, - "lastBlockRuntimeId": 23633 - }, - "minecraft:oak_log": { - "bedrock_identifier": "minecraft:oak_log", - "bedrock_data": 0, - "firstBlockRuntimeId": 130, - "lastBlockRuntimeId": 132 - }, - "minecraft:spruce_log": { - "bedrock_identifier": "minecraft:spruce_log", - "bedrock_data": 1, - "firstBlockRuntimeId": 133, - "lastBlockRuntimeId": 135 - }, - "minecraft:birch_log": { - "bedrock_identifier": "minecraft:birch_log", - "bedrock_data": 2, - "firstBlockRuntimeId": 136, - "lastBlockRuntimeId": 138 - }, - "minecraft:jungle_log": { - "bedrock_identifier": "minecraft:jungle_log", - "bedrock_data": 3, - "firstBlockRuntimeId": 139, - "lastBlockRuntimeId": 141 - }, - "minecraft:acacia_log": { - "bedrock_identifier": "minecraft:acacia_log", - "bedrock_data": 0, - "firstBlockRuntimeId": 142, - "lastBlockRuntimeId": 144 - }, - "minecraft:cherry_log": { - "bedrock_identifier": "minecraft:cherry_log", - "bedrock_data": 0, - "firstBlockRuntimeId": 145, - "lastBlockRuntimeId": 147 - }, - "minecraft:dark_oak_log": { - "bedrock_identifier": "minecraft:dark_oak_log", - "bedrock_data": 1, - "firstBlockRuntimeId": 148, - "lastBlockRuntimeId": 150 - }, - "minecraft:mangrove_log": { - "bedrock_identifier": "minecraft:mangrove_log", - "bedrock_data": 0, - "firstBlockRuntimeId": 151, - "lastBlockRuntimeId": 153 - }, - "minecraft:mangrove_roots": { - "bedrock_identifier": "minecraft:mangrove_roots", - "bedrock_data": 0, - "firstBlockRuntimeId": 154, - "lastBlockRuntimeId": 155 - }, - "minecraft:muddy_mangrove_roots": { - "bedrock_identifier": "minecraft:muddy_mangrove_roots", - "bedrock_data": 0, - "firstBlockRuntimeId": 156, - "lastBlockRuntimeId": 158 - }, - "minecraft:crimson_stem": { - "bedrock_identifier": "minecraft:crimson_stem", - "bedrock_data": 0, - "firstBlockRuntimeId": 18596, - "lastBlockRuntimeId": 18598 - }, - "minecraft:warped_stem": { - "bedrock_identifier": "minecraft:warped_stem", - "bedrock_data": 0, - "firstBlockRuntimeId": 18579, - "lastBlockRuntimeId": 18581 - }, - "minecraft:bamboo_block": { - "bedrock_identifier": "minecraft:bamboo_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 159, - "lastBlockRuntimeId": 161 - }, - "minecraft:stripped_oak_log": { - "bedrock_identifier": "minecraft:stripped_oak_log", - "bedrock_data": 0, - "firstBlockRuntimeId": 180, - "lastBlockRuntimeId": 182 - }, - "minecraft:stripped_spruce_log": { - "bedrock_identifier": "minecraft:stripped_spruce_log", - "bedrock_data": 0, - "firstBlockRuntimeId": 162, - "lastBlockRuntimeId": 164 - }, - "minecraft:stripped_birch_log": { - "bedrock_identifier": "minecraft:stripped_birch_log", - "bedrock_data": 0, - "firstBlockRuntimeId": 165, - "lastBlockRuntimeId": 167 - }, - "minecraft:stripped_jungle_log": { - "bedrock_identifier": "minecraft:stripped_jungle_log", - "bedrock_data": 0, - "firstBlockRuntimeId": 168, - "lastBlockRuntimeId": 170 - }, - "minecraft:stripped_acacia_log": { - "bedrock_identifier": "minecraft:stripped_acacia_log", - "bedrock_data": 0, - "firstBlockRuntimeId": 171, - "lastBlockRuntimeId": 173 - }, - "minecraft:stripped_cherry_log": { - "bedrock_identifier": "minecraft:stripped_cherry_log", - "bedrock_data": 0, - "firstBlockRuntimeId": 174, - "lastBlockRuntimeId": 176 - }, - "minecraft:stripped_dark_oak_log": { - "bedrock_identifier": "minecraft:stripped_dark_oak_log", - "bedrock_data": 0, - "firstBlockRuntimeId": 177, - "lastBlockRuntimeId": 179 - }, - "minecraft:stripped_mangrove_log": { - "bedrock_identifier": "minecraft:stripped_mangrove_log", - "bedrock_data": 0, - "firstBlockRuntimeId": 183, - "lastBlockRuntimeId": 185 - }, - "minecraft:stripped_crimson_stem": { - "bedrock_identifier": "minecraft:stripped_crimson_stem", - "bedrock_data": 0, - "firstBlockRuntimeId": 18599, - "lastBlockRuntimeId": 18601 - }, - "minecraft:stripped_warped_stem": { - "bedrock_identifier": "minecraft:stripped_warped_stem", - "bedrock_data": 0, - "firstBlockRuntimeId": 18582, - "lastBlockRuntimeId": 18584 - }, - "minecraft:stripped_oak_wood": { - "bedrock_identifier": "minecraft:stripped_oak_wood", - "bedrock_data": 8, - "firstBlockRuntimeId": 213, - "lastBlockRuntimeId": 215 - }, - "minecraft:stripped_spruce_wood": { - "bedrock_identifier": "minecraft:stripped_spruce_wood", - "bedrock_data": 9, - "firstBlockRuntimeId": 216, - "lastBlockRuntimeId": 218 - }, - "minecraft:stripped_birch_wood": { - "bedrock_identifier": "minecraft:stripped_birch_wood", - "bedrock_data": 10, - "firstBlockRuntimeId": 219, - "lastBlockRuntimeId": 221 - }, - "minecraft:stripped_jungle_wood": { - "bedrock_identifier": "minecraft:stripped_jungle_wood", - "bedrock_data": 11, - "firstBlockRuntimeId": 222, - "lastBlockRuntimeId": 224 - }, - "minecraft:stripped_acacia_wood": { - "bedrock_identifier": "minecraft:stripped_acacia_wood", - "bedrock_data": 12, - "firstBlockRuntimeId": 225, - "lastBlockRuntimeId": 227 - }, - "minecraft:stripped_cherry_wood": { - "bedrock_identifier": "minecraft:stripped_cherry_wood", - "bedrock_data": 0, - "firstBlockRuntimeId": 228, - "lastBlockRuntimeId": 230 - }, - "minecraft:stripped_dark_oak_wood": { - "bedrock_identifier": "minecraft:stripped_dark_oak_wood", - "bedrock_data": 13, - "firstBlockRuntimeId": 231, - "lastBlockRuntimeId": 233 - }, - "minecraft:stripped_mangrove_wood": { - "bedrock_identifier": "minecraft:stripped_mangrove_wood", - "bedrock_data": 0, - "firstBlockRuntimeId": 234, - "lastBlockRuntimeId": 236 - }, - "minecraft:stripped_crimson_hyphae": { - "bedrock_identifier": "minecraft:stripped_crimson_hyphae", - "bedrock_data": 0, - "firstBlockRuntimeId": 18605, - "lastBlockRuntimeId": 18607 - }, - "minecraft:stripped_warped_hyphae": { - "bedrock_identifier": "minecraft:stripped_warped_hyphae", - "bedrock_data": 0, - "firstBlockRuntimeId": 18588, - "lastBlockRuntimeId": 18590 - }, - "minecraft:stripped_bamboo_block": { - "bedrock_identifier": "minecraft:stripped_bamboo_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 186, - "lastBlockRuntimeId": 188 - }, - "minecraft:oak_wood": { - "bedrock_identifier": "minecraft:oak_wood", - "bedrock_data": 0, - "firstBlockRuntimeId": 189, - "lastBlockRuntimeId": 191 - }, - "minecraft:spruce_wood": { - "bedrock_identifier": "minecraft:spruce_wood", - "bedrock_data": 1, - "firstBlockRuntimeId": 192, - "lastBlockRuntimeId": 194 - }, - "minecraft:birch_wood": { - "bedrock_identifier": "minecraft:birch_wood", - "bedrock_data": 2, - "firstBlockRuntimeId": 195, - "lastBlockRuntimeId": 197 - }, - "minecraft:jungle_wood": { - "bedrock_identifier": "minecraft:jungle_wood", - "bedrock_data": 3, - "firstBlockRuntimeId": 198, - "lastBlockRuntimeId": 200 - }, - "minecraft:acacia_wood": { - "bedrock_identifier": "minecraft:acacia_wood", - "bedrock_data": 4, - "firstBlockRuntimeId": 201, - "lastBlockRuntimeId": 203 - }, - "minecraft:cherry_wood": { - "bedrock_identifier": "minecraft:cherry_wood", - "bedrock_data": 0, - "firstBlockRuntimeId": 204, - "lastBlockRuntimeId": 206 - }, - "minecraft:dark_oak_wood": { - "bedrock_identifier": "minecraft:dark_oak_wood", - "bedrock_data": 5, - "firstBlockRuntimeId": 207, - "lastBlockRuntimeId": 209 - }, - "minecraft:mangrove_wood": { - "bedrock_identifier": "minecraft:mangrove_wood", - "bedrock_data": 0, - "firstBlockRuntimeId": 210, - "lastBlockRuntimeId": 212 - }, - "minecraft:crimson_hyphae": { - "bedrock_identifier": "minecraft:crimson_hyphae", - "bedrock_data": 0, - "firstBlockRuntimeId": 18602, - "lastBlockRuntimeId": 18604 - }, - "minecraft:warped_hyphae": { - "bedrock_identifier": "minecraft:warped_hyphae", - "bedrock_data": 0, - "firstBlockRuntimeId": 18585, - "lastBlockRuntimeId": 18587 - }, - "minecraft:oak_leaves": { - "bedrock_identifier": "minecraft:oak_leaves", - "bedrock_data": 0, - "firstBlockRuntimeId": 237, - "lastBlockRuntimeId": 264 - }, - "minecraft:spruce_leaves": { - "bedrock_identifier": "minecraft:spruce_leaves", - "bedrock_data": 1, - "firstBlockRuntimeId": 265, - "lastBlockRuntimeId": 292 - }, - "minecraft:birch_leaves": { - "bedrock_identifier": "minecraft:birch_leaves", - "bedrock_data": 2, - "firstBlockRuntimeId": 293, - "lastBlockRuntimeId": 320 - }, - "minecraft:jungle_leaves": { - "bedrock_identifier": "minecraft:jungle_leaves", - "bedrock_data": 3, - "firstBlockRuntimeId": 321, - "lastBlockRuntimeId": 348 - }, - "minecraft:acacia_leaves": { - "bedrock_identifier": "minecraft:acacia_leaves", - "bedrock_data": 0, - "firstBlockRuntimeId": 349, - "lastBlockRuntimeId": 376 - }, - "minecraft:cherry_leaves": { - "bedrock_identifier": "minecraft:cherry_leaves", - "bedrock_data": 0, - "firstBlockRuntimeId": 377, - "lastBlockRuntimeId": 404 - }, - "minecraft:dark_oak_leaves": { - "bedrock_identifier": "minecraft:dark_oak_leaves", - "bedrock_data": 1, - "firstBlockRuntimeId": 405, - "lastBlockRuntimeId": 432 - }, - "minecraft:mangrove_leaves": { - "bedrock_identifier": "minecraft:mangrove_leaves", - "bedrock_data": 0, - "firstBlockRuntimeId": 433, - "lastBlockRuntimeId": 460 - }, - "minecraft:azalea_leaves": { - "bedrock_identifier": "minecraft:azalea_leaves", - "bedrock_data": 0, - "firstBlockRuntimeId": 461, - "lastBlockRuntimeId": 488 - }, - "minecraft:flowering_azalea_leaves": { - "bedrock_identifier": "minecraft:azalea_leaves_flowered", - "bedrock_data": 0, - "firstBlockRuntimeId": 489, - "lastBlockRuntimeId": 516 - }, - "minecraft:sponge": { - "bedrock_identifier": "minecraft:sponge", - "bedrock_data": 0, - "firstBlockRuntimeId": 517 - }, - "minecraft:wet_sponge": { - "bedrock_identifier": "minecraft:sponge", - "bedrock_data": 1, - "firstBlockRuntimeId": 518 - }, - "minecraft:glass": { - "bedrock_identifier": "minecraft:glass", - "bedrock_data": 0, - "firstBlockRuntimeId": 519 - }, - "minecraft:tinted_glass": { - "bedrock_identifier": "minecraft:tinted_glass", - "bedrock_data": 0, - "firstBlockRuntimeId": 22317 - }, - "minecraft:lapis_block": { - "bedrock_identifier": "minecraft:lapis_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 522 - }, - "minecraft:sandstone": { - "bedrock_identifier": "minecraft:sandstone", - "bedrock_data": 0, - "firstBlockRuntimeId": 535 - }, - "minecraft:chiseled_sandstone": { - "bedrock_identifier": "minecraft:sandstone", - "bedrock_data": 1, - "firstBlockRuntimeId": 536 - }, - "minecraft:cut_sandstone": { - "bedrock_identifier": "minecraft:sandstone", - "bedrock_data": 2, - "firstBlockRuntimeId": 537 - }, - "minecraft:cobweb": { - "bedrock_identifier": "minecraft:web", - "bedrock_data": 0, - "firstBlockRuntimeId": 2004 - }, - "minecraft:short_grass": { - "bedrock_identifier": "minecraft:tallgrass", - "bedrock_data": 0, - "firstBlockRuntimeId": 2005 - }, - "minecraft:fern": { - "bedrock_identifier": "minecraft:fern", - "bedrock_data": 0, - "firstBlockRuntimeId": 2006 - }, - "minecraft:azalea": { - "bedrock_identifier": "minecraft:azalea", - "bedrock_data": 0, - "firstBlockRuntimeId": 24824 - }, - "minecraft:flowering_azalea": { - "bedrock_identifier": "minecraft:flowering_azalea", - "bedrock_data": 0, - "firstBlockRuntimeId": 24825 - }, - "minecraft:dead_bush": { - "bedrock_identifier": "minecraft:deadbush", - "bedrock_data": 0, - "firstBlockRuntimeId": 2007 - }, - "minecraft:seagrass": { - "bedrock_identifier": "minecraft:seagrass", - "bedrock_data": 0, - "firstBlockRuntimeId": 2008 - }, - "minecraft:sea_pickle": { - "bedrock_identifier": "minecraft:sea_pickle", - "bedrock_data": 0, - "firstBlockRuntimeId": 12933, - "lastBlockRuntimeId": 12940 - }, - "minecraft:white_wool": { - "bedrock_identifier": "minecraft:white_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2047 - }, - "minecraft:orange_wool": { - "bedrock_identifier": "minecraft:orange_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2048 - }, - "minecraft:magenta_wool": { - "bedrock_identifier": "minecraft:magenta_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2049 - }, - "minecraft:light_blue_wool": { - "bedrock_identifier": "minecraft:light_blue_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2050 - }, - "minecraft:yellow_wool": { - "bedrock_identifier": "minecraft:yellow_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2051 - }, - "minecraft:lime_wool": { - "bedrock_identifier": "minecraft:lime_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2052 - }, - "minecraft:pink_wool": { - "bedrock_identifier": "minecraft:pink_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2053 - }, - "minecraft:gray_wool": { - "bedrock_identifier": "minecraft:gray_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2054 - }, - "minecraft:light_gray_wool": { - "bedrock_identifier": "minecraft:light_gray_wool", - "bedrock_data": 8, - "firstBlockRuntimeId": 2055 - }, - "minecraft:cyan_wool": { - "bedrock_identifier": "minecraft:cyan_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2056 - }, - "minecraft:purple_wool": { - "bedrock_identifier": "minecraft:purple_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2057 - }, - "minecraft:blue_wool": { - "bedrock_identifier": "minecraft:blue_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2058 - }, - "minecraft:brown_wool": { - "bedrock_identifier": "minecraft:brown_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2059 - }, - "minecraft:green_wool": { - "bedrock_identifier": "minecraft:green_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2060 - }, - "minecraft:red_wool": { - "bedrock_identifier": "minecraft:red_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2061 - }, - "minecraft:black_wool": { - "bedrock_identifier": "minecraft:black_wool", - "bedrock_data": 0, - "firstBlockRuntimeId": 2062 - }, - "minecraft:dandelion": { - "bedrock_identifier": "minecraft:yellow_flower", - "bedrock_data": 0, - "firstBlockRuntimeId": 2075 - }, - "minecraft:poppy": { - "bedrock_identifier": "minecraft:poppy", - "bedrock_data": 0, - "firstBlockRuntimeId": 2077 - }, - "minecraft:blue_orchid": { - "bedrock_identifier": "minecraft:blue_orchid", - "bedrock_data": 0, - "firstBlockRuntimeId": 2078 - }, - "minecraft:allium": { - "bedrock_identifier": "minecraft:allium", - "bedrock_data": 0, - "firstBlockRuntimeId": 2079 - }, - "minecraft:azure_bluet": { - "bedrock_identifier": "minecraft:azure_bluet", - "bedrock_data": 0, - "firstBlockRuntimeId": 2080 - }, - "minecraft:red_tulip": { - "bedrock_identifier": "minecraft:red_tulip", - "bedrock_data": 0, - "firstBlockRuntimeId": 2081 - }, - "minecraft:orange_tulip": { - "bedrock_identifier": "minecraft:orange_tulip", - "bedrock_data": 0, - "firstBlockRuntimeId": 2082 - }, - "minecraft:white_tulip": { - "bedrock_identifier": "minecraft:white_tulip", - "bedrock_data": 0, - "firstBlockRuntimeId": 2083 - }, - "minecraft:pink_tulip": { - "bedrock_identifier": "minecraft:pink_tulip", - "bedrock_data": 0, - "firstBlockRuntimeId": 2084 - }, - "minecraft:oxeye_daisy": { - "bedrock_identifier": "minecraft:oxeye_daisy", - "bedrock_data": 0, - "firstBlockRuntimeId": 2085 - }, - "minecraft:cornflower": { - "bedrock_identifier": "minecraft:cornflower", - "bedrock_data": 0, - "firstBlockRuntimeId": 2086 - }, - "minecraft:lily_of_the_valley": { - "bedrock_identifier": "minecraft:lily_of_the_valley", - "bedrock_data": 0, - "firstBlockRuntimeId": 2088 - }, - "minecraft:wither_rose": { - "bedrock_identifier": "minecraft:wither_rose", - "bedrock_data": 0, - "firstBlockRuntimeId": 2087 - }, - "minecraft:torchflower": { - "bedrock_identifier": "minecraft:torchflower", - "bedrock_data": 0, - "firstBlockRuntimeId": 2076 - }, - "minecraft:pitcher_plant": { - "bedrock_identifier": "minecraft:pitcher_plant", - "bedrock_data": 0, - "firstBlockRuntimeId": 12507, - "lastBlockRuntimeId": 12508 - }, - "minecraft:spore_blossom": { - "bedrock_identifier": "minecraft:spore_blossom", - "bedrock_data": 0, - "firstBlockRuntimeId": 24823 - }, - "minecraft:brown_mushroom": { - "bedrock_identifier": "minecraft:brown_mushroom", - "bedrock_data": 0, - "firstBlockRuntimeId": 2089 - }, - "minecraft:red_mushroom": { - "bedrock_identifier": "minecraft:red_mushroom", - "bedrock_data": 0, - "firstBlockRuntimeId": 2090 - }, - "minecraft:crimson_fungus": { - "bedrock_identifier": "minecraft:crimson_fungus", - "bedrock_data": 0, - "firstBlockRuntimeId": 18609 - }, - "minecraft:warped_fungus": { - "bedrock_identifier": "minecraft:warped_fungus", - "bedrock_data": 0, - "firstBlockRuntimeId": 18592 - }, - "minecraft:crimson_roots": { - "bedrock_identifier": "minecraft:crimson_roots", - "bedrock_data": 0, - "firstBlockRuntimeId": 18665 - }, - "minecraft:warped_roots": { - "bedrock_identifier": "minecraft:warped_roots", - "bedrock_data": 0, - "firstBlockRuntimeId": 18594 - }, - "minecraft:nether_sprouts": { - "bedrock_identifier": "minecraft:nether_sprouts", - "bedrock_data": 0, - "firstBlockRuntimeId": 18595 - }, - "minecraft:weeping_vines": { - "bedrock_identifier": "minecraft:weeping_vines", - "bedrock_data": 0, - "firstBlockRuntimeId": 18611, - "lastBlockRuntimeId": 18636 - }, - "minecraft:twisting_vines": { - "bedrock_identifier": "minecraft:twisting_vines", - "bedrock_data": 0, - "firstBlockRuntimeId": 18638, - "lastBlockRuntimeId": 18663 - }, - "minecraft:sugar_cane": { - "bedrock_identifier": "minecraft:sugar_cane", - "bedrock_data": 0, - "firstBlockRuntimeId": 5799, - "lastBlockRuntimeId": 5814 - }, - "minecraft:kelp": { - "bedrock_identifier": "minecraft:kelp", - "bedrock_data": 0, - "firstBlockRuntimeId": 12760, - "lastBlockRuntimeId": 12785 - }, - "minecraft:moss_carpet": { - "bedrock_identifier": "minecraft:moss_carpet", - "bedrock_data": 0, - "firstBlockRuntimeId": 24826 - }, - "minecraft:pink_petals": { - "bedrock_identifier": "minecraft:pink_petals", - "bedrock_data": 0, - "firstBlockRuntimeId": 24827, - "lastBlockRuntimeId": 24842 - }, - "minecraft:moss_block": { - "bedrock_identifier": "minecraft:moss_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 24843 - }, - "minecraft:hanging_roots": { - "bedrock_identifier": "minecraft:hanging_roots", - "bedrock_data": 0, - "firstBlockRuntimeId": 24900, - "lastBlockRuntimeId": 24901 - }, - "minecraft:big_dripleaf": { - "bedrock_identifier": "minecraft:big_dripleaf", - "bedrock_data": 0, - "firstBlockRuntimeId": 24844, - "lastBlockRuntimeId": 24875 - }, - "minecraft:small_dripleaf": { - "bedrock_identifier": "minecraft:small_dripleaf_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 24884, - "lastBlockRuntimeId": 24899 - }, - "minecraft:bamboo": { - "bedrock_identifier": "minecraft:bamboo", - "bedrock_data": 0, - "firstBlockRuntimeId": 12945, - "lastBlockRuntimeId": 12956 - }, - "minecraft:oak_slab": { - "bedrock_identifier": "minecraft:oak_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11162, - "lastBlockRuntimeId": 11167 - }, - "minecraft:spruce_slab": { - "bedrock_identifier": "minecraft:spruce_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11168, - "lastBlockRuntimeId": 11173 - }, - "minecraft:birch_slab": { - "bedrock_identifier": "minecraft:birch_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11174, - "lastBlockRuntimeId": 11179 - }, - "minecraft:jungle_slab": { - "bedrock_identifier": "minecraft:jungle_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11180, - "lastBlockRuntimeId": 11185 - }, - "minecraft:acacia_slab": { - "bedrock_identifier": "minecraft:acacia_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11186, - "lastBlockRuntimeId": 11191 - }, - "minecraft:cherry_slab": { - "bedrock_identifier": "minecraft:cherry_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11192, - "lastBlockRuntimeId": 11197 - }, - "minecraft:dark_oak_slab": { - "bedrock_identifier": "minecraft:dark_oak_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11198, - "lastBlockRuntimeId": 11203 - }, - "minecraft:mangrove_slab": { - "bedrock_identifier": "minecraft:mangrove_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11204, - "lastBlockRuntimeId": 11209 - }, - "minecraft:bamboo_slab": { - "bedrock_identifier": "minecraft:bamboo_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11210, - "lastBlockRuntimeId": 11215 - }, - "minecraft:bamboo_mosaic_slab": { - "bedrock_identifier": "minecraft:bamboo_mosaic_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11216, - "lastBlockRuntimeId": 11221 - }, - "minecraft:crimson_slab": { - "bedrock_identifier": "minecraft:crimson_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 18668, - "lastBlockRuntimeId": 18673 - }, - "minecraft:warped_slab": { - "bedrock_identifier": "minecraft:warped_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 18674, - "lastBlockRuntimeId": 18679 - }, - "minecraft:stone_slab": { - "bedrock_identifier": "minecraft:stone_block_slab4", - "bedrock_data": 2, - "firstBlockRuntimeId": 11222, - "lastBlockRuntimeId": 11227 - }, - "minecraft:smooth_stone_slab": { - "bedrock_identifier": "minecraft:smooth_stone_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11228, - "lastBlockRuntimeId": 11233 - }, - "minecraft:sandstone_slab": { - "bedrock_identifier": "minecraft:sandstone_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11234, - "lastBlockRuntimeId": 11239 - }, - "minecraft:cut_sandstone_slab": { - "bedrock_identifier": "minecraft:stone_block_slab4", - "bedrock_data": 3, - "firstBlockRuntimeId": 11240, - "lastBlockRuntimeId": 11245 - }, - "minecraft:petrified_oak_slab": { - "bedrock_identifier": "minecraft:petrified_oak_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11246, - "lastBlockRuntimeId": 11251 - }, - "minecraft:cobblestone_slab": { - "bedrock_identifier": "minecraft:cobblestone_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11252, - "lastBlockRuntimeId": 11257 - }, - "minecraft:brick_slab": { - "bedrock_identifier": "minecraft:brick_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11258, - "lastBlockRuntimeId": 11263 - }, - "minecraft:stone_brick_slab": { - "bedrock_identifier": "minecraft:stone_brick_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11264, - "lastBlockRuntimeId": 11269 - }, - "minecraft:mud_brick_slab": { - "bedrock_identifier": "minecraft:mud_brick_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11270, - "lastBlockRuntimeId": 11275 - }, - "minecraft:nether_brick_slab": { - "bedrock_identifier": "minecraft:nether_brick_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11276, - "lastBlockRuntimeId": 11281 - }, - "minecraft:quartz_slab": { - "bedrock_identifier": "minecraft:quartz_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 11282, - "lastBlockRuntimeId": 11287 - }, - "minecraft:red_sandstone_slab": { - "bedrock_identifier": "minecraft:stone_block_slab2", - "bedrock_data": 0, - "firstBlockRuntimeId": 11288, - "lastBlockRuntimeId": 11293 - }, - "minecraft:cut_red_sandstone_slab": { - "bedrock_identifier": "minecraft:stone_block_slab4", - "bedrock_data": 4, - "firstBlockRuntimeId": 11294, - "lastBlockRuntimeId": 11299 - }, - "minecraft:purpur_slab": { - "bedrock_identifier": "minecraft:stone_block_slab2", - "bedrock_data": 1, - "firstBlockRuntimeId": 11300, - "lastBlockRuntimeId": 11305 - }, - "minecraft:prismarine_slab": { - "bedrock_identifier": "minecraft:stone_block_slab2", - "bedrock_data": 2, - "firstBlockRuntimeId": 10706, - "lastBlockRuntimeId": 10711 - }, - "minecraft:prismarine_brick_slab": { - "bedrock_identifier": "minecraft:stone_block_slab2", - "bedrock_data": 4, - "firstBlockRuntimeId": 10712, - "lastBlockRuntimeId": 10717 - }, - "minecraft:dark_prismarine_slab": { - "bedrock_identifier": "minecraft:stone_block_slab2", - "bedrock_data": 3, - "firstBlockRuntimeId": 10718, - "lastBlockRuntimeId": 10723 - }, - "minecraft:smooth_quartz": { - "bedrock_identifier": "minecraft:quartz_block", - "bedrock_data": 3, - "firstBlockRuntimeId": 11308 - }, - "minecraft:smooth_red_sandstone": { - "bedrock_identifier": "minecraft:red_sandstone", - "bedrock_data": 3, - "firstBlockRuntimeId": 11309 - }, - "minecraft:smooth_sandstone": { - "bedrock_identifier": "minecraft:sandstone", - "bedrock_data": 3, - "firstBlockRuntimeId": 11307 - }, - "minecraft:smooth_stone": { - "bedrock_identifier": "minecraft:smooth_stone", - "bedrock_data": 0, - "firstBlockRuntimeId": 11306 - }, - "minecraft:bricks": { - "bedrock_identifier": "minecraft:brick_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 2093 - }, - "minecraft:bookshelf": { - "bedrock_identifier": "minecraft:bookshelf", - "bedrock_data": 0, - "firstBlockRuntimeId": 2096 - }, - "minecraft:chiseled_bookshelf": { - "bedrock_identifier": "minecraft:chiseled_bookshelf", - "bedrock_data": 0, - "firstBlockRuntimeId": 2097, - "lastBlockRuntimeId": 2352 - }, - "minecraft:decorated_pot": { - "bedrock_identifier": "minecraft:decorated_pot", - "bedrock_data": 0, - "firstBlockRuntimeId": 26574, - "lastBlockRuntimeId": 26589 - }, - "minecraft:mossy_cobblestone": { - "bedrock_identifier": "minecraft:mossy_cobblestone", - "bedrock_data": 0, - "firstBlockRuntimeId": 2353 - }, - "minecraft:obsidian": { - "bedrock_identifier": "minecraft:obsidian", - "bedrock_data": 0, - "firstBlockRuntimeId": 2354 - }, - "minecraft:torch": { - "bedrock_identifier": "minecraft:torch", - "bedrock_data": 0, - "firstBlockRuntimeId": 2355 - }, - "minecraft:end_rod": { - "bedrock_identifier": "minecraft:end_rod", - "bedrock_data": 0, - "firstBlockRuntimeId": 12334, - "lastBlockRuntimeId": 12339 - }, - "minecraft:chorus_plant": { - "bedrock_identifier": "minecraft:chorus_plant", - "bedrock_data": 0, - "firstBlockRuntimeId": 12340, - "lastBlockRuntimeId": 12403 - }, - "minecraft:chorus_flower": { - "bedrock_identifier": "minecraft:chorus_flower", - "bedrock_data": 0, - "firstBlockRuntimeId": 12404, - "lastBlockRuntimeId": 12409 - }, - "minecraft:purpur_block": { - "bedrock_identifier": "minecraft:purpur_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12410 - }, - "minecraft:purpur_pillar": { - "bedrock_identifier": "minecraft:purpur_block", - "bedrock_data": 2, - "firstBlockRuntimeId": 12411, - "lastBlockRuntimeId": 12413 - }, - "minecraft:purpur_stairs": { - "bedrock_identifier": "minecraft:purpur_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 12414, - "lastBlockRuntimeId": 12493 - }, - "minecraft:spawner": { - "bedrock_identifier": "minecraft:mob_spawner", - "bedrock_data": 0, - "firstBlockRuntimeId": 2873 - }, - "minecraft:chest": { - "bedrock_identifier": "minecraft:chest", - "bedrock_data": 0, - "firstBlockRuntimeId": 2954, - "lastBlockRuntimeId": 2977 - }, - "minecraft:crafting_table": { - "bedrock_identifier": "minecraft:crafting_table", - "bedrock_data": 0, - "firstBlockRuntimeId": 4277 - }, - "minecraft:farmland": { - "bedrock_identifier": "minecraft:farmland", - "bedrock_data": 0, - "firstBlockRuntimeId": 4286, - "lastBlockRuntimeId": 4293 - }, - "minecraft:furnace": { - "bedrock_identifier": "minecraft:furnace", - "bedrock_data": 0, - "firstBlockRuntimeId": 4294, - "lastBlockRuntimeId": 4301 - }, - "minecraft:ladder": { - "bedrock_identifier": "minecraft:ladder", - "bedrock_data": 0, - "firstBlockRuntimeId": 4654, - "lastBlockRuntimeId": 4661 - }, - "minecraft:cobblestone_stairs": { - "bedrock_identifier": "minecraft:stone_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 4682, - "lastBlockRuntimeId": 4761 - }, - "minecraft:snow": { - "bedrock_identifier": "minecraft:snow_layer", - "bedrock_data": 0, - "firstBlockRuntimeId": 5772, - "lastBlockRuntimeId": 5779 - }, - "minecraft:ice": { - "bedrock_identifier": "minecraft:ice", - "bedrock_data": 0, - "firstBlockRuntimeId": 5780 - }, - "minecraft:snow_block": { - "bedrock_identifier": "minecraft:snow", - "bedrock_data": 0, - "firstBlockRuntimeId": 5781 - }, - "minecraft:cactus": { - "bedrock_identifier": "minecraft:cactus", - "bedrock_data": 0, - "firstBlockRuntimeId": 5782, - "lastBlockRuntimeId": 5797 - }, - "minecraft:clay": { - "bedrock_identifier": "minecraft:clay", - "bedrock_data": 0, - "firstBlockRuntimeId": 5798 - }, - "minecraft:jukebox": { - "bedrock_identifier": "minecraft:jukebox", - "bedrock_data": 0, - "firstBlockRuntimeId": 5815, - "lastBlockRuntimeId": 5816 - }, - "minecraft:oak_fence": { - "bedrock_identifier": "minecraft:oak_fence", - "bedrock_data": 0, - "firstBlockRuntimeId": 5817, - "lastBlockRuntimeId": 5848 - }, - "minecraft:spruce_fence": { - "bedrock_identifier": "minecraft:spruce_fence", - "bedrock_data": 1, - "firstBlockRuntimeId": 11566, - "lastBlockRuntimeId": 11597 - }, - "minecraft:birch_fence": { - "bedrock_identifier": "minecraft:birch_fence", - "bedrock_data": 2, - "firstBlockRuntimeId": 11598, - "lastBlockRuntimeId": 11629 - }, - "minecraft:jungle_fence": { - "bedrock_identifier": "minecraft:jungle_fence", - "bedrock_data": 3, - "firstBlockRuntimeId": 11630, - "lastBlockRuntimeId": 11661 - }, - "minecraft:acacia_fence": { - "bedrock_identifier": "minecraft:acacia_fence", - "bedrock_data": 4, - "firstBlockRuntimeId": 11662, - "lastBlockRuntimeId": 11693 - }, - "minecraft:cherry_fence": { - "bedrock_identifier": "minecraft:cherry_fence", - "bedrock_data": 0, - "firstBlockRuntimeId": 11694, - "lastBlockRuntimeId": 11725 - }, - "minecraft:dark_oak_fence": { - "bedrock_identifier": "minecraft:dark_oak_fence", - "bedrock_data": 5, - "firstBlockRuntimeId": 11726, - "lastBlockRuntimeId": 11757 - }, - "minecraft:mangrove_fence": { - "bedrock_identifier": "minecraft:mangrove_fence", - "bedrock_data": 0, - "firstBlockRuntimeId": 11758, - "lastBlockRuntimeId": 11789 - }, - "minecraft:bamboo_fence": { - "bedrock_identifier": "minecraft:bamboo_fence", - "bedrock_data": 0, - "firstBlockRuntimeId": 11790, - "lastBlockRuntimeId": 11821 - }, - "minecraft:crimson_fence": { - "bedrock_identifier": "minecraft:crimson_fence", - "bedrock_data": 0, - "firstBlockRuntimeId": 18684, - "lastBlockRuntimeId": 18715 - }, - "minecraft:warped_fence": { - "bedrock_identifier": "minecraft:warped_fence", - "bedrock_data": 0, - "firstBlockRuntimeId": 18716, - "lastBlockRuntimeId": 18747 - }, - "minecraft:pumpkin": { - "bedrock_identifier": "minecraft:pumpkin", - "bedrock_data": 0, - "firstBlockRuntimeId": 6811 - }, - "minecraft:carved_pumpkin": { - "bedrock_identifier": "minecraft:carved_pumpkin", - "bedrock_data": 0, - "firstBlockRuntimeId": 5866, - "lastBlockRuntimeId": 5869 - }, - "minecraft:jack_o_lantern": { - "bedrock_identifier": "minecraft:lit_pumpkin", - "bedrock_data": 0, - "firstBlockRuntimeId": 5870, - "lastBlockRuntimeId": 5873 - }, - "minecraft:netherrack": { - "bedrock_identifier": "minecraft:netherrack", - "bedrock_data": 0, - "firstBlockRuntimeId": 5849 - }, - "minecraft:soul_sand": { - "bedrock_identifier": "minecraft:soul_sand", - "bedrock_data": 0, - "firstBlockRuntimeId": 5850 - }, - "minecraft:soul_soil": { - "bedrock_identifier": "minecraft:soul_soil", - "bedrock_data": 0, - "firstBlockRuntimeId": 5851 - }, - "minecraft:basalt": { - "bedrock_identifier": "minecraft:basalt", - "bedrock_data": 0, - "firstBlockRuntimeId": 5852, - "lastBlockRuntimeId": 5854 - }, - "minecraft:polished_basalt": { - "bedrock_identifier": "minecraft:polished_basalt", - "bedrock_data": 0, - "firstBlockRuntimeId": 5855, - "lastBlockRuntimeId": 5857 - }, - "minecraft:smooth_basalt": { - "bedrock_identifier": "minecraft:smooth_basalt", - "bedrock_data": 0, - "firstBlockRuntimeId": 26557 - }, - "minecraft:soul_torch": { - "bedrock_identifier": "minecraft:soul_torch", - "bedrock_data": 0, - "firstBlockRuntimeId": 5858 - }, - "minecraft:glowstone": { - "bedrock_identifier": "minecraft:glowstone", - "bedrock_data": 0, - "firstBlockRuntimeId": 5863 - }, - "minecraft:infested_stone": { - "bedrock_identifier": "minecraft:monster_egg", - "bedrock_data": 0, - "firstBlockRuntimeId": 6543 - }, - "minecraft:infested_cobblestone": { - "bedrock_identifier": "minecraft:monster_egg", - "bedrock_data": 1, - "firstBlockRuntimeId": 6544 - }, - "minecraft:infested_stone_bricks": { - "bedrock_identifier": "minecraft:monster_egg", - "bedrock_data": 2, - "firstBlockRuntimeId": 6545 - }, - "minecraft:infested_mossy_stone_bricks": { - "bedrock_identifier": "minecraft:monster_egg", - "bedrock_data": 3, - "firstBlockRuntimeId": 6546 - }, - "minecraft:infested_cracked_stone_bricks": { - "bedrock_identifier": "minecraft:monster_egg", - "bedrock_data": 4, - "firstBlockRuntimeId": 6547 - }, - "minecraft:infested_chiseled_stone_bricks": { - "bedrock_identifier": "minecraft:monster_egg", - "bedrock_data": 5, - "firstBlockRuntimeId": 6548 - }, - "minecraft:infested_deepslate": { - "bedrock_identifier": "minecraft:infested_deepslate", - "bedrock_data": 0, - "firstBlockRuntimeId": 26554, - "lastBlockRuntimeId": 26556 - }, - "minecraft:stone_bricks": { - "bedrock_identifier": "minecraft:stonebrick", - "bedrock_data": 0, - "firstBlockRuntimeId": 6537 - }, - "minecraft:mossy_stone_bricks": { - "bedrock_identifier": "minecraft:stonebrick", - "bedrock_data": 1, - "firstBlockRuntimeId": 6538 - }, - "minecraft:cracked_stone_bricks": { - "bedrock_identifier": "minecraft:stonebrick", - "bedrock_data": 2, - "firstBlockRuntimeId": 6539 - }, - "minecraft:chiseled_stone_bricks": { - "bedrock_identifier": "minecraft:stonebrick", - "bedrock_data": 3, - "firstBlockRuntimeId": 6540 - }, - "minecraft:packed_mud": { - "bedrock_identifier": "minecraft:packed_mud", - "bedrock_data": 0, - "firstBlockRuntimeId": 6541 - }, - "minecraft:mud_bricks": { - "bedrock_identifier": "minecraft:mud_bricks", - "bedrock_data": 0, - "firstBlockRuntimeId": 6542 - }, - "minecraft:deepslate_bricks": { - "bedrock_identifier": "minecraft:deepslate_bricks", - "bedrock_data": 0, - "firstBlockRuntimeId": 26140 - }, - "minecraft:cracked_deepslate_bricks": { - "bedrock_identifier": "minecraft:cracked_deepslate_bricks", - "bedrock_data": 0, - "firstBlockRuntimeId": 26552 - }, - "minecraft:deepslate_tiles": { - "bedrock_identifier": "minecraft:deepslate_tiles", - "bedrock_data": 0, - "firstBlockRuntimeId": 25729 - }, - "minecraft:cracked_deepslate_tiles": { - "bedrock_identifier": "minecraft:cracked_deepslate_tiles", - "bedrock_data": 0, - "firstBlockRuntimeId": 26553 - }, - "minecraft:chiseled_deepslate": { - "bedrock_identifier": "minecraft:chiseled_deepslate", - "bedrock_data": 0, - "firstBlockRuntimeId": 26551 - }, - "minecraft:reinforced_deepslate": { - "bedrock_identifier": "minecraft:reinforced_deepslate", - "bedrock_data": 0, - "firstBlockRuntimeId": 26573 - }, - "minecraft:brown_mushroom_block": { - "bedrock_identifier": "minecraft:brown_mushroom_block", - "bedrock_data": 14, - "firstBlockRuntimeId": 6549, - "lastBlockRuntimeId": 6612 - }, - "minecraft:red_mushroom_block": { - "bedrock_identifier": "minecraft:red_mushroom_block", - "bedrock_data": 14, - "firstBlockRuntimeId": 6613, - "lastBlockRuntimeId": 6676 - }, - "minecraft:mushroom_stem": { - "bedrock_identifier": "minecraft:brown_mushroom_block", - "bedrock_data": 15, - "firstBlockRuntimeId": 6677, - "lastBlockRuntimeId": 6740 - }, - "minecraft:iron_bars": { - "bedrock_identifier": "minecraft:iron_bars", - "bedrock_data": 0, - "firstBlockRuntimeId": 6741, - "lastBlockRuntimeId": 6772 - }, - "minecraft:chain": { - "bedrock_identifier": "minecraft:chain", - "bedrock_data": 0, - "firstBlockRuntimeId": 6773, - "lastBlockRuntimeId": 6778 - }, - "minecraft:glass_pane": { - "bedrock_identifier": "minecraft:glass_pane", - "bedrock_data": 0, - "firstBlockRuntimeId": 6779, - "lastBlockRuntimeId": 6810 - }, - "minecraft:melon": { - "bedrock_identifier": "minecraft:melon_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 6812 - }, - "minecraft:vine": { - "bedrock_identifier": "minecraft:vine", - "bedrock_data": 0, - "firstBlockRuntimeId": 6837, - "lastBlockRuntimeId": 6868 - }, - "minecraft:glow_lichen": { - "bedrock_identifier": "minecraft:glow_lichen", - "bedrock_data": 0, - "firstBlockRuntimeId": 6869, - "lastBlockRuntimeId": 6996 - }, - "minecraft:brick_stairs": { - "bedrock_identifier": "minecraft:brick_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 7029, - "lastBlockRuntimeId": 7108 - }, - "minecraft:stone_brick_stairs": { - "bedrock_identifier": "minecraft:stone_brick_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 7109, - "lastBlockRuntimeId": 7188 - }, - "minecraft:mud_brick_stairs": { - "bedrock_identifier": "minecraft:mud_brick_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 7189, - "lastBlockRuntimeId": 7268 - }, - "minecraft:mycelium": { - "bedrock_identifier": "minecraft:mycelium", - "bedrock_data": 0, - "firstBlockRuntimeId": 7269, - "lastBlockRuntimeId": 7270 - }, - "minecraft:lily_pad": { - "bedrock_identifier": "minecraft:waterlily", - "bedrock_data": 0, - "firstBlockRuntimeId": 7271 - }, - "minecraft:nether_bricks": { - "bedrock_identifier": "minecraft:nether_brick", - "bedrock_data": 0, - "firstBlockRuntimeId": 7272 - }, - "minecraft:cracked_nether_bricks": { - "bedrock_identifier": "minecraft:cracked_nether_bricks", - "bedrock_data": 0, - "firstBlockRuntimeId": 20723 - }, - "minecraft:chiseled_nether_bricks": { - "bedrock_identifier": "minecraft:chiseled_nether_bricks", - "bedrock_data": 0, - "firstBlockRuntimeId": 20722 - }, - "minecraft:nether_brick_fence": { - "bedrock_identifier": "minecraft:nether_brick_fence", - "bedrock_data": 0, - "firstBlockRuntimeId": 7273, - "lastBlockRuntimeId": 7304 - }, - "minecraft:nether_brick_stairs": { - "bedrock_identifier": "minecraft:nether_brick_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 7305, - "lastBlockRuntimeId": 7384 - }, - "minecraft:sculk": { - "bedrock_identifier": "minecraft:sculk", - "bedrock_data": 0, - "firstBlockRuntimeId": 22799 - }, - "minecraft:sculk_vein": { - "bedrock_identifier": "minecraft:sculk_vein", - "bedrock_data": 0, - "firstBlockRuntimeId": 22800, - "lastBlockRuntimeId": 22927 - }, - "minecraft:sculk_catalyst": { - "bedrock_identifier": "minecraft:sculk_catalyst", - "bedrock_data": 0, - "firstBlockRuntimeId": 22928, - "lastBlockRuntimeId": 22929 - }, - "minecraft:sculk_shrieker": { - "bedrock_identifier": "minecraft:sculk_shrieker", - "bedrock_data": 0, - "firstBlockRuntimeId": 22930, - "lastBlockRuntimeId": 22937 - }, - "minecraft:enchanting_table": { - "bedrock_identifier": "minecraft:enchanting_table", - "bedrock_data": 0, - "firstBlockRuntimeId": 7389 - }, - "minecraft:end_portal_frame": { - "bedrock_identifier": "minecraft:end_portal_frame", - "bedrock_data": 0, - "firstBlockRuntimeId": 7407, - "lastBlockRuntimeId": 7414 - }, - "minecraft:end_stone": { - "bedrock_identifier": "minecraft:end_stone", - "bedrock_data": 0, - "firstBlockRuntimeId": 7415 - }, - "minecraft:end_stone_bricks": { - "bedrock_identifier": "minecraft:end_bricks", - "bedrock_data": 0, - "firstBlockRuntimeId": 12494 - }, - "minecraft:dragon_egg": { - "bedrock_identifier": "minecraft:dragon_egg", - "bedrock_data": 0, - "firstBlockRuntimeId": 7416 - }, - "minecraft:sandstone_stairs": { - "bedrock_identifier": "minecraft:sandstone_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 7431, - "lastBlockRuntimeId": 7510 - }, - "minecraft:ender_chest": { - "bedrock_identifier": "minecraft:ender_chest", - "bedrock_data": 0, - "firstBlockRuntimeId": 7513, - "lastBlockRuntimeId": 7520 - }, - "minecraft:emerald_block": { - "bedrock_identifier": "minecraft:emerald_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 7665 - }, - "minecraft:oak_stairs": { - "bedrock_identifier": "minecraft:oak_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 2874, - "lastBlockRuntimeId": 2953 - }, - "minecraft:spruce_stairs": { - "bedrock_identifier": "minecraft:spruce_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 7666, - "lastBlockRuntimeId": 7745 - }, - "minecraft:birch_stairs": { - "bedrock_identifier": "minecraft:birch_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 7746, - "lastBlockRuntimeId": 7825 - }, - "minecraft:jungle_stairs": { - "bedrock_identifier": "minecraft:jungle_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 7826, - "lastBlockRuntimeId": 7905 - }, - "minecraft:acacia_stairs": { - "bedrock_identifier": "minecraft:acacia_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 9884, - "lastBlockRuntimeId": 9963 - }, - "minecraft:cherry_stairs": { - "bedrock_identifier": "minecraft:cherry_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 9964, - "lastBlockRuntimeId": 10043 - }, - "minecraft:dark_oak_stairs": { - "bedrock_identifier": "minecraft:dark_oak_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 10044, - "lastBlockRuntimeId": 10123 - }, - "minecraft:mangrove_stairs": { - "bedrock_identifier": "minecraft:mangrove_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 10124, - "lastBlockRuntimeId": 10203 - }, - "minecraft:bamboo_stairs": { - "bedrock_identifier": "minecraft:bamboo_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 10204, - "lastBlockRuntimeId": 10283 - }, - "minecraft:bamboo_mosaic_stairs": { - "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 10284, - "lastBlockRuntimeId": 10363 - }, - "minecraft:crimson_stairs": { - "bedrock_identifier": "minecraft:crimson_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 18940, - "lastBlockRuntimeId": 19019 - }, - "minecraft:warped_stairs": { - "bedrock_identifier": "minecraft:warped_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 19020, - "lastBlockRuntimeId": 19099 - }, - "minecraft:command_block": { - "bedrock_identifier": "minecraft:command_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 7906, - "lastBlockRuntimeId": 7917 - }, - "minecraft:beacon": { - "bedrock_identifier": "minecraft:beacon", - "bedrock_data": 0, - "firstBlockRuntimeId": 7918 - }, - "minecraft:cobblestone_wall": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "bedrock_data": 0, - "firstBlockRuntimeId": 7919, - "lastBlockRuntimeId": 8242 - }, - "minecraft:mossy_cobblestone_wall": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "bedrock_data": 1, - "firstBlockRuntimeId": 8243, - "lastBlockRuntimeId": 8566 - }, - "minecraft:brick_wall": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "bedrock_data": 6, - "firstBlockRuntimeId": 14160, - "lastBlockRuntimeId": 14483 - }, - "minecraft:prismarine_wall": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "bedrock_data": 11, - "firstBlockRuntimeId": 14484, - "lastBlockRuntimeId": 14807 - }, - "minecraft:red_sandstone_wall": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "bedrock_data": 12, - "firstBlockRuntimeId": 14808, - "lastBlockRuntimeId": 15131 - }, - "minecraft:mossy_stone_brick_wall": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "bedrock_data": 8, - "firstBlockRuntimeId": 15132, - "lastBlockRuntimeId": 15455 - }, - "minecraft:granite_wall": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "bedrock_data": 2, - "firstBlockRuntimeId": 15456, - "lastBlockRuntimeId": 15779 - }, - "minecraft:stone_brick_wall": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "bedrock_data": 7, - "firstBlockRuntimeId": 15780, - "lastBlockRuntimeId": 16103 - }, - "minecraft:mud_brick_wall": { - "bedrock_identifier": "minecraft:mud_brick_wall", - "bedrock_data": 0, - "firstBlockRuntimeId": 16104, - "lastBlockRuntimeId": 16427 - }, - "minecraft:nether_brick_wall": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "bedrock_data": 9, - "firstBlockRuntimeId": 16428, - "lastBlockRuntimeId": 16751 - }, - "minecraft:andesite_wall": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "bedrock_data": 4, - "firstBlockRuntimeId": 16752, - "lastBlockRuntimeId": 17075 - }, - "minecraft:red_nether_brick_wall": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "bedrock_data": 13, - "firstBlockRuntimeId": 17076, - "lastBlockRuntimeId": 17399 - }, - "minecraft:sandstone_wall": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "bedrock_data": 5, - "firstBlockRuntimeId": 17400, - "lastBlockRuntimeId": 17723 - }, - "minecraft:end_stone_brick_wall": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "bedrock_data": 10, - "firstBlockRuntimeId": 17724, - "lastBlockRuntimeId": 18047 - }, - "minecraft:diorite_wall": { - "bedrock_identifier": "minecraft:cobblestone_wall", - "bedrock_data": 3, - "firstBlockRuntimeId": 18048, - "lastBlockRuntimeId": 18371 - }, - "minecraft:blackstone_wall": { - "bedrock_identifier": "minecraft:blackstone_wall", - "bedrock_data": 0, - "firstBlockRuntimeId": 19541, - "lastBlockRuntimeId": 19864 - }, - "minecraft:polished_blackstone_wall": { - "bedrock_identifier": "minecraft:polished_blackstone_wall", - "bedrock_data": 0, - "firstBlockRuntimeId": 20398, - "lastBlockRuntimeId": 20721 - }, - "minecraft:polished_blackstone_brick_wall": { - "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", - "bedrock_data": 0, - "firstBlockRuntimeId": 19961, - "lastBlockRuntimeId": 20284 - }, - "minecraft:cobbled_deepslate_wall": { - "bedrock_identifier": "minecraft:cobbled_deepslate_wall", - "bedrock_data": 0, - "firstBlockRuntimeId": 24994, - "lastBlockRuntimeId": 25317 - }, - "minecraft:polished_deepslate_wall": { - "bedrock_identifier": "minecraft:polished_deepslate_wall", - "bedrock_data": 0, - "firstBlockRuntimeId": 25405, - "lastBlockRuntimeId": 25728 - }, - "minecraft:deepslate_brick_wall": { - "bedrock_identifier": "minecraft:deepslate_brick_wall", - "bedrock_data": 0, - "firstBlockRuntimeId": 26227, - "lastBlockRuntimeId": 26550 - }, - "minecraft:deepslate_tile_wall": { - "bedrock_identifier": "minecraft:deepslate_tile_wall", - "bedrock_data": 0, - "firstBlockRuntimeId": 25816, - "lastBlockRuntimeId": 26139 - }, - "minecraft:anvil": { - "bedrock_identifier": "minecraft:anvil", - "bedrock_data": 0, - "firstBlockRuntimeId": 9107, - "lastBlockRuntimeId": 9110 - }, - "minecraft:chipped_anvil": { - "bedrock_identifier": "minecraft:anvil", - "bedrock_data": 4, - "firstBlockRuntimeId": 9111, - "lastBlockRuntimeId": 9114 - }, - "minecraft:damaged_anvil": { - "bedrock_identifier": "minecraft:anvil", - "bedrock_data": 8, - "firstBlockRuntimeId": 9115, - "lastBlockRuntimeId": 9118 - }, - "minecraft:chiseled_quartz_block": { - "bedrock_identifier": "minecraft:quartz_block", - "bedrock_data": 1, - "firstBlockRuntimeId": 9236 - }, - "minecraft:quartz_block": { - "bedrock_identifier": "minecraft:quartz_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 9235 - }, - "minecraft:quartz_bricks": { - "bedrock_identifier": "minecraft:quartz_bricks", - "bedrock_data": 0, - "firstBlockRuntimeId": 20724 - }, - "minecraft:quartz_pillar": { - "bedrock_identifier": "minecraft:quartz_block", - "bedrock_data": 2, - "firstBlockRuntimeId": 9237, - "lastBlockRuntimeId": 9239 - }, - "minecraft:quartz_stairs": { - "bedrock_identifier": "minecraft:quartz_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 9240, - "lastBlockRuntimeId": 9319 - }, - "minecraft:white_terracotta": { - "bedrock_identifier": "minecraft:white_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 9356 - }, - "minecraft:orange_terracotta": { - "bedrock_identifier": "minecraft:orange_terracotta", - "bedrock_data": 1, - "firstBlockRuntimeId": 9357 - }, - "minecraft:magenta_terracotta": { - "bedrock_identifier": "minecraft:magenta_terracotta", - "bedrock_data": 2, - "firstBlockRuntimeId": 9358 - }, - "minecraft:light_blue_terracotta": { - "bedrock_identifier": "minecraft:light_blue_terracotta", - "bedrock_data": 3, - "firstBlockRuntimeId": 9359 - }, - "minecraft:yellow_terracotta": { - "bedrock_identifier": "minecraft:yellow_terracotta", - "bedrock_data": 4, - "firstBlockRuntimeId": 9360 - }, - "minecraft:lime_terracotta": { - "bedrock_identifier": "minecraft:lime_terracotta", - "bedrock_data": 5, - "firstBlockRuntimeId": 9361 - }, - "minecraft:pink_terracotta": { - "bedrock_identifier": "minecraft:pink_terracotta", - "bedrock_data": 6, - "firstBlockRuntimeId": 9362 - }, - "minecraft:gray_terracotta": { - "bedrock_identifier": "minecraft:gray_terracotta", - "bedrock_data": 7, - "firstBlockRuntimeId": 9363 - }, - "minecraft:light_gray_terracotta": { - "bedrock_identifier": "minecraft:light_gray_terracotta", - "bedrock_data": 8, - "firstBlockRuntimeId": 9364 - }, - "minecraft:cyan_terracotta": { - "bedrock_identifier": "minecraft:cyan_terracotta", - "bedrock_data": 9, - "firstBlockRuntimeId": 9365 - }, - "minecraft:purple_terracotta": { - "bedrock_identifier": "minecraft:purple_terracotta", - "bedrock_data": 10, - "firstBlockRuntimeId": 9366 - }, - "minecraft:blue_terracotta": { - "bedrock_identifier": "minecraft:blue_terracotta", - "bedrock_data": 11, - "firstBlockRuntimeId": 9367 - }, - "minecraft:brown_terracotta": { - "bedrock_identifier": "minecraft:brown_terracotta", - "bedrock_data": 12, - "firstBlockRuntimeId": 9368 - }, - "minecraft:green_terracotta": { - "bedrock_identifier": "minecraft:green_terracotta", - "bedrock_data": 13, - "firstBlockRuntimeId": 9369 - }, - "minecraft:red_terracotta": { - "bedrock_identifier": "minecraft:red_terracotta", - "bedrock_data": 14, - "firstBlockRuntimeId": 9370 - }, - "minecraft:black_terracotta": { - "bedrock_identifier": "minecraft:black_terracotta", - "bedrock_data": 15, - "firstBlockRuntimeId": 9371 - }, - "minecraft:barrier": { - "bedrock_identifier": "minecraft:barrier", - "bedrock_data": 0, - "firstBlockRuntimeId": 10365, - "lastBlockRuntimeId": 10366 - }, - "minecraft:light": { - "bedrock_identifier": "minecraft:light_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 10367, - "lastBlockRuntimeId": 10398 - }, - "minecraft:hay_block": { - "bedrock_identifier": "minecraft:hay_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 10725, - "lastBlockRuntimeId": 10727 - }, - "minecraft:white_carpet": { - "bedrock_identifier": "minecraft:white_carpet", - "bedrock_data": 0, - "firstBlockRuntimeId": 10728 - }, - "minecraft:orange_carpet": { - "bedrock_identifier": "minecraft:orange_carpet", - "bedrock_data": 1, - "firstBlockRuntimeId": 10729 - }, - "minecraft:magenta_carpet": { - "bedrock_identifier": "minecraft:magenta_carpet", - "bedrock_data": 2, - "firstBlockRuntimeId": 10730 - }, - "minecraft:light_blue_carpet": { - "bedrock_identifier": "minecraft:light_blue_carpet", - "bedrock_data": 3, - "firstBlockRuntimeId": 10731 - }, - "minecraft:yellow_carpet": { - "bedrock_identifier": "minecraft:yellow_carpet", - "bedrock_data": 4, - "firstBlockRuntimeId": 10732 - }, - "minecraft:lime_carpet": { - "bedrock_identifier": "minecraft:lime_carpet", - "bedrock_data": 5, - "firstBlockRuntimeId": 10733 - }, - "minecraft:pink_carpet": { - "bedrock_identifier": "minecraft:pink_carpet", - "bedrock_data": 6, - "firstBlockRuntimeId": 10734 - }, - "minecraft:gray_carpet": { - "bedrock_identifier": "minecraft:gray_carpet", - "bedrock_data": 7, - "firstBlockRuntimeId": 10735 - }, - "minecraft:light_gray_carpet": { - "bedrock_identifier": "minecraft:light_gray_carpet", - "bedrock_data": 8, - "firstBlockRuntimeId": 10736 - }, - "minecraft:cyan_carpet": { - "bedrock_identifier": "minecraft:cyan_carpet", - "bedrock_data": 9, - "firstBlockRuntimeId": 10737 - }, - "minecraft:purple_carpet": { - "bedrock_identifier": "minecraft:purple_carpet", - "bedrock_data": 10, - "firstBlockRuntimeId": 10738 - }, - "minecraft:blue_carpet": { - "bedrock_identifier": "minecraft:blue_carpet", - "bedrock_data": 11, - "firstBlockRuntimeId": 10739 - }, - "minecraft:brown_carpet": { - "bedrock_identifier": "minecraft:brown_carpet", - "bedrock_data": 12, - "firstBlockRuntimeId": 10740 - }, - "minecraft:green_carpet": { - "bedrock_identifier": "minecraft:green_carpet", - "bedrock_data": 13, - "firstBlockRuntimeId": 10741 - }, - "minecraft:red_carpet": { - "bedrock_identifier": "minecraft:red_carpet", - "bedrock_data": 14, - "firstBlockRuntimeId": 10742 - }, - "minecraft:black_carpet": { - "bedrock_identifier": "minecraft:black_carpet", - "bedrock_data": 15, - "firstBlockRuntimeId": 10743 - }, - "minecraft:terracotta": { - "bedrock_identifier": "minecraft:hardened_clay", - "bedrock_data": 0, - "firstBlockRuntimeId": 10744 - }, - "minecraft:packed_ice": { - "bedrock_identifier": "minecraft:packed_ice", - "bedrock_data": 0, - "firstBlockRuntimeId": 10746 - }, - "minecraft:dirt_path": { - "bedrock_identifier": "minecraft:grass_path", - "bedrock_data": 0, - "firstBlockRuntimeId": 12513 - }, - "minecraft:sunflower": { - "bedrock_identifier": "minecraft:sunflower", - "bedrock_data": 0, - "firstBlockRuntimeId": 10747, - "lastBlockRuntimeId": 10748 - }, - "minecraft:lilac": { - "bedrock_identifier": "minecraft:lilac", - "bedrock_data": 0, - "firstBlockRuntimeId": 10749, - "lastBlockRuntimeId": 10750 - }, - "minecraft:rose_bush": { - "bedrock_identifier": "minecraft:rose_bush", - "bedrock_data": 0, - "firstBlockRuntimeId": 10751, - "lastBlockRuntimeId": 10752 - }, - "minecraft:peony": { - "bedrock_identifier": "minecraft:peony", - "bedrock_data": 0, - "firstBlockRuntimeId": 10753, - "lastBlockRuntimeId": 10754 - }, - "minecraft:tall_grass": { - "bedrock_identifier": "minecraft:tall_grass", - "bedrock_data": 0, - "firstBlockRuntimeId": 10755, - "lastBlockRuntimeId": 10756 - }, - "minecraft:large_fern": { - "bedrock_identifier": "minecraft:large_fern", - "bedrock_data": 0, - "firstBlockRuntimeId": 10757, - "lastBlockRuntimeId": 10758 - }, - "minecraft:white_stained_glass": { - "bedrock_identifier": "minecraft:white_stained_glass", - "bedrock_data": 0, - "firstBlockRuntimeId": 5945 - }, - "minecraft:orange_stained_glass": { - "bedrock_identifier": "minecraft:orange_stained_glass", - "bedrock_data": 1, - "firstBlockRuntimeId": 5946 - }, - "minecraft:magenta_stained_glass": { - "bedrock_identifier": "minecraft:magenta_stained_glass", - "bedrock_data": 2, - "firstBlockRuntimeId": 5947 - }, - "minecraft:light_blue_stained_glass": { - "bedrock_identifier": "minecraft:light_blue_stained_glass", - "bedrock_data": 3, - "firstBlockRuntimeId": 5948 - }, - "minecraft:yellow_stained_glass": { - "bedrock_identifier": "minecraft:yellow_stained_glass", - "bedrock_data": 4, - "firstBlockRuntimeId": 5949 - }, - "minecraft:lime_stained_glass": { - "bedrock_identifier": "minecraft:lime_stained_glass", - "bedrock_data": 5, - "firstBlockRuntimeId": 5950 - }, - "minecraft:pink_stained_glass": { - "bedrock_identifier": "minecraft:pink_stained_glass", - "bedrock_data": 6, - "firstBlockRuntimeId": 5951 - }, - "minecraft:gray_stained_glass": { - "bedrock_identifier": "minecraft:gray_stained_glass", - "bedrock_data": 7, - "firstBlockRuntimeId": 5952 - }, - "minecraft:light_gray_stained_glass": { - "bedrock_identifier": "minecraft:light_gray_stained_glass", - "bedrock_data": 8, - "firstBlockRuntimeId": 5953 - }, - "minecraft:cyan_stained_glass": { - "bedrock_identifier": "minecraft:cyan_stained_glass", - "bedrock_data": 9, - "firstBlockRuntimeId": 5954 - }, - "minecraft:purple_stained_glass": { - "bedrock_identifier": "minecraft:purple_stained_glass", - "bedrock_data": 10, - "firstBlockRuntimeId": 5955 - }, - "minecraft:blue_stained_glass": { - "bedrock_identifier": "minecraft:blue_stained_glass", - "bedrock_data": 11, - "firstBlockRuntimeId": 5956 - }, - "minecraft:brown_stained_glass": { - "bedrock_identifier": "minecraft:brown_stained_glass", - "bedrock_data": 12, - "firstBlockRuntimeId": 5957 - }, - "minecraft:green_stained_glass": { - "bedrock_identifier": "minecraft:green_stained_glass", - "bedrock_data": 13, - "firstBlockRuntimeId": 5958 - }, - "minecraft:red_stained_glass": { - "bedrock_identifier": "minecraft:red_stained_glass", - "bedrock_data": 14, - "firstBlockRuntimeId": 5959 - }, - "minecraft:black_stained_glass": { - "bedrock_identifier": "minecraft:black_stained_glass", - "bedrock_data": 15, - "firstBlockRuntimeId": 5960 - }, - "minecraft:white_stained_glass_pane": { - "bedrock_identifier": "minecraft:white_stained_glass_pane", - "bedrock_data": 0, - "firstBlockRuntimeId": 9372, - "lastBlockRuntimeId": 9403 - }, - "minecraft:orange_stained_glass_pane": { - "bedrock_identifier": "minecraft:orange_stained_glass_pane", - "bedrock_data": 1, - "firstBlockRuntimeId": 9404, - "lastBlockRuntimeId": 9435 - }, - "minecraft:magenta_stained_glass_pane": { - "bedrock_identifier": "minecraft:magenta_stained_glass_pane", - "bedrock_data": 2, - "firstBlockRuntimeId": 9436, - "lastBlockRuntimeId": 9467 - }, - "minecraft:light_blue_stained_glass_pane": { - "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", - "bedrock_data": 3, - "firstBlockRuntimeId": 9468, - "lastBlockRuntimeId": 9499 - }, - "minecraft:yellow_stained_glass_pane": { - "bedrock_identifier": "minecraft:yellow_stained_glass_pane", - "bedrock_data": 4, - "firstBlockRuntimeId": 9500, - "lastBlockRuntimeId": 9531 - }, - "minecraft:lime_stained_glass_pane": { - "bedrock_identifier": "minecraft:lime_stained_glass_pane", - "bedrock_data": 5, - "firstBlockRuntimeId": 9532, - "lastBlockRuntimeId": 9563 - }, - "minecraft:pink_stained_glass_pane": { - "bedrock_identifier": "minecraft:pink_stained_glass_pane", - "bedrock_data": 6, - "firstBlockRuntimeId": 9564, - "lastBlockRuntimeId": 9595 - }, - "minecraft:gray_stained_glass_pane": { - "bedrock_identifier": "minecraft:gray_stained_glass_pane", - "bedrock_data": 7, - "firstBlockRuntimeId": 9596, - "lastBlockRuntimeId": 9627 - }, - "minecraft:light_gray_stained_glass_pane": { - "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", - "bedrock_data": 8, - "firstBlockRuntimeId": 9628, - "lastBlockRuntimeId": 9659 - }, - "minecraft:cyan_stained_glass_pane": { - "bedrock_identifier": "minecraft:cyan_stained_glass_pane", - "bedrock_data": 9, - "firstBlockRuntimeId": 9660, - "lastBlockRuntimeId": 9691 - }, - "minecraft:purple_stained_glass_pane": { - "bedrock_identifier": "minecraft:purple_stained_glass_pane", - "bedrock_data": 10, - "firstBlockRuntimeId": 9692, - "lastBlockRuntimeId": 9723 - }, - "minecraft:blue_stained_glass_pane": { - "bedrock_identifier": "minecraft:blue_stained_glass_pane", - "bedrock_data": 11, - "firstBlockRuntimeId": 9724, - "lastBlockRuntimeId": 9755 - }, - "minecraft:brown_stained_glass_pane": { - "bedrock_identifier": "minecraft:brown_stained_glass_pane", - "bedrock_data": 12, - "firstBlockRuntimeId": 9756, - "lastBlockRuntimeId": 9787 - }, - "minecraft:green_stained_glass_pane": { - "bedrock_identifier": "minecraft:green_stained_glass_pane", - "bedrock_data": 13, - "firstBlockRuntimeId": 9788, - "lastBlockRuntimeId": 9819 - }, - "minecraft:red_stained_glass_pane": { - "bedrock_identifier": "minecraft:red_stained_glass_pane", - "bedrock_data": 14, - "firstBlockRuntimeId": 9820, - "lastBlockRuntimeId": 9851 - }, - "minecraft:black_stained_glass_pane": { - "bedrock_identifier": "minecraft:black_stained_glass_pane", - "bedrock_data": 15, - "firstBlockRuntimeId": 9852, - "lastBlockRuntimeId": 9883 - }, - "minecraft:prismarine": { - "bedrock_identifier": "minecraft:prismarine", - "bedrock_data": 0, - "firstBlockRuntimeId": 10463 - }, - "minecraft:prismarine_bricks": { - "bedrock_identifier": "minecraft:prismarine", - "bedrock_data": 2, - "firstBlockRuntimeId": 10464 - }, - "minecraft:dark_prismarine": { - "bedrock_identifier": "minecraft:prismarine", - "bedrock_data": 1, - "firstBlockRuntimeId": 10465 - }, - "minecraft:prismarine_stairs": { - "bedrock_identifier": "minecraft:prismarine_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 10466, - "lastBlockRuntimeId": 10545 - }, - "minecraft:prismarine_brick_stairs": { - "bedrock_identifier": "minecraft:prismarine_bricks_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 10546, - "lastBlockRuntimeId": 10625 - }, - "minecraft:dark_prismarine_stairs": { - "bedrock_identifier": "minecraft:dark_prismarine_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 10626, - "lastBlockRuntimeId": 10705 - }, - "minecraft:sea_lantern": { - "bedrock_identifier": "minecraft:sea_lantern", - "bedrock_data": 0, - "firstBlockRuntimeId": 10724 - }, - "minecraft:red_sandstone": { - "bedrock_identifier": "minecraft:red_sandstone", - "bedrock_data": 0, - "firstBlockRuntimeId": 11079 - }, - "minecraft:chiseled_red_sandstone": { - "bedrock_identifier": "minecraft:red_sandstone", - "bedrock_data": 1, - "firstBlockRuntimeId": 11080 - }, - "minecraft:cut_red_sandstone": { - "bedrock_identifier": "minecraft:red_sandstone", - "bedrock_data": 2, - "firstBlockRuntimeId": 11081 - }, - "minecraft:red_sandstone_stairs": { - "bedrock_identifier": "minecraft:red_sandstone_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 11082, - "lastBlockRuntimeId": 11161 - }, - "minecraft:repeating_command_block": { - "bedrock_identifier": "minecraft:repeating_command_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12515, - "lastBlockRuntimeId": 12526 - }, - "minecraft:chain_command_block": { - "bedrock_identifier": "minecraft:chain_command_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12527, - "lastBlockRuntimeId": 12538 - }, - "minecraft:magma_block": { - "bedrock_identifier": "minecraft:magma", - "bedrock_data": 0, - "firstBlockRuntimeId": 12543 - }, - "minecraft:nether_wart_block": { - "bedrock_identifier": "minecraft:nether_wart_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12544 - }, - "minecraft:warped_wart_block": { - "bedrock_identifier": "minecraft:warped_wart_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 18593 - }, - "minecraft:red_nether_bricks": { - "bedrock_identifier": "minecraft:red_nether_brick", - "bedrock_data": 0, - "firstBlockRuntimeId": 12545 - }, - "minecraft:bone_block": { - "bedrock_identifier": "minecraft:bone_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12546, - "lastBlockRuntimeId": 12548 - }, - "minecraft:structure_void": { - "bedrock_identifier": "minecraft:structure_void", - "bedrock_data": 0, - "firstBlockRuntimeId": 12549 - }, - "minecraft:shulker_box": { - "bedrock_identifier": "minecraft:undyed_shulker_box", - "bedrock_data": 0, - "firstBlockRuntimeId": 12562, - "lastBlockRuntimeId": 12567 - }, - "minecraft:white_shulker_box": { - "bedrock_identifier": "minecraft:white_shulker_box", - "bedrock_data": 0, - "firstBlockRuntimeId": 12568, - "lastBlockRuntimeId": 12573 - }, - "minecraft:orange_shulker_box": { - "bedrock_identifier": "minecraft:orange_shulker_box", - "bedrock_data": 1, - "firstBlockRuntimeId": 12574, - "lastBlockRuntimeId": 12579 - }, - "minecraft:magenta_shulker_box": { - "bedrock_identifier": "minecraft:magenta_shulker_box", - "bedrock_data": 2, - "firstBlockRuntimeId": 12580, - "lastBlockRuntimeId": 12585 - }, - "minecraft:light_blue_shulker_box": { - "bedrock_identifier": "minecraft:light_blue_shulker_box", - "bedrock_data": 3, - "firstBlockRuntimeId": 12586, - "lastBlockRuntimeId": 12591 - }, - "minecraft:yellow_shulker_box": { - "bedrock_identifier": "minecraft:yellow_shulker_box", - "bedrock_data": 4, - "firstBlockRuntimeId": 12592, - "lastBlockRuntimeId": 12597 - }, - "minecraft:lime_shulker_box": { - "bedrock_identifier": "minecraft:lime_shulker_box", - "bedrock_data": 5, - "firstBlockRuntimeId": 12598, - "lastBlockRuntimeId": 12603 - }, - "minecraft:pink_shulker_box": { - "bedrock_identifier": "minecraft:pink_shulker_box", - "bedrock_data": 6, - "firstBlockRuntimeId": 12604, - "lastBlockRuntimeId": 12609 - }, - "minecraft:gray_shulker_box": { - "bedrock_identifier": "minecraft:gray_shulker_box", - "bedrock_data": 7, - "firstBlockRuntimeId": 12610, - "lastBlockRuntimeId": 12615 - }, - "minecraft:light_gray_shulker_box": { - "bedrock_identifier": "minecraft:light_gray_shulker_box", - "bedrock_data": 8, - "firstBlockRuntimeId": 12616, - "lastBlockRuntimeId": 12621 - }, - "minecraft:cyan_shulker_box": { - "bedrock_identifier": "minecraft:cyan_shulker_box", - "bedrock_data": 9, - "firstBlockRuntimeId": 12622, - "lastBlockRuntimeId": 12627 - }, - "minecraft:purple_shulker_box": { - "bedrock_identifier": "minecraft:purple_shulker_box", - "bedrock_data": 10, - "firstBlockRuntimeId": 12628, - "lastBlockRuntimeId": 12633 - }, - "minecraft:blue_shulker_box": { - "bedrock_identifier": "minecraft:blue_shulker_box", - "bedrock_data": 11, - "firstBlockRuntimeId": 12634, - "lastBlockRuntimeId": 12639 - }, - "minecraft:brown_shulker_box": { - "bedrock_identifier": "minecraft:brown_shulker_box", - "bedrock_data": 12, - "firstBlockRuntimeId": 12640, - "lastBlockRuntimeId": 12645 - }, - "minecraft:green_shulker_box": { - "bedrock_identifier": "minecraft:green_shulker_box", - "bedrock_data": 13, - "firstBlockRuntimeId": 12646, - "lastBlockRuntimeId": 12651 - }, - "minecraft:red_shulker_box": { - "bedrock_identifier": "minecraft:red_shulker_box", - "bedrock_data": 14, - "firstBlockRuntimeId": 12652, - "lastBlockRuntimeId": 12657 - }, - "minecraft:black_shulker_box": { - "bedrock_identifier": "minecraft:black_shulker_box", - "bedrock_data": 15, - "firstBlockRuntimeId": 12658, - "lastBlockRuntimeId": 12663 - }, - "minecraft:white_glazed_terracotta": { - "bedrock_identifier": "minecraft:white_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12664, - "lastBlockRuntimeId": 12667 - }, - "minecraft:orange_glazed_terracotta": { - "bedrock_identifier": "minecraft:orange_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12668, - "lastBlockRuntimeId": 12671 - }, - "minecraft:magenta_glazed_terracotta": { - "bedrock_identifier": "minecraft:magenta_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12672, - "lastBlockRuntimeId": 12675 - }, - "minecraft:light_blue_glazed_terracotta": { - "bedrock_identifier": "minecraft:light_blue_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12676, - "lastBlockRuntimeId": 12679 - }, - "minecraft:yellow_glazed_terracotta": { - "bedrock_identifier": "minecraft:yellow_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12680, - "lastBlockRuntimeId": 12683 - }, - "minecraft:lime_glazed_terracotta": { - "bedrock_identifier": "minecraft:lime_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12684, - "lastBlockRuntimeId": 12687 - }, - "minecraft:pink_glazed_terracotta": { - "bedrock_identifier": "minecraft:pink_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12688, - "lastBlockRuntimeId": 12691 - }, - "minecraft:gray_glazed_terracotta": { - "bedrock_identifier": "minecraft:gray_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12692, - "lastBlockRuntimeId": 12695 - }, - "minecraft:light_gray_glazed_terracotta": { - "bedrock_identifier": "minecraft:silver_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12696, - "lastBlockRuntimeId": 12699 - }, - "minecraft:cyan_glazed_terracotta": { - "bedrock_identifier": "minecraft:cyan_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12700, - "lastBlockRuntimeId": 12703 - }, - "minecraft:purple_glazed_terracotta": { - "bedrock_identifier": "minecraft:purple_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12704, - "lastBlockRuntimeId": 12707 - }, - "minecraft:blue_glazed_terracotta": { - "bedrock_identifier": "minecraft:blue_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12708, - "lastBlockRuntimeId": 12711 - }, - "minecraft:brown_glazed_terracotta": { - "bedrock_identifier": "minecraft:brown_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12712, - "lastBlockRuntimeId": 12715 - }, - "minecraft:green_glazed_terracotta": { - "bedrock_identifier": "minecraft:green_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12716, - "lastBlockRuntimeId": 12719 - }, - "minecraft:red_glazed_terracotta": { - "bedrock_identifier": "minecraft:red_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12720, - "lastBlockRuntimeId": 12723 - }, - "minecraft:black_glazed_terracotta": { - "bedrock_identifier": "minecraft:black_glazed_terracotta", - "bedrock_data": 0, - "firstBlockRuntimeId": 12724, - "lastBlockRuntimeId": 12727 - }, - "minecraft:white_concrete": { - "bedrock_identifier": "minecraft:white_concrete", - "bedrock_data": 0, - "firstBlockRuntimeId": 12728 - }, - "minecraft:orange_concrete": { - "bedrock_identifier": "minecraft:orange_concrete", - "bedrock_data": 1, - "firstBlockRuntimeId": 12729 - }, - "minecraft:magenta_concrete": { - "bedrock_identifier": "minecraft:magenta_concrete", - "bedrock_data": 2, - "firstBlockRuntimeId": 12730 - }, - "minecraft:light_blue_concrete": { - "bedrock_identifier": "minecraft:light_blue_concrete", - "bedrock_data": 3, - "firstBlockRuntimeId": 12731 - }, - "minecraft:yellow_concrete": { - "bedrock_identifier": "minecraft:yellow_concrete", - "bedrock_data": 4, - "firstBlockRuntimeId": 12732 - }, - "minecraft:lime_concrete": { - "bedrock_identifier": "minecraft:lime_concrete", - "bedrock_data": 5, - "firstBlockRuntimeId": 12733 - }, - "minecraft:pink_concrete": { - "bedrock_identifier": "minecraft:pink_concrete", - "bedrock_data": 6, - "firstBlockRuntimeId": 12734 - }, - "minecraft:gray_concrete": { - "bedrock_identifier": "minecraft:gray_concrete", - "bedrock_data": 7, - "firstBlockRuntimeId": 12735 - }, - "minecraft:light_gray_concrete": { - "bedrock_identifier": "minecraft:light_gray_concrete", - "bedrock_data": 8, - "firstBlockRuntimeId": 12736 - }, - "minecraft:cyan_concrete": { - "bedrock_identifier": "minecraft:cyan_concrete", - "bedrock_data": 9, - "firstBlockRuntimeId": 12737 - }, - "minecraft:purple_concrete": { - "bedrock_identifier": "minecraft:purple_concrete", - "bedrock_data": 10, - "firstBlockRuntimeId": 12738 - }, - "minecraft:blue_concrete": { - "bedrock_identifier": "minecraft:blue_concrete", - "bedrock_data": 11, - "firstBlockRuntimeId": 12739 - }, - "minecraft:brown_concrete": { - "bedrock_identifier": "minecraft:brown_concrete", - "bedrock_data": 12, - "firstBlockRuntimeId": 12740 - }, - "minecraft:green_concrete": { - "bedrock_identifier": "minecraft:green_concrete", - "bedrock_data": 13, - "firstBlockRuntimeId": 12741 - }, - "minecraft:red_concrete": { - "bedrock_identifier": "minecraft:red_concrete", - "bedrock_data": 14, - "firstBlockRuntimeId": 12742 - }, - "minecraft:black_concrete": { - "bedrock_identifier": "minecraft:black_concrete", - "bedrock_data": 15, - "firstBlockRuntimeId": 12743 - }, - "minecraft:white_concrete_powder": { - "bedrock_identifier": "minecraft:white_concrete_powder", - "bedrock_data": 0, - "firstBlockRuntimeId": 12744 - }, - "minecraft:orange_concrete_powder": { - "bedrock_identifier": "minecraft:orange_concrete_powder", - "bedrock_data": 1, - "firstBlockRuntimeId": 12745 - }, - "minecraft:magenta_concrete_powder": { - "bedrock_identifier": "minecraft:magenta_concrete_powder", - "bedrock_data": 2, - "firstBlockRuntimeId": 12746 - }, - "minecraft:light_blue_concrete_powder": { - "bedrock_identifier": "minecraft:light_blue_concrete_powder", - "bedrock_data": 3, - "firstBlockRuntimeId": 12747 - }, - "minecraft:yellow_concrete_powder": { - "bedrock_identifier": "minecraft:yellow_concrete_powder", - "bedrock_data": 4, - "firstBlockRuntimeId": 12748 - }, - "minecraft:lime_concrete_powder": { - "bedrock_identifier": "minecraft:lime_concrete_powder", - "bedrock_data": 5, - "firstBlockRuntimeId": 12749 - }, - "minecraft:pink_concrete_powder": { - "bedrock_identifier": "minecraft:pink_concrete_powder", - "bedrock_data": 6, - "firstBlockRuntimeId": 12750 - }, - "minecraft:gray_concrete_powder": { - "bedrock_identifier": "minecraft:gray_concrete_powder", - "bedrock_data": 7, - "firstBlockRuntimeId": 12751 - }, - "minecraft:light_gray_concrete_powder": { - "bedrock_identifier": "minecraft:light_gray_concrete_powder", - "bedrock_data": 8, - "firstBlockRuntimeId": 12752 - }, - "minecraft:cyan_concrete_powder": { - "bedrock_identifier": "minecraft:cyan_concrete_powder", - "bedrock_data": 9, - "firstBlockRuntimeId": 12753 - }, - "minecraft:purple_concrete_powder": { - "bedrock_identifier": "minecraft:purple_concrete_powder", - "bedrock_data": 10, - "firstBlockRuntimeId": 12754 - }, - "minecraft:blue_concrete_powder": { - "bedrock_identifier": "minecraft:blue_concrete_powder", - "bedrock_data": 11, - "firstBlockRuntimeId": 12755 - }, - "minecraft:brown_concrete_powder": { - "bedrock_identifier": "minecraft:brown_concrete_powder", - "bedrock_data": 12, - "firstBlockRuntimeId": 12756 - }, - "minecraft:green_concrete_powder": { - "bedrock_identifier": "minecraft:green_concrete_powder", - "bedrock_data": 13, - "firstBlockRuntimeId": 12757 - }, - "minecraft:red_concrete_powder": { - "bedrock_identifier": "minecraft:red_concrete_powder", - "bedrock_data": 14, - "firstBlockRuntimeId": 12758 - }, - "minecraft:black_concrete_powder": { - "bedrock_identifier": "minecraft:black_concrete_powder", - "bedrock_data": 15, - "firstBlockRuntimeId": 12759 - }, - "minecraft:turtle_egg": { - "bedrock_identifier": "minecraft:turtle_egg", - "bedrock_data": 0, - "firstBlockRuntimeId": 12788, - "lastBlockRuntimeId": 12799 - }, - "minecraft:sniffer_egg": { - "bedrock_identifier": "minecraft:sniffer_egg", - "bedrock_data": 0, - "firstBlockRuntimeId": 12800, - "lastBlockRuntimeId": 12802 - }, - "minecraft:dead_tube_coral_block": { - "bedrock_identifier": "minecraft:dead_tube_coral_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12803 - }, - "minecraft:dead_brain_coral_block": { - "bedrock_identifier": "minecraft:dead_brain_coral_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12804 - }, - "minecraft:dead_bubble_coral_block": { - "bedrock_identifier": "minecraft:dead_bubble_coral_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12805 - }, - "minecraft:dead_fire_coral_block": { - "bedrock_identifier": "minecraft:dead_fire_coral_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12806 - }, - "minecraft:dead_horn_coral_block": { - "bedrock_identifier": "minecraft:dead_horn_coral_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12807 - }, - "minecraft:tube_coral_block": { - "bedrock_identifier": "minecraft:tube_coral_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12808 - }, - "minecraft:brain_coral_block": { - "bedrock_identifier": "minecraft:brain_coral_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12809 - }, - "minecraft:bubble_coral_block": { - "bedrock_identifier": "minecraft:bubble_coral_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12810 - }, - "minecraft:fire_coral_block": { - "bedrock_identifier": "minecraft:fire_coral_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12811 - }, - "minecraft:horn_coral_block": { - "bedrock_identifier": "minecraft:horn_coral_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12812 - }, - "minecraft:tube_coral": { - "bedrock_identifier": "minecraft:tube_coral", - "bedrock_data": 0, - "firstBlockRuntimeId": 12823, - "lastBlockRuntimeId": 12824 - }, - "minecraft:brain_coral": { - "bedrock_identifier": "minecraft:brain_coral", - "bedrock_data": 1, - "firstBlockRuntimeId": 12825, - "lastBlockRuntimeId": 12826 - }, - "minecraft:bubble_coral": { - "bedrock_identifier": "minecraft:bubble_coral", - "bedrock_data": 2, - "firstBlockRuntimeId": 12827, - "lastBlockRuntimeId": 12828 - }, - "minecraft:fire_coral": { - "bedrock_identifier": "minecraft:fire_coral", - "bedrock_data": 3, - "firstBlockRuntimeId": 12829, - "lastBlockRuntimeId": 12830 - }, - "minecraft:horn_coral": { - "bedrock_identifier": "minecraft:horn_coral", - "bedrock_data": 4, - "firstBlockRuntimeId": 12831, - "lastBlockRuntimeId": 12832 - }, - "minecraft:dead_brain_coral": { - "bedrock_identifier": "minecraft:dead_brain_coral", - "bedrock_data": 9, - "firstBlockRuntimeId": 12815, - "lastBlockRuntimeId": 12816 - }, - "minecraft:dead_bubble_coral": { - "bedrock_identifier": "minecraft:dead_bubble_coral", - "bedrock_data": 10, - "firstBlockRuntimeId": 12817, - "lastBlockRuntimeId": 12818 - }, - "minecraft:dead_fire_coral": { - "bedrock_identifier": "minecraft:dead_fire_coral", - "bedrock_data": 11, - "firstBlockRuntimeId": 12819, - "lastBlockRuntimeId": 12820 - }, - "minecraft:dead_horn_coral": { - "bedrock_identifier": "minecraft:dead_horn_coral", - "bedrock_data": 12, - "firstBlockRuntimeId": 12821, - "lastBlockRuntimeId": 12822 - }, - "minecraft:dead_tube_coral": { - "bedrock_identifier": "minecraft:dead_tube_coral", - "bedrock_data": 8, - "firstBlockRuntimeId": 12813, - "lastBlockRuntimeId": 12814 - }, - "minecraft:tube_coral_fan": { - "bedrock_identifier": "minecraft:tube_coral_fan", - "bedrock_data": 0, - "firstBlockRuntimeId": 12843, - "lastBlockRuntimeId": 12844 - }, - "minecraft:brain_coral_fan": { - "bedrock_identifier": "minecraft:brain_coral_fan", - "bedrock_data": 0, - "firstBlockRuntimeId": 12845, - "lastBlockRuntimeId": 12846 - }, - "minecraft:bubble_coral_fan": { - "bedrock_identifier": "minecraft:bubble_coral_fan", - "bedrock_data": 0, - "firstBlockRuntimeId": 12847, - "lastBlockRuntimeId": 12848 - }, - "minecraft:fire_coral_fan": { - "bedrock_identifier": "minecraft:fire_coral_fan", - "bedrock_data": 0, - "firstBlockRuntimeId": 12849, - "lastBlockRuntimeId": 12850 - }, - "minecraft:horn_coral_fan": { - "bedrock_identifier": "minecraft:horn_coral_fan", - "bedrock_data": 0, - "firstBlockRuntimeId": 12851, - "lastBlockRuntimeId": 12852 - }, - "minecraft:dead_tube_coral_fan": { - "bedrock_identifier": "minecraft:dead_tube_coral_fan", - "bedrock_data": 0, - "firstBlockRuntimeId": 12833, - "lastBlockRuntimeId": 12834 - }, - "minecraft:dead_brain_coral_fan": { - "bedrock_identifier": "minecraft:dead_brain_coral_fan", - "bedrock_data": 0, - "firstBlockRuntimeId": 12835, - "lastBlockRuntimeId": 12836 - }, - "minecraft:dead_bubble_coral_fan": { - "bedrock_identifier": "minecraft:dead_bubble_coral_fan", - "bedrock_data": 0, - "firstBlockRuntimeId": 12837, - "lastBlockRuntimeId": 12838 - }, - "minecraft:dead_fire_coral_fan": { - "bedrock_identifier": "minecraft:dead_fire_coral_fan", - "bedrock_data": 0, - "firstBlockRuntimeId": 12839, - "lastBlockRuntimeId": 12840 - }, - "minecraft:dead_horn_coral_fan": { - "bedrock_identifier": "minecraft:dead_horn_coral_fan", - "bedrock_data": 0, - "firstBlockRuntimeId": 12841, - "lastBlockRuntimeId": 12842 - }, - "minecraft:blue_ice": { - "bedrock_identifier": "minecraft:blue_ice", - "bedrock_data": 0, - "firstBlockRuntimeId": 12941 - }, - "minecraft:conduit": { - "bedrock_identifier": "minecraft:conduit", - "bedrock_data": 0, - "firstBlockRuntimeId": 12942, - "lastBlockRuntimeId": 12943 - }, - "minecraft:polished_granite_stairs": { - "bedrock_identifier": "minecraft:polished_granite_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 12962, - "lastBlockRuntimeId": 13041 - }, - "minecraft:smooth_red_sandstone_stairs": { - "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 13042, - "lastBlockRuntimeId": 13121 - }, - "minecraft:mossy_stone_brick_stairs": { - "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 13122, - "lastBlockRuntimeId": 13201 - }, - "minecraft:polished_diorite_stairs": { - "bedrock_identifier": "minecraft:polished_diorite_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 13202, - "lastBlockRuntimeId": 13281 - }, - "minecraft:mossy_cobblestone_stairs": { - "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 13282, - "lastBlockRuntimeId": 13361 - }, - "minecraft:end_stone_brick_stairs": { - "bedrock_identifier": "minecraft:end_brick_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 13362, - "lastBlockRuntimeId": 13441 - }, - "minecraft:stone_stairs": { - "bedrock_identifier": "minecraft:normal_stone_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 13442, - "lastBlockRuntimeId": 13521 - }, - "minecraft:smooth_sandstone_stairs": { - "bedrock_identifier": "minecraft:smooth_sandstone_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 13522, - "lastBlockRuntimeId": 13601 - }, - "minecraft:smooth_quartz_stairs": { - "bedrock_identifier": "minecraft:smooth_quartz_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 13602, - "lastBlockRuntimeId": 13681 - }, - "minecraft:granite_stairs": { - "bedrock_identifier": "minecraft:granite_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 13682, - "lastBlockRuntimeId": 13761 - }, - "minecraft:andesite_stairs": { - "bedrock_identifier": "minecraft:andesite_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 13762, - "lastBlockRuntimeId": 13841 - }, - "minecraft:red_nether_brick_stairs": { - "bedrock_identifier": "minecraft:red_nether_brick_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 13842, - "lastBlockRuntimeId": 13921 - }, - "minecraft:polished_andesite_stairs": { - "bedrock_identifier": "minecraft:polished_andesite_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 13922, - "lastBlockRuntimeId": 14001 - }, - "minecraft:diorite_stairs": { - "bedrock_identifier": "minecraft:diorite_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 14002, - "lastBlockRuntimeId": 14081 - }, - "minecraft:cobbled_deepslate_stairs": { - "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 24908, - "lastBlockRuntimeId": 24987 - }, - "minecraft:polished_deepslate_stairs": { - "bedrock_identifier": "minecraft:polished_deepslate_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 25319, - "lastBlockRuntimeId": 25398 - }, - "minecraft:deepslate_brick_stairs": { - "bedrock_identifier": "minecraft:deepslate_brick_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 26141, - "lastBlockRuntimeId": 26220 - }, - "minecraft:deepslate_tile_stairs": { - "bedrock_identifier": "minecraft:deepslate_tile_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 25730, - "lastBlockRuntimeId": 25809 - }, - "minecraft:polished_granite_slab": { - "bedrock_identifier": "minecraft:stone_block_slab3", - "bedrock_data": 7, - "firstBlockRuntimeId": 14082, - "lastBlockRuntimeId": 14087 - }, - "minecraft:smooth_red_sandstone_slab": { - "bedrock_identifier": "minecraft:stone_block_slab3", - "bedrock_data": 1, - "firstBlockRuntimeId": 14088, - "lastBlockRuntimeId": 14093 - }, - "minecraft:mossy_stone_brick_slab": { - "bedrock_identifier": "minecraft:stone_block_slab4", - "bedrock_data": 0, - "firstBlockRuntimeId": 14094, - "lastBlockRuntimeId": 14099 - }, - "minecraft:polished_diorite_slab": { - "bedrock_identifier": "minecraft:stone_block_slab3", - "bedrock_data": 5, - "firstBlockRuntimeId": 14100, - "lastBlockRuntimeId": 14105 - }, - "minecraft:mossy_cobblestone_slab": { - "bedrock_identifier": "minecraft:stone_block_slab2", - "bedrock_data": 5, - "firstBlockRuntimeId": 14106, - "lastBlockRuntimeId": 14111 - }, - "minecraft:end_stone_brick_slab": { - "bedrock_identifier": "minecraft:stone_block_slab3", - "bedrock_data": 0, - "firstBlockRuntimeId": 14112, - "lastBlockRuntimeId": 14117 - }, - "minecraft:smooth_sandstone_slab": { - "bedrock_identifier": "minecraft:stone_block_slab2", - "bedrock_data": 6, - "firstBlockRuntimeId": 14118, - "lastBlockRuntimeId": 14123 - }, - "minecraft:smooth_quartz_slab": { - "bedrock_identifier": "minecraft:stone_block_slab4", - "bedrock_data": 1, - "firstBlockRuntimeId": 14124, - "lastBlockRuntimeId": 14129 - }, - "minecraft:granite_slab": { - "bedrock_identifier": "minecraft:stone_block_slab3", - "bedrock_data": 6, - "firstBlockRuntimeId": 14130, - "lastBlockRuntimeId": 14135 - }, - "minecraft:andesite_slab": { - "bedrock_identifier": "minecraft:stone_block_slab3", - "bedrock_data": 3, - "firstBlockRuntimeId": 14136, - "lastBlockRuntimeId": 14141 - }, - "minecraft:red_nether_brick_slab": { - "bedrock_identifier": "minecraft:stone_block_slab2", - "bedrock_data": 7, - "firstBlockRuntimeId": 14142, - "lastBlockRuntimeId": 14147 - }, - "minecraft:polished_andesite_slab": { - "bedrock_identifier": "minecraft:stone_block_slab3", - "bedrock_data": 2, - "firstBlockRuntimeId": 14148, - "lastBlockRuntimeId": 14153 - }, - "minecraft:diorite_slab": { - "bedrock_identifier": "minecraft:stone_block_slab3", - "bedrock_data": 4, - "firstBlockRuntimeId": 14154, - "lastBlockRuntimeId": 14159 - }, - "minecraft:cobbled_deepslate_slab": { - "bedrock_identifier": "minecraft:cobbled_deepslate_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 24988, - "lastBlockRuntimeId": 24993 - }, - "minecraft:polished_deepslate_slab": { - "bedrock_identifier": "minecraft:polished_deepslate_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 25399, - "lastBlockRuntimeId": 25404 - }, - "minecraft:deepslate_brick_slab": { - "bedrock_identifier": "minecraft:deepslate_brick_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 26221, - "lastBlockRuntimeId": 26226 - }, - "minecraft:deepslate_tile_slab": { - "bedrock_identifier": "minecraft:deepslate_tile_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 25810, - "lastBlockRuntimeId": 25815 - }, - "minecraft:scaffolding": { - "bedrock_identifier": "minecraft:scaffolding", - "bedrock_data": 0, - "firstBlockRuntimeId": 18372, - "lastBlockRuntimeId": 18403 - }, - "minecraft:redstone": { - "bedrock_identifier": "minecraft:redstone", - "bedrock_data": 0, - "firstBlockRuntimeId": 2978, - "lastBlockRuntimeId": 4273 - }, - "minecraft:redstone_torch": { - "bedrock_identifier": "minecraft:redstone_torch", - "bedrock_data": 0, - "firstBlockRuntimeId": 5738, - "lastBlockRuntimeId": 5739 - }, - "minecraft:redstone_block": { - "bedrock_identifier": "minecraft:redstone_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 9223 - }, - "minecraft:repeater": { - "bedrock_identifier": "minecraft:repeater", - "bedrock_data": 0, - "firstBlockRuntimeId": 5881, - "lastBlockRuntimeId": 5944 - }, - "minecraft:comparator": { - "bedrock_identifier": "minecraft:comparator", - "bedrock_data": 0, - "firstBlockRuntimeId": 9175, - "lastBlockRuntimeId": 9190 - }, - "minecraft:piston": { - "bedrock_identifier": "minecraft:piston", - "bedrock_data": 1, - "firstBlockRuntimeId": 2011, - "lastBlockRuntimeId": 2022 - }, - "minecraft:sticky_piston": { - "bedrock_identifier": "minecraft:sticky_piston", - "bedrock_data": 1, - "firstBlockRuntimeId": 1992, - "lastBlockRuntimeId": 2003 - }, - "minecraft:slime_block": { - "bedrock_identifier": "minecraft:slime", - "bedrock_data": 0, - "firstBlockRuntimeId": 10364 - }, - "minecraft:honey_block": { - "bedrock_identifier": "minecraft:honey_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 19445 - }, - "minecraft:observer": { - "bedrock_identifier": "minecraft:observer", - "bedrock_data": 0, - "firstBlockRuntimeId": 12550, - "lastBlockRuntimeId": 12561 - }, - "minecraft:hopper": { - "bedrock_identifier": "minecraft:hopper", - "bedrock_data": 0, - "firstBlockRuntimeId": 9225, - "lastBlockRuntimeId": 9234 - }, - "minecraft:dispenser": { - "bedrock_identifier": "minecraft:dispenser", - "bedrock_data": 3, - "firstBlockRuntimeId": 523, - "lastBlockRuntimeId": 534 - }, - "minecraft:dropper": { - "bedrock_identifier": "minecraft:dropper", - "bedrock_data": 3, - "firstBlockRuntimeId": 9344, - "lastBlockRuntimeId": 9355 - }, - "minecraft:lectern": { - "bedrock_identifier": "minecraft:lectern", - "bedrock_data": 0, - "firstBlockRuntimeId": 18450, - "lastBlockRuntimeId": 18465 - }, - "minecraft:target": { - "bedrock_identifier": "minecraft:target", - "bedrock_data": 0, - "firstBlockRuntimeId": 19381, - "lastBlockRuntimeId": 19396 - }, - "minecraft:lever": { - "bedrock_identifier": "minecraft:lever", - "bedrock_data": 0, - "firstBlockRuntimeId": 5626, - "lastBlockRuntimeId": 5649 - }, - "minecraft:lightning_rod": { - "bedrock_identifier": "minecraft:lightning_rod", - "bedrock_data": 0, - "firstBlockRuntimeId": 24724, - "lastBlockRuntimeId": 24747 - }, - "minecraft:daylight_detector": { - "bedrock_identifier": "minecraft:daylight_detector", - "bedrock_data": 0, - "firstBlockRuntimeId": 9191, - "lastBlockRuntimeId": 9222 - }, - "minecraft:sculk_sensor": { - "bedrock_identifier": "minecraft:sculk_sensor", - "bedrock_data": 0, - "firstBlockRuntimeId": 22319, - "lastBlockRuntimeId": 22414 - }, - "minecraft:calibrated_sculk_sensor": { - "bedrock_identifier": "minecraft:calibrated_sculk_sensor", - "bedrock_data": 0, - "firstBlockRuntimeId": 22415, - "lastBlockRuntimeId": 22798 - }, - "minecraft:tripwire_hook": { - "bedrock_identifier": "minecraft:tripwire_hook", - "bedrock_data": 0, - "firstBlockRuntimeId": 7521, - "lastBlockRuntimeId": 7536 - }, - "minecraft:trapped_chest": { - "bedrock_identifier": "minecraft:trapped_chest", - "bedrock_data": 0, - "firstBlockRuntimeId": 9119, - "lastBlockRuntimeId": 9142 - }, - "minecraft:tnt": { - "bedrock_identifier": "minecraft:tnt", - "bedrock_data": 0, - "firstBlockRuntimeId": 2094, - "lastBlockRuntimeId": 2095 - }, - "minecraft:redstone_lamp": { - "bedrock_identifier": "minecraft:redstone_lamp", - "bedrock_data": 0, - "firstBlockRuntimeId": 7417, - "lastBlockRuntimeId": 7418 - }, - "minecraft:note_block": { - "bedrock_identifier": "minecraft:noteblock", - "bedrock_data": 0, - "firstBlockRuntimeId": 538, - "lastBlockRuntimeId": 1687 - }, - "minecraft:stone_button": { - "bedrock_identifier": "minecraft:stone_button", - "bedrock_data": 0, - "firstBlockRuntimeId": 5748, - "lastBlockRuntimeId": 5771 - }, - "minecraft:polished_blackstone_button": { - "bedrock_identifier": "minecraft:polished_blackstone_button", - "bedrock_data": 0, - "firstBlockRuntimeId": 20374, - "lastBlockRuntimeId": 20397 - }, - "minecraft:oak_button": { - "bedrock_identifier": "minecraft:wooden_button", - "bedrock_data": 0, - "firstBlockRuntimeId": 8611, - "lastBlockRuntimeId": 8634 - }, - "minecraft:spruce_button": { - "bedrock_identifier": "minecraft:spruce_button", - "bedrock_data": 0, - "firstBlockRuntimeId": 8635, - "lastBlockRuntimeId": 8658 - }, - "minecraft:birch_button": { - "bedrock_identifier": "minecraft:birch_button", - "bedrock_data": 0, - "firstBlockRuntimeId": 8659, - "lastBlockRuntimeId": 8682 - }, - "minecraft:jungle_button": { - "bedrock_identifier": "minecraft:jungle_button", - "bedrock_data": 0, - "firstBlockRuntimeId": 8683, - "lastBlockRuntimeId": 8706 - }, - "minecraft:acacia_button": { - "bedrock_identifier": "minecraft:acacia_button", - "bedrock_data": 0, - "firstBlockRuntimeId": 8707, - "lastBlockRuntimeId": 8730 - }, - "minecraft:cherry_button": { - "bedrock_identifier": "minecraft:cherry_button", - "bedrock_data": 0, - "firstBlockRuntimeId": 8731, - "lastBlockRuntimeId": 8754 - }, - "minecraft:dark_oak_button": { - "bedrock_identifier": "minecraft:dark_oak_button", - "bedrock_data": 0, - "firstBlockRuntimeId": 8755, - "lastBlockRuntimeId": 8778 - }, - "minecraft:mangrove_button": { - "bedrock_identifier": "minecraft:mangrove_button", - "bedrock_data": 0, - "firstBlockRuntimeId": 8779, - "lastBlockRuntimeId": 8802 - }, - "minecraft:bamboo_button": { - "bedrock_identifier": "minecraft:bamboo_button", - "bedrock_data": 0, - "firstBlockRuntimeId": 8803, - "lastBlockRuntimeId": 8826 - }, - "minecraft:crimson_button": { - "bedrock_identifier": "minecraft:crimson_button", - "bedrock_data": 0, - "firstBlockRuntimeId": 19100, - "lastBlockRuntimeId": 19123 - }, - "minecraft:warped_button": { - "bedrock_identifier": "minecraft:warped_button", - "bedrock_data": 0, - "firstBlockRuntimeId": 19124, - "lastBlockRuntimeId": 19147 - }, - "minecraft:stone_pressure_plate": { - "bedrock_identifier": "minecraft:stone_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 5650, - "lastBlockRuntimeId": 5651 - }, - "minecraft:polished_blackstone_pressure_plate": { - "bedrock_identifier": "minecraft:polished_blackstone_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 20372, - "lastBlockRuntimeId": 20373 - }, - "minecraft:light_weighted_pressure_plate": { - "bedrock_identifier": "minecraft:light_weighted_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 9143, - "lastBlockRuntimeId": 9158 - }, - "minecraft:heavy_weighted_pressure_plate": { - "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 9159, - "lastBlockRuntimeId": 9174 - }, - "minecraft:oak_pressure_plate": { - "bedrock_identifier": "minecraft:wooden_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 5716, - "lastBlockRuntimeId": 5717 - }, - "minecraft:spruce_pressure_plate": { - "bedrock_identifier": "minecraft:spruce_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 5718, - "lastBlockRuntimeId": 5719 - }, - "minecraft:birch_pressure_plate": { - "bedrock_identifier": "minecraft:birch_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 5720, - "lastBlockRuntimeId": 5721 - }, - "minecraft:jungle_pressure_plate": { - "bedrock_identifier": "minecraft:jungle_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 5722, - "lastBlockRuntimeId": 5723 - }, - "minecraft:acacia_pressure_plate": { - "bedrock_identifier": "minecraft:acacia_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 5724, - "lastBlockRuntimeId": 5725 - }, - "minecraft:cherry_pressure_plate": { - "bedrock_identifier": "minecraft:cherry_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 5726, - "lastBlockRuntimeId": 5727 - }, - "minecraft:dark_oak_pressure_plate": { - "bedrock_identifier": "minecraft:dark_oak_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 5728, - "lastBlockRuntimeId": 5729 - }, - "minecraft:mangrove_pressure_plate": { - "bedrock_identifier": "minecraft:mangrove_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 5730, - "lastBlockRuntimeId": 5731 - }, - "minecraft:bamboo_pressure_plate": { - "bedrock_identifier": "minecraft:bamboo_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 5732, - "lastBlockRuntimeId": 5733 - }, - "minecraft:crimson_pressure_plate": { - "bedrock_identifier": "minecraft:crimson_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 18680, - "lastBlockRuntimeId": 18681 - }, - "minecraft:warped_pressure_plate": { - "bedrock_identifier": "minecraft:warped_pressure_plate", - "bedrock_data": 0, - "firstBlockRuntimeId": 18682, - "lastBlockRuntimeId": 18683 - }, - "minecraft:iron_door": { - "bedrock_identifier": "minecraft:iron_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 5652, - "lastBlockRuntimeId": 5715 - }, - "minecraft:oak_door": { - "bedrock_identifier": "minecraft:wooden_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 4590, - "lastBlockRuntimeId": 4653 - }, - "minecraft:spruce_door": { - "bedrock_identifier": "minecraft:spruce_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 11822, - "lastBlockRuntimeId": 11885 - }, - "minecraft:birch_door": { - "bedrock_identifier": "minecraft:birch_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 11886, - "lastBlockRuntimeId": 11949 - }, - "minecraft:jungle_door": { - "bedrock_identifier": "minecraft:jungle_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 11950, - "lastBlockRuntimeId": 12013 - }, - "minecraft:acacia_door": { - "bedrock_identifier": "minecraft:acacia_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 12014, - "lastBlockRuntimeId": 12077 - }, - "minecraft:cherry_door": { - "bedrock_identifier": "minecraft:cherry_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 12078, - "lastBlockRuntimeId": 12141 - }, - "minecraft:dark_oak_door": { - "bedrock_identifier": "minecraft:dark_oak_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 12142, - "lastBlockRuntimeId": 12205 - }, - "minecraft:mangrove_door": { - "bedrock_identifier": "minecraft:mangrove_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 12206, - "lastBlockRuntimeId": 12269 - }, - "minecraft:bamboo_door": { - "bedrock_identifier": "minecraft:bamboo_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 12270, - "lastBlockRuntimeId": 12333 - }, - "minecraft:crimson_door": { - "bedrock_identifier": "minecraft:crimson_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 19148, - "lastBlockRuntimeId": 19211 - }, - "minecraft:warped_door": { - "bedrock_identifier": "minecraft:warped_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 19212, - "lastBlockRuntimeId": 19275 - }, - "minecraft:copper_door": { - "bedrock_identifier": "minecraft:copper_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 23652, - "lastBlockRuntimeId": 23715 - }, - "minecraft:exposed_copper_door": { - "bedrock_identifier": "minecraft:exposed_copper_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 23716, - "lastBlockRuntimeId": 23779 - }, - "minecraft:weathered_copper_door": { - "bedrock_identifier": "minecraft:weathered_copper_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 23844, - "lastBlockRuntimeId": 23907 - }, - "minecraft:oxidized_copper_door": { - "bedrock_identifier": "minecraft:oxidized_copper_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 23780, - "lastBlockRuntimeId": 23843 - }, - "minecraft:waxed_copper_door": { - "bedrock_identifier": "minecraft:waxed_copper_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 23908, - "lastBlockRuntimeId": 23971 - }, - "minecraft:waxed_exposed_copper_door": { - "bedrock_identifier": "minecraft:waxed_exposed_copper_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 23972, - "lastBlockRuntimeId": 24035 - }, - "minecraft:waxed_weathered_copper_door": { - "bedrock_identifier": "minecraft:waxed_weathered_copper_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 24100, - "lastBlockRuntimeId": 24163 - }, - "minecraft:waxed_oxidized_copper_door": { - "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", - "bedrock_data": 0, - "firstBlockRuntimeId": 24036, - "lastBlockRuntimeId": 24099 - }, - "minecraft:iron_trapdoor": { - "bedrock_identifier": "minecraft:iron_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 10399, - "lastBlockRuntimeId": 10462 - }, - "minecraft:oak_trapdoor": { - "bedrock_identifier": "minecraft:trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 5961, - "lastBlockRuntimeId": 6024 - }, - "minecraft:spruce_trapdoor": { - "bedrock_identifier": "minecraft:spruce_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 6025, - "lastBlockRuntimeId": 6088 - }, - "minecraft:birch_trapdoor": { - "bedrock_identifier": "minecraft:birch_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 6089, - "lastBlockRuntimeId": 6152 - }, - "minecraft:jungle_trapdoor": { - "bedrock_identifier": "minecraft:jungle_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 6153, - "lastBlockRuntimeId": 6216 - }, - "minecraft:acacia_trapdoor": { - "bedrock_identifier": "minecraft:acacia_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 6217, - "lastBlockRuntimeId": 6280 - }, - "minecraft:cherry_trapdoor": { - "bedrock_identifier": "minecraft:cherry_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 6281, - "lastBlockRuntimeId": 6344 - }, - "minecraft:dark_oak_trapdoor": { - "bedrock_identifier": "minecraft:dark_oak_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 6345, - "lastBlockRuntimeId": 6408 - }, - "minecraft:mangrove_trapdoor": { - "bedrock_identifier": "minecraft:mangrove_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 6409, - "lastBlockRuntimeId": 6472 - }, - "minecraft:bamboo_trapdoor": { - "bedrock_identifier": "minecraft:bamboo_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 6473, - "lastBlockRuntimeId": 6536 - }, - "minecraft:crimson_trapdoor": { - "bedrock_identifier": "minecraft:crimson_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 18748, - "lastBlockRuntimeId": 18811 - }, - "minecraft:warped_trapdoor": { - "bedrock_identifier": "minecraft:warped_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 18812, - "lastBlockRuntimeId": 18875 - }, - "minecraft:copper_trapdoor": { - "bedrock_identifier": "minecraft:copper_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 24164, - "lastBlockRuntimeId": 24227 - }, - "minecraft:exposed_copper_trapdoor": { - "bedrock_identifier": "minecraft:exposed_copper_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 24228, - "lastBlockRuntimeId": 24291 - }, - "minecraft:weathered_copper_trapdoor": { - "bedrock_identifier": "minecraft:weathered_copper_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 24356, - "lastBlockRuntimeId": 24419 - }, - "minecraft:oxidized_copper_trapdoor": { - "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 24292, - "lastBlockRuntimeId": 24355 - }, - "minecraft:waxed_copper_trapdoor": { - "bedrock_identifier": "minecraft:waxed_copper_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 24420, - "lastBlockRuntimeId": 24483 - }, - "minecraft:waxed_exposed_copper_trapdoor": { - "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 24484, - "lastBlockRuntimeId": 24547 - }, - "minecraft:waxed_weathered_copper_trapdoor": { - "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 24612, - "lastBlockRuntimeId": 24675 - }, - "minecraft:waxed_oxidized_copper_trapdoor": { - "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", - "bedrock_data": 0, - "firstBlockRuntimeId": 24548, - "lastBlockRuntimeId": 24611 - }, - "minecraft:oak_fence_gate": { - "bedrock_identifier": "minecraft:fence_gate", - "bedrock_data": 0, - "firstBlockRuntimeId": 6997, - "lastBlockRuntimeId": 7028 - }, - "minecraft:spruce_fence_gate": { - "bedrock_identifier": "minecraft:spruce_fence_gate", - "bedrock_data": 0, - "firstBlockRuntimeId": 11310, - "lastBlockRuntimeId": 11341 - }, - "minecraft:birch_fence_gate": { - "bedrock_identifier": "minecraft:birch_fence_gate", - "bedrock_data": 0, - "firstBlockRuntimeId": 11342, - "lastBlockRuntimeId": 11373 - }, - "minecraft:jungle_fence_gate": { - "bedrock_identifier": "minecraft:jungle_fence_gate", - "bedrock_data": 0, - "firstBlockRuntimeId": 11374, - "lastBlockRuntimeId": 11405 - }, - "minecraft:acacia_fence_gate": { - "bedrock_identifier": "minecraft:acacia_fence_gate", - "bedrock_data": 0, - "firstBlockRuntimeId": 11406, - "lastBlockRuntimeId": 11437 - }, - "minecraft:cherry_fence_gate": { - "bedrock_identifier": "minecraft:cherry_fence_gate", - "bedrock_data": 0, - "firstBlockRuntimeId": 11438, - "lastBlockRuntimeId": 11469 - }, - "minecraft:dark_oak_fence_gate": { - "bedrock_identifier": "minecraft:dark_oak_fence_gate", - "bedrock_data": 0, - "firstBlockRuntimeId": 11470, - "lastBlockRuntimeId": 11501 - }, - "minecraft:mangrove_fence_gate": { - "bedrock_identifier": "minecraft:mangrove_fence_gate", - "bedrock_data": 0, - "firstBlockRuntimeId": 11502, - "lastBlockRuntimeId": 11533 - }, - "minecraft:bamboo_fence_gate": { - "bedrock_identifier": "minecraft:bamboo_fence_gate", - "bedrock_data": 0, - "firstBlockRuntimeId": 11534, - "lastBlockRuntimeId": 11565 - }, - "minecraft:crimson_fence_gate": { - "bedrock_identifier": "minecraft:crimson_fence_gate", - "bedrock_data": 0, - "firstBlockRuntimeId": 18876, - "lastBlockRuntimeId": 18907 - }, - "minecraft:warped_fence_gate": { - "bedrock_identifier": "minecraft:warped_fence_gate", - "bedrock_data": 0, - "firstBlockRuntimeId": 18908, - "lastBlockRuntimeId": 18939 - }, - "minecraft:powered_rail": { - "bedrock_identifier": "minecraft:golden_rail", - "bedrock_data": 0, - "firstBlockRuntimeId": 1944, - "lastBlockRuntimeId": 1967 - }, - "minecraft:detector_rail": { - "bedrock_identifier": "minecraft:detector_rail", - "bedrock_data": 0, - "firstBlockRuntimeId": 1968, - "lastBlockRuntimeId": 1991 - }, - "minecraft:rail": { - "bedrock_identifier": "minecraft:rail", - "bedrock_data": 0, - "firstBlockRuntimeId": 4662, - "lastBlockRuntimeId": 4681 - }, - "minecraft:activator_rail": { - "bedrock_identifier": "minecraft:activator_rail", - "bedrock_data": 0, - "firstBlockRuntimeId": 9320, - "lastBlockRuntimeId": 9343 - }, - "minecraft:saddle": { - "bedrock_identifier": "minecraft:saddle", - "bedrock_data": 0 - }, - "minecraft:minecart": { - "bedrock_identifier": "minecraft:minecart", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:chest_minecart": { - "bedrock_identifier": "minecraft:chest_minecart", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:furnace_minecart": { - "bedrock_identifier": "minecraft:hopper_minecart", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:tnt_minecart": { - "bedrock_identifier": "minecraft:tnt_minecart", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:hopper_minecart": { - "bedrock_identifier": "minecraft:hopper_minecart", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:carrot_on_a_stick": { - "bedrock_identifier": "minecraft:carrot_on_a_stick", - "bedrock_data": 0 - }, - "minecraft:warped_fungus_on_a_stick": { - "bedrock_identifier": "minecraft:warped_fungus_on_a_stick", - "bedrock_data": 0 - }, - "minecraft:elytra": { - "bedrock_identifier": "minecraft:elytra", - "bedrock_data": 0, - "repair_materials": [ - "minecraft:phantom_membrane" - ] - }, - "minecraft:oak_boat": { - "bedrock_identifier": "minecraft:oak_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:oak_chest_boat": { - "bedrock_identifier": "minecraft:oak_chest_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:spruce_boat": { - "bedrock_identifier": "minecraft:spruce_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:spruce_chest_boat": { - "bedrock_identifier": "minecraft:spruce_chest_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:birch_boat": { - "bedrock_identifier": "minecraft:birch_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:birch_chest_boat": { - "bedrock_identifier": "minecraft:birch_chest_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:jungle_boat": { - "bedrock_identifier": "minecraft:jungle_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:jungle_chest_boat": { - "bedrock_identifier": "minecraft:jungle_chest_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:acacia_boat": { - "bedrock_identifier": "minecraft:acacia_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:acacia_chest_boat": { - "bedrock_identifier": "minecraft:acacia_chest_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:cherry_boat": { - "bedrock_identifier": "minecraft:cherry_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:cherry_chest_boat": { - "bedrock_identifier": "minecraft:cherry_chest_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:dark_oak_boat": { - "bedrock_identifier": "minecraft:dark_oak_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:dark_oak_chest_boat": { - "bedrock_identifier": "minecraft:dark_oak_chest_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:mangrove_boat": { - "bedrock_identifier": "minecraft:mangrove_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:mangrove_chest_boat": { - "bedrock_identifier": "minecraft:mangrove_chest_boat", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:bamboo_raft": { - "bedrock_identifier": "minecraft:bamboo_raft", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:bamboo_chest_raft": { - "bedrock_identifier": "minecraft:bamboo_chest_raft", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:structure_block": { - "bedrock_identifier": "minecraft:structure_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 19356, - "lastBlockRuntimeId": 19359 - }, - "minecraft:jigsaw": { - "bedrock_identifier": "minecraft:jigsaw", - "bedrock_data": 0, - "firstBlockRuntimeId": 19360, - "lastBlockRuntimeId": 19371 - }, - "minecraft:turtle_helmet": { - "bedrock_identifier": "minecraft:turtle_helmet", - "bedrock_data": 0, - "armor_type": "helmet", - "protection_value": 2, - "repair_materials": [ - "minecraft:turtle_scute" - ] - }, - "minecraft:turtle_scute": { - "bedrock_identifier": "minecraft:turtle_scute", - "bedrock_data": 0 - }, - "minecraft:armadillo_scute": { - "bedrock_identifier": "minecraft:armadillo_scute", - "bedrock_data": 0 - }, - "minecraft:wolf_armor": { - "bedrock_identifier": "minecraft:wolf_armor", - "bedrock_data": 0, - "protection_value": 11, - "repair_materials": [ - "minecraft:armadillo_scute" - ] - }, - "minecraft:flint_and_steel": { - "bedrock_identifier": "minecraft:flint_and_steel", - "bedrock_data": 0 - }, - "minecraft:apple": { - "bedrock_identifier": "minecraft:apple", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:bow": { - "bedrock_identifier": "minecraft:bow", - "bedrock_data": 0 - }, - "minecraft:arrow": { - "bedrock_identifier": "minecraft:arrow", - "bedrock_data": 0 - }, - "minecraft:coal": { - "bedrock_identifier": "minecraft:coal", - "bedrock_data": 0 - }, - "minecraft:charcoal": { - "bedrock_identifier": "minecraft:charcoal", - "bedrock_data": 0 - }, - "minecraft:diamond": { - "bedrock_identifier": "minecraft:diamond", - "bedrock_data": 0 - }, - "minecraft:emerald": { - "bedrock_identifier": "minecraft:emerald", - "bedrock_data": 0 - }, - "minecraft:lapis_lazuli": { - "bedrock_identifier": "minecraft:lapis_lazuli", - "bedrock_data": 0 - }, - "minecraft:quartz": { - "bedrock_identifier": "minecraft:quartz", - "bedrock_data": 0 - }, - "minecraft:amethyst_shard": { - "bedrock_identifier": "minecraft:amethyst_shard", - "bedrock_data": 0 - }, - "minecraft:raw_iron": { - "bedrock_identifier": "minecraft:raw_iron", - "bedrock_data": 0 - }, - "minecraft:iron_ingot": { - "bedrock_identifier": "minecraft:iron_ingot", - "bedrock_data": 0 - }, - "minecraft:raw_copper": { - "bedrock_identifier": "minecraft:raw_copper", - "bedrock_data": 0 - }, - "minecraft:copper_ingot": { - "bedrock_identifier": "minecraft:copper_ingot", - "bedrock_data": 0 - }, - "minecraft:raw_gold": { - "bedrock_identifier": "minecraft:raw_gold", - "bedrock_data": 0 - }, - "minecraft:gold_ingot": { - "bedrock_identifier": "minecraft:gold_ingot", - "bedrock_data": 0 - }, - "minecraft:netherite_ingot": { - "bedrock_identifier": "minecraft:netherite_ingot", - "bedrock_data": 0 - }, - "minecraft:netherite_scrap": { - "bedrock_identifier": "minecraft:netherite_scrap", - "bedrock_data": 0 - }, - "minecraft:wooden_sword": { - "bedrock_identifier": "minecraft:wooden_sword", - "bedrock_data": 0, - "tool_type": "sword", - "tool_tier": "wooden", - "repair_materials": [ - "minecraft:oak_planks", - "minecraft:spruce_planks", - "minecraft:birch_planks", - "minecraft:jungle_planks", - "minecraft:acacia_planks", - "minecraft:cherry_planks", - "minecraft:dark_oak_planks", - "minecraft:mangrove_planks", - "minecraft:bamboo_planks", - "minecraft:crimson_planks", - "minecraft:warped_planks" - ] - }, - "minecraft:wooden_shovel": { - "bedrock_identifier": "minecraft:wooden_shovel", - "bedrock_data": 0, - "tool_type": "shovel", - "tool_tier": "wooden", - "repair_materials": [ - "minecraft:oak_planks", - "minecraft:spruce_planks", - "minecraft:birch_planks", - "minecraft:jungle_planks", - "minecraft:acacia_planks", - "minecraft:cherry_planks", - "minecraft:dark_oak_planks", - "minecraft:mangrove_planks", - "minecraft:bamboo_planks", - "minecraft:crimson_planks", - "minecraft:warped_planks" - ] - }, - "minecraft:wooden_pickaxe": { - "bedrock_identifier": "minecraft:wooden_pickaxe", - "bedrock_data": 0, - "tool_type": "pickaxe", - "tool_tier": "wooden", - "repair_materials": [ - "minecraft:oak_planks", - "minecraft:spruce_planks", - "minecraft:birch_planks", - "minecraft:jungle_planks", - "minecraft:acacia_planks", - "minecraft:cherry_planks", - "minecraft:dark_oak_planks", - "minecraft:mangrove_planks", - "minecraft:bamboo_planks", - "minecraft:crimson_planks", - "minecraft:warped_planks" - ] - }, - "minecraft:wooden_axe": { - "bedrock_identifier": "minecraft:wooden_axe", - "bedrock_data": 0, - "tool_type": "axe", - "tool_tier": "wooden", - "repair_materials": [ - "minecraft:oak_planks", - "minecraft:spruce_planks", - "minecraft:birch_planks", - "minecraft:jungle_planks", - "minecraft:acacia_planks", - "minecraft:cherry_planks", - "minecraft:dark_oak_planks", - "minecraft:mangrove_planks", - "minecraft:bamboo_planks", - "minecraft:crimson_planks", - "minecraft:warped_planks" - ] - }, - "minecraft:wooden_hoe": { - "bedrock_identifier": "minecraft:wooden_hoe", - "bedrock_data": 0, - "tool_type": "hoe", - "tool_tier": "wooden", - "repair_materials": [ - "minecraft:oak_planks", - "minecraft:spruce_planks", - "minecraft:birch_planks", - "minecraft:jungle_planks", - "minecraft:acacia_planks", - "minecraft:cherry_planks", - "minecraft:dark_oak_planks", - "minecraft:mangrove_planks", - "minecraft:bamboo_planks", - "minecraft:crimson_planks", - "minecraft:warped_planks" - ] - }, - "minecraft:stone_sword": { - "bedrock_identifier": "minecraft:stone_sword", - "bedrock_data": 0, - "tool_type": "sword", - "tool_tier": "stone", - "repair_materials": [ - "minecraft:cobblestone", - "minecraft:cobbled_deepslate", - "minecraft:blackstone" - ] - }, - "minecraft:stone_shovel": { - "bedrock_identifier": "minecraft:stone_shovel", - "bedrock_data": 0, - "tool_type": "shovel", - "tool_tier": "stone", - "repair_materials": [ - "minecraft:cobblestone", - "minecraft:cobbled_deepslate", - "minecraft:blackstone" - ] - }, - "minecraft:stone_pickaxe": { - "bedrock_identifier": "minecraft:stone_pickaxe", - "bedrock_data": 0, - "tool_type": "pickaxe", - "tool_tier": "stone", - "repair_materials": [ - "minecraft:cobblestone", - "minecraft:cobbled_deepslate", - "minecraft:blackstone" - ] - }, - "minecraft:stone_axe": { - "bedrock_identifier": "minecraft:stone_axe", - "bedrock_data": 0, - "tool_type": "axe", - "tool_tier": "stone", - "repair_materials": [ - "minecraft:cobblestone", - "minecraft:cobbled_deepslate", - "minecraft:blackstone" - ] - }, - "minecraft:stone_hoe": { - "bedrock_identifier": "minecraft:stone_hoe", - "bedrock_data": 0, - "tool_type": "hoe", - "tool_tier": "stone", - "repair_materials": [ - "minecraft:cobblestone", - "minecraft:cobbled_deepslate", - "minecraft:blackstone" - ] - }, - "minecraft:golden_sword": { - "bedrock_identifier": "minecraft:golden_sword", - "bedrock_data": 0, - "tool_type": "sword", - "tool_tier": "golden", - "repair_materials": [ - "minecraft:gold_ingot" - ] - }, - "minecraft:golden_shovel": { - "bedrock_identifier": "minecraft:golden_shovel", - "bedrock_data": 0, - "tool_type": "shovel", - "tool_tier": "golden", - "repair_materials": [ - "minecraft:gold_ingot" - ] - }, - "minecraft:golden_pickaxe": { - "bedrock_identifier": "minecraft:golden_pickaxe", - "bedrock_data": 0, - "tool_type": "pickaxe", - "tool_tier": "golden", - "repair_materials": [ - "minecraft:gold_ingot" - ] - }, - "minecraft:golden_axe": { - "bedrock_identifier": "minecraft:golden_axe", - "bedrock_data": 0, - "tool_type": "axe", - "tool_tier": "golden", - "repair_materials": [ - "minecraft:gold_ingot" - ] - }, - "minecraft:golden_hoe": { - "bedrock_identifier": "minecraft:golden_hoe", - "bedrock_data": 0, - "tool_type": "hoe", - "tool_tier": "golden", - "repair_materials": [ - "minecraft:gold_ingot" - ] - }, - "minecraft:iron_sword": { - "bedrock_identifier": "minecraft:iron_sword", - "bedrock_data": 0, - "tool_type": "sword", - "tool_tier": "iron", - "repair_materials": [ - "minecraft:iron_ingot" - ] - }, - "minecraft:iron_shovel": { - "bedrock_identifier": "minecraft:iron_shovel", - "bedrock_data": 0, - "tool_type": "shovel", - "tool_tier": "iron", - "repair_materials": [ - "minecraft:iron_ingot" - ] - }, - "minecraft:iron_pickaxe": { - "bedrock_identifier": "minecraft:iron_pickaxe", - "bedrock_data": 0, - "tool_type": "pickaxe", - "tool_tier": "iron", - "repair_materials": [ - "minecraft:iron_ingot" - ] - }, - "minecraft:iron_axe": { - "bedrock_identifier": "minecraft:iron_axe", - "bedrock_data": 0, - "tool_type": "axe", - "tool_tier": "iron", - "repair_materials": [ - "minecraft:iron_ingot" - ] - }, - "minecraft:iron_hoe": { - "bedrock_identifier": "minecraft:iron_hoe", - "bedrock_data": 0, - "tool_type": "hoe", - "tool_tier": "iron", - "repair_materials": [ - "minecraft:iron_ingot" - ] - }, - "minecraft:diamond_sword": { - "bedrock_identifier": "minecraft:diamond_sword", - "bedrock_data": 0, - "tool_type": "sword", - "tool_tier": "diamond", - "repair_materials": [ - "minecraft:diamond" - ] - }, - "minecraft:diamond_shovel": { - "bedrock_identifier": "minecraft:diamond_shovel", - "bedrock_data": 0, - "tool_type": "shovel", - "tool_tier": "diamond", - "repair_materials": [ - "minecraft:diamond" - ] - }, - "minecraft:diamond_pickaxe": { - "bedrock_identifier": "minecraft:diamond_pickaxe", - "bedrock_data": 0, - "tool_type": "pickaxe", - "tool_tier": "diamond", - "repair_materials": [ - "minecraft:diamond" - ] - }, - "minecraft:diamond_axe": { - "bedrock_identifier": "minecraft:diamond_axe", - "bedrock_data": 0, - "tool_type": "axe", - "tool_tier": "diamond", - "repair_materials": [ - "minecraft:diamond" - ] - }, - "minecraft:diamond_hoe": { - "bedrock_identifier": "minecraft:diamond_hoe", - "bedrock_data": 0, - "tool_type": "hoe", - "tool_tier": "diamond", - "repair_materials": [ - "minecraft:diamond" - ] - }, - "minecraft:netherite_sword": { - "bedrock_identifier": "minecraft:netherite_sword", - "bedrock_data": 0, - "tool_type": "sword", - "tool_tier": "netherite", - "repair_materials": [ - "minecraft:netherite_ingot" - ] - }, - "minecraft:netherite_shovel": { - "bedrock_identifier": "minecraft:netherite_shovel", - "bedrock_data": 0, - "tool_type": "shovel", - "tool_tier": "netherite", - "repair_materials": [ - "minecraft:netherite_ingot" - ] - }, - "minecraft:netherite_pickaxe": { - "bedrock_identifier": "minecraft:netherite_pickaxe", - "bedrock_data": 0, - "tool_type": "pickaxe", - "tool_tier": "netherite", - "repair_materials": [ - "minecraft:netherite_ingot" - ] - }, - "minecraft:netherite_axe": { - "bedrock_identifier": "minecraft:netherite_axe", - "bedrock_data": 0, - "tool_type": "axe", - "tool_tier": "netherite", - "repair_materials": [ - "minecraft:netherite_ingot" - ] - }, - "minecraft:netherite_hoe": { - "bedrock_identifier": "minecraft:netherite_hoe", - "bedrock_data": 0, - "tool_type": "hoe", - "tool_tier": "netherite", - "repair_materials": [ - "minecraft:netherite_ingot" - ] - }, - "minecraft:stick": { - "bedrock_identifier": "minecraft:stick", - "bedrock_data": 0 - }, - "minecraft:bowl": { - "bedrock_identifier": "minecraft:bowl", - "bedrock_data": 0 - }, - "minecraft:mushroom_stew": { - "bedrock_identifier": "minecraft:mushroom_stew", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:string": { - "bedrock_identifier": "minecraft:string", - "bedrock_data": 0, - "firstBlockRuntimeId": 7537, - "lastBlockRuntimeId": 7664 - }, - "minecraft:feather": { - "bedrock_identifier": "minecraft:feather", - "bedrock_data": 0 - }, - "minecraft:gunpowder": { - "bedrock_identifier": "minecraft:gunpowder", - "bedrock_data": 0 - }, - "minecraft:wheat_seeds": { - "bedrock_identifier": "minecraft:wheat_seeds", - "bedrock_data": 0, - "firstBlockRuntimeId": 4278, - "lastBlockRuntimeId": 4285 - }, - "minecraft:wheat": { - "bedrock_identifier": "minecraft:wheat", - "bedrock_data": 0 - }, - "minecraft:bread": { - "bedrock_identifier": "minecraft:bread", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:leather_helmet": { - "bedrock_identifier": "minecraft:leather_helmet", - "bedrock_data": 0, - "armor_type": "helmet", - "protection_value": 1, - "repair_materials": [ - "minecraft:leather" - ] - }, - "minecraft:leather_chestplate": { - "bedrock_identifier": "minecraft:leather_chestplate", - "bedrock_data": 0, - "armor_type": "chestplate", - "protection_value": 3, - "repair_materials": [ - "minecraft:leather" - ] - }, - "minecraft:leather_leggings": { - "bedrock_identifier": "minecraft:leather_leggings", - "bedrock_data": 0, - "armor_type": "leggings", - "protection_value": 2, - "repair_materials": [ - "minecraft:leather" - ] - }, - "minecraft:leather_boots": { - "bedrock_identifier": "minecraft:leather_boots", - "bedrock_data": 0, - "armor_type": "boots", - "protection_value": 1, - "repair_materials": [ - "minecraft:leather" - ] - }, - "minecraft:chainmail_helmet": { - "bedrock_identifier": "minecraft:chainmail_helmet", - "bedrock_data": 0, - "armor_type": "helmet", - "protection_value": 2, - "repair_materials": [ - "minecraft:iron_ingot" - ] - }, - "minecraft:chainmail_chestplate": { - "bedrock_identifier": "minecraft:chainmail_chestplate", - "bedrock_data": 0, - "armor_type": "chestplate", - "protection_value": 5, - "repair_materials": [ - "minecraft:iron_ingot" - ] - }, - "minecraft:chainmail_leggings": { - "bedrock_identifier": "minecraft:chainmail_leggings", - "bedrock_data": 0, - "armor_type": "leggings", - "protection_value": 4, - "repair_materials": [ - "minecraft:iron_ingot" - ] - }, - "minecraft:chainmail_boots": { - "bedrock_identifier": "minecraft:chainmail_boots", - "bedrock_data": 0, - "armor_type": "boots", - "protection_value": 1, - "repair_materials": [ - "minecraft:iron_ingot" - ] - }, - "minecraft:iron_helmet": { - "bedrock_identifier": "minecraft:iron_helmet", - "bedrock_data": 0, - "armor_type": "helmet", - "protection_value": 2, - "repair_materials": [ - "minecraft:iron_ingot" - ] - }, - "minecraft:iron_chestplate": { - "bedrock_identifier": "minecraft:iron_chestplate", - "bedrock_data": 0, - "armor_type": "chestplate", - "protection_value": 6, - "repair_materials": [ - "minecraft:iron_ingot" - ] - }, - "minecraft:iron_leggings": { - "bedrock_identifier": "minecraft:iron_leggings", - "bedrock_data": 0, - "armor_type": "leggings", - "protection_value": 5, - "repair_materials": [ - "minecraft:iron_ingot" - ] - }, - "minecraft:iron_boots": { - "bedrock_identifier": "minecraft:iron_boots", - "bedrock_data": 0, - "armor_type": "boots", - "protection_value": 2, - "repair_materials": [ - "minecraft:iron_ingot" - ] - }, - "minecraft:diamond_helmet": { - "bedrock_identifier": "minecraft:diamond_helmet", - "bedrock_data": 0, - "armor_type": "helmet", - "protection_value": 3, - "repair_materials": [ - "minecraft:diamond" - ] - }, - "minecraft:diamond_chestplate": { - "bedrock_identifier": "minecraft:diamond_chestplate", - "bedrock_data": 0, - "armor_type": "chestplate", - "protection_value": 8, - "repair_materials": [ - "minecraft:diamond" - ] - }, - "minecraft:diamond_leggings": { - "bedrock_identifier": "minecraft:diamond_leggings", - "bedrock_data": 0, - "armor_type": "leggings", - "protection_value": 6, - "repair_materials": [ - "minecraft:diamond" - ] - }, - "minecraft:diamond_boots": { - "bedrock_identifier": "minecraft:diamond_boots", - "bedrock_data": 0, - "armor_type": "boots", - "protection_value": 3, - "repair_materials": [ - "minecraft:diamond" - ] - }, - "minecraft:golden_helmet": { - "bedrock_identifier": "minecraft:golden_helmet", - "bedrock_data": 0, - "armor_type": "helmet", - "protection_value": 2, - "repair_materials": [ - "minecraft:gold_ingot" - ] - }, - "minecraft:golden_chestplate": { - "bedrock_identifier": "minecraft:golden_chestplate", - "bedrock_data": 0, - "armor_type": "chestplate", - "protection_value": 5, - "repair_materials": [ - "minecraft:gold_ingot" - ] - }, - "minecraft:golden_leggings": { - "bedrock_identifier": "minecraft:golden_leggings", - "bedrock_data": 0, - "armor_type": "leggings", - "protection_value": 3, - "repair_materials": [ - "minecraft:gold_ingot" - ] - }, - "minecraft:golden_boots": { - "bedrock_identifier": "minecraft:golden_boots", - "bedrock_data": 0, - "armor_type": "boots", - "protection_value": 1, - "repair_materials": [ - "minecraft:gold_ingot" - ] - }, - "minecraft:netherite_helmet": { - "bedrock_identifier": "minecraft:netherite_helmet", - "bedrock_data": 0, - "armor_type": "helmet", - "protection_value": 3, - "repair_materials": [ - "minecraft:netherite_ingot" - ] - }, - "minecraft:netherite_chestplate": { - "bedrock_identifier": "minecraft:netherite_chestplate", - "bedrock_data": 0, - "armor_type": "chestplate", - "protection_value": 8, - "repair_materials": [ - "minecraft:netherite_ingot" - ] - }, - "minecraft:netherite_leggings": { - "bedrock_identifier": "minecraft:netherite_leggings", - "bedrock_data": 0, - "armor_type": "leggings", - "protection_value": 6, - "repair_materials": [ - "minecraft:netherite_ingot" - ] - }, - "minecraft:netherite_boots": { - "bedrock_identifier": "minecraft:netherite_boots", - "bedrock_data": 0, - "armor_type": "boots", - "protection_value": 3, - "repair_materials": [ - "minecraft:netherite_ingot" - ] - }, - "minecraft:flint": { - "bedrock_identifier": "minecraft:flint", - "bedrock_data": 0 - }, - "minecraft:porkchop": { - "bedrock_identifier": "minecraft:porkchop", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:cooked_porkchop": { - "bedrock_identifier": "minecraft:cooked_porkchop", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:painting": { - "bedrock_identifier": "minecraft:painting", - "bedrock_data": 0 - }, - "minecraft:golden_apple": { - "bedrock_identifier": "minecraft:golden_apple", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:enchanted_golden_apple": { - "bedrock_identifier": "minecraft:enchanted_golden_apple", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:oak_sign": { - "bedrock_identifier": "minecraft:oak_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 4302, - "lastBlockRuntimeId": 4333 - }, - "minecraft:spruce_sign": { - "bedrock_identifier": "minecraft:spruce_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 4334, - "lastBlockRuntimeId": 4365 - }, - "minecraft:birch_sign": { - "bedrock_identifier": "minecraft:birch_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 4366, - "lastBlockRuntimeId": 4397 - }, - "minecraft:jungle_sign": { - "bedrock_identifier": "minecraft:jungle_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 4462, - "lastBlockRuntimeId": 4493 - }, - "minecraft:acacia_sign": { - "bedrock_identifier": "minecraft:acacia_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 4398, - "lastBlockRuntimeId": 4429 - }, - "minecraft:cherry_sign": { - "bedrock_identifier": "minecraft:cherry_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 4430, - "lastBlockRuntimeId": 4461 - }, - "minecraft:dark_oak_sign": { - "bedrock_identifier": "minecraft:dark_oak_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 4494, - "lastBlockRuntimeId": 4525 - }, - "minecraft:mangrove_sign": { - "bedrock_identifier": "minecraft:mangrove_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 4526, - "lastBlockRuntimeId": 4557 - }, - "minecraft:bamboo_sign": { - "bedrock_identifier": "minecraft:bamboo_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 4558, - "lastBlockRuntimeId": 4589 - }, - "minecraft:crimson_sign": { - "bedrock_identifier": "minecraft:crimson_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 19276, - "lastBlockRuntimeId": 19307 - }, - "minecraft:warped_sign": { - "bedrock_identifier": "minecraft:warped_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 19308, - "lastBlockRuntimeId": 19339 - }, - "minecraft:oak_hanging_sign": { - "bedrock_identifier": "minecraft:oak_hanging_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 4834, - "lastBlockRuntimeId": 4897 - }, - "minecraft:spruce_hanging_sign": { - "bedrock_identifier": "minecraft:spruce_hanging_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 4898, - "lastBlockRuntimeId": 4961 - }, - "minecraft:birch_hanging_sign": { - "bedrock_identifier": "minecraft:birch_hanging_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 4962, - "lastBlockRuntimeId": 5025 - }, - "minecraft:jungle_hanging_sign": { - "bedrock_identifier": "minecraft:jungle_hanging_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 5154, - "lastBlockRuntimeId": 5217 - }, - "minecraft:acacia_hanging_sign": { - "bedrock_identifier": "minecraft:acacia_hanging_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 5026, - "lastBlockRuntimeId": 5089 - }, - "minecraft:cherry_hanging_sign": { - "bedrock_identifier": "minecraft:cherry_hanging_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 5090, - "lastBlockRuntimeId": 5153 - }, - "minecraft:dark_oak_hanging_sign": { - "bedrock_identifier": "minecraft:dark_oak_hanging_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 5218, - "lastBlockRuntimeId": 5281 - }, - "minecraft:mangrove_hanging_sign": { - "bedrock_identifier": "minecraft:mangrove_hanging_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 5410, - "lastBlockRuntimeId": 5473 - }, - "minecraft:bamboo_hanging_sign": { - "bedrock_identifier": "minecraft:bamboo_hanging_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 5474, - "lastBlockRuntimeId": 5537 - }, - "minecraft:crimson_hanging_sign": { - "bedrock_identifier": "minecraft:crimson_hanging_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 5282, - "lastBlockRuntimeId": 5345 - }, - "minecraft:warped_hanging_sign": { - "bedrock_identifier": "minecraft:warped_hanging_sign", - "bedrock_data": 0, - "firstBlockRuntimeId": 5346, - "lastBlockRuntimeId": 5409 - }, - "minecraft:bucket": { - "bedrock_identifier": "minecraft:bucket", - "bedrock_data": 0 - }, - "minecraft:water_bucket": { - "bedrock_identifier": "minecraft:water_bucket", - "bedrock_data": 0 - }, - "minecraft:lava_bucket": { - "bedrock_identifier": "minecraft:lava_bucket", - "bedrock_data": 0 - }, - "minecraft:powder_snow_bucket": { - "bedrock_identifier": "minecraft:powder_snow_bucket", - "bedrock_data": 0, - "firstBlockRuntimeId": 22318 - }, - "minecraft:snowball": { - "bedrock_identifier": "minecraft:snowball", - "bedrock_data": 0 - }, - "minecraft:leather": { - "bedrock_identifier": "minecraft:leather", - "bedrock_data": 0 - }, - "minecraft:milk_bucket": { - "bedrock_identifier": "minecraft:milk_bucket", - "bedrock_data": 0 - }, - "minecraft:pufferfish_bucket": { - "bedrock_identifier": "minecraft:pufferfish_bucket", - "bedrock_data": 0 - }, - "minecraft:salmon_bucket": { - "bedrock_identifier": "minecraft:salmon_bucket", - "bedrock_data": 0 - }, - "minecraft:cod_bucket": { - "bedrock_identifier": "minecraft:cod_bucket", - "bedrock_data": 0 - }, - "minecraft:tropical_fish_bucket": { - "bedrock_identifier": "minecraft:tropical_fish_bucket", - "bedrock_data": 0 - }, - "minecraft:axolotl_bucket": { - "bedrock_identifier": "minecraft:axolotl_bucket", - "bedrock_data": 0 - }, - "minecraft:tadpole_bucket": { - "bedrock_identifier": "minecraft:tadpole_bucket", - "bedrock_data": 0 - }, - "minecraft:brick": { - "bedrock_identifier": "minecraft:brick", - "bedrock_data": 0 - }, - "minecraft:clay_ball": { - "bedrock_identifier": "minecraft:clay_ball", - "bedrock_data": 0 - }, - "minecraft:dried_kelp_block": { - "bedrock_identifier": "minecraft:dried_kelp_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 12787 - }, - "minecraft:paper": { - "bedrock_identifier": "minecraft:paper", - "bedrock_data": 0 - }, - "minecraft:book": { - "bedrock_identifier": "minecraft:book", - "bedrock_data": 0 - }, - "minecraft:slime_ball": { - "bedrock_identifier": "minecraft:slime_ball", - "bedrock_data": 0 - }, - "minecraft:egg": { - "bedrock_identifier": "minecraft:egg", - "bedrock_data": 0 - }, - "minecraft:compass": { - "bedrock_identifier": "minecraft:compass", - "bedrock_data": 0 - }, - "minecraft:recovery_compass": { - "bedrock_identifier": "minecraft:recovery_compass", - "bedrock_data": 0 - }, - "minecraft:bundle": { - "bedrock_identifier": "minecraft:shulker_shell", - "bedrock_data": 0 - }, - "minecraft:fishing_rod": { - "bedrock_identifier": "minecraft:fishing_rod", - "bedrock_data": 0 - }, - "minecraft:clock": { - "bedrock_identifier": "minecraft:clock", - "bedrock_data": 0 - }, - "minecraft:spyglass": { - "bedrock_identifier": "minecraft:spyglass", - "bedrock_data": 0 - }, - "minecraft:glowstone_dust": { - "bedrock_identifier": "minecraft:glowstone_dust", - "bedrock_data": 0 - }, - "minecraft:cod": { - "bedrock_identifier": "minecraft:cod", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:salmon": { - "bedrock_identifier": "minecraft:salmon", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:tropical_fish": { - "bedrock_identifier": "minecraft:tropical_fish", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:pufferfish": { - "bedrock_identifier": "minecraft:pufferfish", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:cooked_cod": { - "bedrock_identifier": "minecraft:cooked_cod", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:cooked_salmon": { - "bedrock_identifier": "minecraft:cooked_salmon", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:ink_sac": { - "bedrock_identifier": "minecraft:ink_sac", - "bedrock_data": 0 - }, - "minecraft:glow_ink_sac": { - "bedrock_identifier": "minecraft:glow_ink_sac", - "bedrock_data": 0 - }, - "minecraft:cocoa_beans": { - "bedrock_identifier": "minecraft:cocoa_beans", - "bedrock_data": 3, - "firstBlockRuntimeId": 7419, - "lastBlockRuntimeId": 7430 - }, - "minecraft:white_dye": { - "bedrock_identifier": "minecraft:white_dye", - "bedrock_data": 0 - }, - "minecraft:orange_dye": { - "bedrock_identifier": "minecraft:orange_dye", - "bedrock_data": 0 - }, - "minecraft:magenta_dye": { - "bedrock_identifier": "minecraft:magenta_dye", - "bedrock_data": 0 - }, - "minecraft:light_blue_dye": { - "bedrock_identifier": "minecraft:light_blue_dye", - "bedrock_data": 0 - }, - "minecraft:yellow_dye": { - "bedrock_identifier": "minecraft:yellow_dye", - "bedrock_data": 0 - }, - "minecraft:lime_dye": { - "bedrock_identifier": "minecraft:lime_dye", - "bedrock_data": 0 - }, - "minecraft:pink_dye": { - "bedrock_identifier": "minecraft:pink_dye", - "bedrock_data": 0 - }, - "minecraft:gray_dye": { - "bedrock_identifier": "minecraft:gray_dye", - "bedrock_data": 0 - }, - "minecraft:light_gray_dye": { - "bedrock_identifier": "minecraft:light_gray_dye", - "bedrock_data": 0 - }, - "minecraft:cyan_dye": { - "bedrock_identifier": "minecraft:cyan_dye", - "bedrock_data": 0 - }, - "minecraft:purple_dye": { - "bedrock_identifier": "minecraft:purple_dye", - "bedrock_data": 0 - }, - "minecraft:blue_dye": { - "bedrock_identifier": "minecraft:blue_dye", - "bedrock_data": 0 - }, - "minecraft:brown_dye": { - "bedrock_identifier": "minecraft:brown_dye", - "bedrock_data": 0 - }, - "minecraft:green_dye": { - "bedrock_identifier": "minecraft:green_dye", - "bedrock_data": 0 - }, - "minecraft:red_dye": { - "bedrock_identifier": "minecraft:red_dye", - "bedrock_data": 0 - }, - "minecraft:black_dye": { - "bedrock_identifier": "minecraft:black_dye", - "bedrock_data": 0 - }, - "minecraft:bone_meal": { - "bedrock_identifier": "minecraft:bone_meal", - "bedrock_data": 0 - }, - "minecraft:bone": { - "bedrock_identifier": "minecraft:bone", - "bedrock_data": 0 - }, - "minecraft:sugar": { - "bedrock_identifier": "minecraft:sugar", - "bedrock_data": 0 - }, - "minecraft:cake": { - "bedrock_identifier": "minecraft:cake", - "bedrock_data": 0, - "firstBlockRuntimeId": 5874, - "lastBlockRuntimeId": 5880 - }, - "minecraft:white_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 0, - "firstBlockRuntimeId": 1688, - "lastBlockRuntimeId": 1703 - }, - "minecraft:orange_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 1, - "firstBlockRuntimeId": 1704, - "lastBlockRuntimeId": 1719 - }, - "minecraft:magenta_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 2, - "firstBlockRuntimeId": 1720, - "lastBlockRuntimeId": 1735 - }, - "minecraft:light_blue_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 3, - "firstBlockRuntimeId": 1736, - "lastBlockRuntimeId": 1751 - }, - "minecraft:yellow_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 4, - "firstBlockRuntimeId": 1752, - "lastBlockRuntimeId": 1767 - }, - "minecraft:lime_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 5, - "firstBlockRuntimeId": 1768, - "lastBlockRuntimeId": 1783 - }, - "minecraft:pink_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 6, - "firstBlockRuntimeId": 1784, - "lastBlockRuntimeId": 1799 - }, - "minecraft:gray_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 7, - "firstBlockRuntimeId": 1800, - "lastBlockRuntimeId": 1815 - }, - "minecraft:light_gray_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 8, - "firstBlockRuntimeId": 1816, - "lastBlockRuntimeId": 1831 - }, - "minecraft:cyan_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 9, - "firstBlockRuntimeId": 1832, - "lastBlockRuntimeId": 1847 - }, - "minecraft:purple_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 10, - "firstBlockRuntimeId": 1848, - "lastBlockRuntimeId": 1863 - }, - "minecraft:blue_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 11, - "firstBlockRuntimeId": 1864, - "lastBlockRuntimeId": 1879 - }, - "minecraft:brown_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 12, - "firstBlockRuntimeId": 1880, - "lastBlockRuntimeId": 1895 - }, - "minecraft:green_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 13, - "firstBlockRuntimeId": 1896, - "lastBlockRuntimeId": 1911 - }, - "minecraft:red_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 14, - "firstBlockRuntimeId": 1912, - "lastBlockRuntimeId": 1927 - }, - "minecraft:black_bed": { - "bedrock_identifier": "minecraft:bed", - "bedrock_data": 15, - "firstBlockRuntimeId": 1928, - "lastBlockRuntimeId": 1943 - }, - "minecraft:cookie": { - "bedrock_identifier": "minecraft:cookie", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:crafter": { - "bedrock_identifier": "minecraft:crafter", - "bedrock_data": 0, - "firstBlockRuntimeId": 26590, - "lastBlockRuntimeId": 26637 - }, - "minecraft:filled_map": { - "bedrock_identifier": "minecraft:filled_map", - "bedrock_data": 0 - }, - "minecraft:shears": { - "bedrock_identifier": "minecraft:shears", - "bedrock_data": 0, - "tool_type": "shears" - }, - "minecraft:melon_slice": { - "bedrock_identifier": "minecraft:melon_slice", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:dried_kelp": { - "bedrock_identifier": "minecraft:dried_kelp", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:pumpkin_seeds": { - "bedrock_identifier": "minecraft:pumpkin_seeds", - "bedrock_data": 0, - "firstBlockRuntimeId": 6821, - "lastBlockRuntimeId": 6828 - }, - "minecraft:melon_seeds": { - "bedrock_identifier": "minecraft:melon_seeds", - "bedrock_data": 0, - "firstBlockRuntimeId": 6829, - "lastBlockRuntimeId": 6836 - }, - "minecraft:beef": { - "bedrock_identifier": "minecraft:beef", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:cooked_beef": { - "bedrock_identifier": "minecraft:cooked_beef", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:chicken": { - "bedrock_identifier": "minecraft:chicken", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:cooked_chicken": { - "bedrock_identifier": "minecraft:cooked_chicken", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:rotten_flesh": { - "bedrock_identifier": "minecraft:rotten_flesh", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:ender_pearl": { - "bedrock_identifier": "minecraft:ender_pearl", - "bedrock_data": 0 - }, - "minecraft:blaze_rod": { - "bedrock_identifier": "minecraft:blaze_rod", - "bedrock_data": 0 - }, - "minecraft:ghast_tear": { - "bedrock_identifier": "minecraft:ghast_tear", - "bedrock_data": 0 - }, - "minecraft:gold_nugget": { - "bedrock_identifier": "minecraft:gold_nugget", - "bedrock_data": 0 - }, - "minecraft:nether_wart": { - "bedrock_identifier": "minecraft:nether_wart", - "bedrock_data": 0, - "firstBlockRuntimeId": 7385, - "lastBlockRuntimeId": 7388 - }, - "minecraft:potion": { - "bedrock_identifier": "minecraft:potion", - "bedrock_data": 0 - }, - "minecraft:glass_bottle": { - "bedrock_identifier": "minecraft:glass_bottle", - "bedrock_data": 0 - }, - "minecraft:spider_eye": { - "bedrock_identifier": "minecraft:spider_eye", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:fermented_spider_eye": { - "bedrock_identifier": "minecraft:fermented_spider_eye", - "bedrock_data": 0 - }, - "minecraft:blaze_powder": { - "bedrock_identifier": "minecraft:blaze_powder", - "bedrock_data": 0 - }, - "minecraft:magma_cream": { - "bedrock_identifier": "minecraft:magma_cream", - "bedrock_data": 0 - }, - "minecraft:brewing_stand": { - "bedrock_identifier": "minecraft:brewing_stand", - "bedrock_data": 0, - "firstBlockRuntimeId": 7390, - "lastBlockRuntimeId": 7397 - }, - "minecraft:cauldron": { - "bedrock_identifier": "minecraft:cauldron", - "bedrock_data": 0, - "firstBlockRuntimeId": 7398 - }, - "minecraft:ender_eye": { - "bedrock_identifier": "minecraft:ender_eye", - "bedrock_data": 0 - }, - "minecraft:glistering_melon_slice": { - "bedrock_identifier": "minecraft:glistering_melon_slice", - "bedrock_data": 0 - }, - "minecraft:armadillo_spawn_egg": { - "bedrock_identifier": "minecraft:armadillo_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:allay_spawn_egg": { - "bedrock_identifier": "minecraft:allay_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:axolotl_spawn_egg": { - "bedrock_identifier": "minecraft:axolotl_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:bat_spawn_egg": { - "bedrock_identifier": "minecraft:bat_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:bee_spawn_egg": { - "bedrock_identifier": "minecraft:bee_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:blaze_spawn_egg": { - "bedrock_identifier": "minecraft:blaze_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:bogged_spawn_egg": { - "bedrock_identifier": "minecraft:bogged_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:breeze_spawn_egg": { - "bedrock_identifier": "minecraft:blaze_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:cat_spawn_egg": { - "bedrock_identifier": "minecraft:cat_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:camel_spawn_egg": { - "bedrock_identifier": "minecraft:camel_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:cave_spider_spawn_egg": { - "bedrock_identifier": "minecraft:cave_spider_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:chicken_spawn_egg": { - "bedrock_identifier": "minecraft:chicken_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:cod_spawn_egg": { - "bedrock_identifier": "minecraft:cod_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:cow_spawn_egg": { - "bedrock_identifier": "minecraft:cow_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:creeper_spawn_egg": { - "bedrock_identifier": "minecraft:creeper_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:dolphin_spawn_egg": { - "bedrock_identifier": "minecraft:dolphin_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:donkey_spawn_egg": { - "bedrock_identifier": "minecraft:donkey_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:drowned_spawn_egg": { - "bedrock_identifier": "minecraft:drowned_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:elder_guardian_spawn_egg": { - "bedrock_identifier": "minecraft:elder_guardian_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:ender_dragon_spawn_egg": { - "bedrock_identifier": "minecraft:ender_dragon_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:enderman_spawn_egg": { - "bedrock_identifier": "minecraft:enderman_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:endermite_spawn_egg": { - "bedrock_identifier": "minecraft:endermite_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:evoker_spawn_egg": { - "bedrock_identifier": "minecraft:evoker_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:fox_spawn_egg": { - "bedrock_identifier": "minecraft:fox_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:frog_spawn_egg": { - "bedrock_identifier": "minecraft:frog_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:ghast_spawn_egg": { - "bedrock_identifier": "minecraft:ghast_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:glow_squid_spawn_egg": { - "bedrock_identifier": "minecraft:glow_squid_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:goat_spawn_egg": { - "bedrock_identifier": "minecraft:goat_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:guardian_spawn_egg": { - "bedrock_identifier": "minecraft:guardian_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:hoglin_spawn_egg": { - "bedrock_identifier": "minecraft:hoglin_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:horse_spawn_egg": { - "bedrock_identifier": "minecraft:horse_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:husk_spawn_egg": { - "bedrock_identifier": "minecraft:husk_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:iron_golem_spawn_egg": { - "bedrock_identifier": "minecraft:iron_golem_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:llama_spawn_egg": { - "bedrock_identifier": "minecraft:llama_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:magma_cube_spawn_egg": { - "bedrock_identifier": "minecraft:magma_cube_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:mooshroom_spawn_egg": { - "bedrock_identifier": "minecraft:mooshroom_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:mule_spawn_egg": { - "bedrock_identifier": "minecraft:mule_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:ocelot_spawn_egg": { - "bedrock_identifier": "minecraft:ocelot_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:panda_spawn_egg": { - "bedrock_identifier": "minecraft:panda_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:parrot_spawn_egg": { - "bedrock_identifier": "minecraft:parrot_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:phantom_spawn_egg": { - "bedrock_identifier": "minecraft:phantom_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:pig_spawn_egg": { - "bedrock_identifier": "minecraft:pig_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:piglin_spawn_egg": { - "bedrock_identifier": "minecraft:piglin_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:piglin_brute_spawn_egg": { - "bedrock_identifier": "minecraft:piglin_brute_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:pillager_spawn_egg": { - "bedrock_identifier": "minecraft:pillager_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:polar_bear_spawn_egg": { - "bedrock_identifier": "minecraft:polar_bear_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:pufferfish_spawn_egg": { - "bedrock_identifier": "minecraft:pufferfish_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:rabbit_spawn_egg": { - "bedrock_identifier": "minecraft:rabbit_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:ravager_spawn_egg": { - "bedrock_identifier": "minecraft:ravager_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:salmon_spawn_egg": { - "bedrock_identifier": "minecraft:salmon_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:sheep_spawn_egg": { - "bedrock_identifier": "minecraft:sheep_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:shulker_spawn_egg": { - "bedrock_identifier": "minecraft:shulker_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:silverfish_spawn_egg": { - "bedrock_identifier": "minecraft:silverfish_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:skeleton_spawn_egg": { - "bedrock_identifier": "minecraft:skeleton_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:skeleton_horse_spawn_egg": { - "bedrock_identifier": "minecraft:skeleton_horse_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:slime_spawn_egg": { - "bedrock_identifier": "minecraft:slime_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:sniffer_spawn_egg": { - "bedrock_identifier": "minecraft:sniffer_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:snow_golem_spawn_egg": { - "bedrock_identifier": "minecraft:snow_golem_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:spider_spawn_egg": { - "bedrock_identifier": "minecraft:spider_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:squid_spawn_egg": { - "bedrock_identifier": "minecraft:squid_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:stray_spawn_egg": { - "bedrock_identifier": "minecraft:stray_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:strider_spawn_egg": { - "bedrock_identifier": "minecraft:strider_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:tadpole_spawn_egg": { - "bedrock_identifier": "minecraft:tadpole_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:trader_llama_spawn_egg": { - "bedrock_identifier": "minecraft:trader_llama_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:tropical_fish_spawn_egg": { - "bedrock_identifier": "minecraft:tropical_fish_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:turtle_spawn_egg": { - "bedrock_identifier": "minecraft:turtle_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:vex_spawn_egg": { - "bedrock_identifier": "minecraft:vex_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:villager_spawn_egg": { - "bedrock_identifier": "minecraft:villager_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:vindicator_spawn_egg": { - "bedrock_identifier": "minecraft:vindicator_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:wandering_trader_spawn_egg": { - "bedrock_identifier": "minecraft:wandering_trader_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:warden_spawn_egg": { - "bedrock_identifier": "minecraft:warden_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:witch_spawn_egg": { - "bedrock_identifier": "minecraft:witch_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:wither_spawn_egg": { - "bedrock_identifier": "minecraft:wither_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:wither_skeleton_spawn_egg": { - "bedrock_identifier": "minecraft:wither_skeleton_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:wolf_spawn_egg": { - "bedrock_identifier": "minecraft:wolf_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:zoglin_spawn_egg": { - "bedrock_identifier": "minecraft:zoglin_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:zombie_spawn_egg": { - "bedrock_identifier": "minecraft:zombie_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:zombie_horse_spawn_egg": { - "bedrock_identifier": "minecraft:zombie_horse_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:zombie_villager_spawn_egg": { - "bedrock_identifier": "minecraft:zombie_villager_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:zombified_piglin_spawn_egg": { - "bedrock_identifier": "minecraft:zombie_pigman_spawn_egg", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:experience_bottle": { - "bedrock_identifier": "minecraft:experience_bottle", - "bedrock_data": 0 - }, - "minecraft:fire_charge": { - "bedrock_identifier": "minecraft:fire_charge", - "bedrock_data": 0 - }, - "minecraft:wind_charge": { - "bedrock_identifier": "minecraft:wind_charge", - "bedrock_data": 0 - }, - "minecraft:writable_book": { - "bedrock_identifier": "minecraft:writable_book", - "bedrock_data": 0 - }, - "minecraft:written_book": { - "bedrock_identifier": "minecraft:written_book", - "bedrock_data": 0 - }, - "minecraft:mace": { - "bedrock_identifier": "minecraft:mace", - "bedrock_data": 0 - }, - "minecraft:item_frame": { - "bedrock_identifier": "minecraft:frame", - "bedrock_data": 0 - }, - "minecraft:glow_item_frame": { - "bedrock_identifier": "minecraft:glow_frame", - "bedrock_data": 0 - }, - "minecraft:flower_pot": { - "bedrock_identifier": "minecraft:flower_pot", - "bedrock_data": 0, - "firstBlockRuntimeId": 8567 - }, - "minecraft:carrot": { - "bedrock_identifier": "minecraft:carrot", - "bedrock_data": 0, - "firstBlockRuntimeId": 8595, - "lastBlockRuntimeId": 8602, - "is_edible": true - }, - "minecraft:potato": { - "bedrock_identifier": "minecraft:potato", - "bedrock_data": 0, - "firstBlockRuntimeId": 8603, - "lastBlockRuntimeId": 8610, - "is_edible": true - }, - "minecraft:baked_potato": { - "bedrock_identifier": "minecraft:baked_potato", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:poisonous_potato": { - "bedrock_identifier": "minecraft:poisonous_potato", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:map": { - "bedrock_identifier": "minecraft:empty_map", - "bedrock_data": 0 - }, - "minecraft:golden_carrot": { - "bedrock_identifier": "minecraft:golden_carrot", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:skeleton_skull": { - "bedrock_identifier": "minecraft:skull", - "bedrock_data": 0, - "firstBlockRuntimeId": 8827, - "lastBlockRuntimeId": 8858 - }, - "minecraft:wither_skeleton_skull": { - "bedrock_identifier": "minecraft:skull", - "bedrock_data": 1, - "firstBlockRuntimeId": 8867, - "lastBlockRuntimeId": 8898 - }, - "minecraft:player_head": { - "bedrock_identifier": "minecraft:skull", - "bedrock_data": 3, - "firstBlockRuntimeId": 8947, - "lastBlockRuntimeId": 8978 - }, - "minecraft:zombie_head": { - "bedrock_identifier": "minecraft:skull", - "bedrock_data": 2, - "firstBlockRuntimeId": 8907, - "lastBlockRuntimeId": 8938 - }, - "minecraft:creeper_head": { - "bedrock_identifier": "minecraft:skull", - "bedrock_data": 4, - "firstBlockRuntimeId": 8987, - "lastBlockRuntimeId": 9018 - }, - "minecraft:dragon_head": { - "bedrock_identifier": "minecraft:skull", - "bedrock_data": 5, - "firstBlockRuntimeId": 9027, - "lastBlockRuntimeId": 9058 - }, - "minecraft:piglin_head": { - "bedrock_identifier": "minecraft:skull", - "bedrock_data": 6, - "firstBlockRuntimeId": 9067, - "lastBlockRuntimeId": 9098 - }, - "minecraft:nether_star": { - "bedrock_identifier": "minecraft:nether_star", - "bedrock_data": 0 - }, - "minecraft:pumpkin_pie": { - "bedrock_identifier": "minecraft:pumpkin_pie", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:firework_rocket": { - "bedrock_identifier": "minecraft:firework_rocket", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:firework_star": { - "bedrock_identifier": "minecraft:firework_star", - "bedrock_data": 0 - }, - "minecraft:enchanted_book": { - "bedrock_identifier": "minecraft:enchanted_book", - "bedrock_data": 0 - }, - "minecraft:nether_brick": { - "bedrock_identifier": "minecraft:netherbrick", - "bedrock_data": 0 - }, - "minecraft:prismarine_shard": { - "bedrock_identifier": "minecraft:prismarine_shard", - "bedrock_data": 0 - }, - "minecraft:prismarine_crystals": { - "bedrock_identifier": "minecraft:prismarine_crystals", - "bedrock_data": 0 - }, - "minecraft:rabbit": { - "bedrock_identifier": "minecraft:rabbit", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:cooked_rabbit": { - "bedrock_identifier": "minecraft:cooked_rabbit", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:rabbit_stew": { - "bedrock_identifier": "minecraft:rabbit_stew", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:rabbit_foot": { - "bedrock_identifier": "minecraft:rabbit_foot", - "bedrock_data": 0 - }, - "minecraft:rabbit_hide": { - "bedrock_identifier": "minecraft:rabbit_hide", - "bedrock_data": 0 - }, - "minecraft:armor_stand": { - "bedrock_identifier": "minecraft:armor_stand", - "bedrock_data": 0 - }, - "minecraft:iron_horse_armor": { - "bedrock_identifier": "minecraft:iron_horse_armor", - "bedrock_data": 0 - }, - "minecraft:golden_horse_armor": { - "bedrock_identifier": "minecraft:golden_horse_armor", - "bedrock_data": 0 - }, - "minecraft:diamond_horse_armor": { - "bedrock_identifier": "minecraft:diamond_horse_armor", - "bedrock_data": 0 - }, - "minecraft:leather_horse_armor": { - "bedrock_identifier": "minecraft:leather_horse_armor", - "bedrock_data": 0 - }, - "minecraft:lead": { - "bedrock_identifier": "minecraft:lead", - "bedrock_data": 0 - }, - "minecraft:name_tag": { - "bedrock_identifier": "minecraft:name_tag", - "bedrock_data": 0 - }, - "minecraft:command_block_minecart": { - "bedrock_identifier": "minecraft:command_block_minecart", - "bedrock_data": 0, - "is_entity_placer": true - }, - "minecraft:mutton": { - "bedrock_identifier": "minecraft:mutton", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:cooked_mutton": { - "bedrock_identifier": "minecraft:cooked_mutton", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:white_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 15, - "firstBlockRuntimeId": 10759, - "lastBlockRuntimeId": 10774 - }, - "minecraft:orange_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 14, - "firstBlockRuntimeId": 10775, - "lastBlockRuntimeId": 10790 - }, - "minecraft:magenta_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 13, - "firstBlockRuntimeId": 10791, - "lastBlockRuntimeId": 10806 - }, - "minecraft:light_blue_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 12, - "firstBlockRuntimeId": 10807, - "lastBlockRuntimeId": 10822 - }, - "minecraft:yellow_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 11, - "firstBlockRuntimeId": 10823, - "lastBlockRuntimeId": 10838 - }, - "minecraft:lime_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 10, - "firstBlockRuntimeId": 10839, - "lastBlockRuntimeId": 10854 - }, - "minecraft:pink_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 9, - "firstBlockRuntimeId": 10855, - "lastBlockRuntimeId": 10870 - }, - "minecraft:gray_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 8, - "firstBlockRuntimeId": 10871, - "lastBlockRuntimeId": 10886 - }, - "minecraft:light_gray_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 7, - "firstBlockRuntimeId": 10887, - "lastBlockRuntimeId": 10902 - }, - "minecraft:cyan_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 6, - "firstBlockRuntimeId": 10903, - "lastBlockRuntimeId": 10918 - }, - "minecraft:purple_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 5, - "firstBlockRuntimeId": 10919, - "lastBlockRuntimeId": 10934 - }, - "minecraft:blue_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 4, - "firstBlockRuntimeId": 10935, - "lastBlockRuntimeId": 10950 - }, - "minecraft:brown_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 3, - "firstBlockRuntimeId": 10951, - "lastBlockRuntimeId": 10966 - }, - "minecraft:green_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 2, - "firstBlockRuntimeId": 10967, - "lastBlockRuntimeId": 10982 - }, - "minecraft:red_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 1, - "firstBlockRuntimeId": 10983, - "lastBlockRuntimeId": 10998 - }, - "minecraft:black_banner": { - "bedrock_identifier": "minecraft:banner", - "bedrock_data": 0, - "firstBlockRuntimeId": 10999, - "lastBlockRuntimeId": 11014 - }, - "minecraft:end_crystal": { - "bedrock_identifier": "minecraft:end_crystal", - "bedrock_data": 0 - }, - "minecraft:chorus_fruit": { - "bedrock_identifier": "minecraft:chorus_fruit", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:popped_chorus_fruit": { - "bedrock_identifier": "minecraft:popped_chorus_fruit", - "bedrock_data": 0 - }, - "minecraft:torchflower_seeds": { - "bedrock_identifier": "minecraft:torchflower_seeds", - "bedrock_data": 0, - "firstBlockRuntimeId": 12495, - "lastBlockRuntimeId": 12496 - }, - "minecraft:pitcher_pod": { - "bedrock_identifier": "minecraft:pitcher_pod", - "bedrock_data": 0, - "firstBlockRuntimeId": 12497, - "lastBlockRuntimeId": 12506 - }, - "minecraft:beetroot": { - "bedrock_identifier": "minecraft:beetroot", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:beetroot_seeds": { - "bedrock_identifier": "minecraft:beetroot_seeds", - "bedrock_data": 0, - "firstBlockRuntimeId": 12509, - "lastBlockRuntimeId": 12512 - }, - "minecraft:beetroot_soup": { - "bedrock_identifier": "minecraft:beetroot_soup", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:dragon_breath": { - "bedrock_identifier": "minecraft:dragon_breath", - "bedrock_data": 0 - }, - "minecraft:splash_potion": { - "bedrock_identifier": "minecraft:splash_potion", - "bedrock_data": 0 - }, - "minecraft:spectral_arrow": { - "bedrock_identifier": "minecraft:arrow", - "bedrock_data": 0 - }, - "minecraft:tipped_arrow": { - "bedrock_identifier": "minecraft:arrow", - "bedrock_data": 0 - }, - "minecraft:lingering_potion": { - "bedrock_identifier": "minecraft:lingering_potion", - "bedrock_data": 0 - }, - "minecraft:shield": { - "bedrock_identifier": "minecraft:shield", - "bedrock_data": 0, - "repair_materials": [ - "minecraft:oak_planks", - "minecraft:spruce_planks", - "minecraft:birch_planks", - "minecraft:jungle_planks", - "minecraft:acacia_planks", - "minecraft:cherry_planks", - "minecraft:dark_oak_planks", - "minecraft:mangrove_planks", - "minecraft:bamboo_planks", - "minecraft:crimson_planks", - "minecraft:warped_planks" - ] - }, - "minecraft:totem_of_undying": { - "bedrock_identifier": "minecraft:totem_of_undying", - "bedrock_data": 0 - }, - "minecraft:shulker_shell": { - "bedrock_identifier": "minecraft:shulker_shell", - "bedrock_data": 0 - }, - "minecraft:iron_nugget": { - "bedrock_identifier": "minecraft:iron_nugget", - "bedrock_data": 0 - }, - "minecraft:knowledge_book": { - "bedrock_identifier": "minecraft:book", - "bedrock_data": 0 - }, - "minecraft:debug_stick": { - "bedrock_identifier": "minecraft:stick", - "bedrock_data": 0 - }, - "minecraft:music_disc_13": { - "bedrock_identifier": "minecraft:music_disc_13", - "bedrock_data": 0 - }, - "minecraft:music_disc_cat": { - "bedrock_identifier": "minecraft:music_disc_cat", - "bedrock_data": 0 - }, - "minecraft:music_disc_blocks": { - "bedrock_identifier": "minecraft:music_disc_blocks", - "bedrock_data": 0 - }, - "minecraft:music_disc_chirp": { - "bedrock_identifier": "minecraft:music_disc_chirp", - "bedrock_data": 0 - }, - "minecraft:music_disc_far": { - "bedrock_identifier": "minecraft:music_disc_far", - "bedrock_data": 0 - }, - "minecraft:music_disc_mall": { - "bedrock_identifier": "minecraft:music_disc_mall", - "bedrock_data": 0 - }, - "minecraft:music_disc_mellohi": { - "bedrock_identifier": "minecraft:music_disc_mellohi", - "bedrock_data": 0 - }, - "minecraft:music_disc_stal": { - "bedrock_identifier": "minecraft:music_disc_stal", - "bedrock_data": 0 - }, - "minecraft:music_disc_strad": { - "bedrock_identifier": "minecraft:music_disc_strad", - "bedrock_data": 0 - }, - "minecraft:music_disc_ward": { - "bedrock_identifier": "minecraft:music_disc_ward", - "bedrock_data": 0 - }, - "minecraft:music_disc_11": { - "bedrock_identifier": "minecraft:music_disc_11", - "bedrock_data": 0 - }, - "minecraft:music_disc_wait": { - "bedrock_identifier": "minecraft:music_disc_wait", - "bedrock_data": 0 - }, - "minecraft:music_disc_otherside": { - "bedrock_identifier": "minecraft:music_disc_otherside", - "bedrock_data": 0 - }, - "minecraft:music_disc_relic": { - "bedrock_identifier": "minecraft:music_disc_relic", - "bedrock_data": 0 - }, - "minecraft:music_disc_5": { - "bedrock_identifier": "minecraft:music_disc_5", - "bedrock_data": 0 - }, - "minecraft:music_disc_pigstep": { - "bedrock_identifier": "minecraft:music_disc_pigstep", - "bedrock_data": 0 - }, - "minecraft:disc_fragment_5": { - "bedrock_identifier": "minecraft:disc_fragment_5", - "bedrock_data": 0 - }, - "minecraft:trident": { - "bedrock_identifier": "minecraft:trident", - "bedrock_data": 0 - }, - "minecraft:phantom_membrane": { - "bedrock_identifier": "minecraft:phantom_membrane", - "bedrock_data": 0 - }, - "minecraft:nautilus_shell": { - "bedrock_identifier": "minecraft:nautilus_shell", - "bedrock_data": 0 - }, - "minecraft:heart_of_the_sea": { - "bedrock_identifier": "minecraft:heart_of_the_sea", - "bedrock_data": 0 - }, - "minecraft:crossbow": { - "bedrock_identifier": "minecraft:crossbow", - "bedrock_data": 0 - }, - "minecraft:suspicious_stew": { - "bedrock_identifier": "minecraft:suspicious_stew", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:loom": { - "bedrock_identifier": "minecraft:loom", - "bedrock_data": 0, - "firstBlockRuntimeId": 18404, - "lastBlockRuntimeId": 18407 - }, - "minecraft:flower_banner_pattern": { - "bedrock_identifier": "minecraft:flower_banner_pattern", - "bedrock_data": 0 - }, - "minecraft:creeper_banner_pattern": { - "bedrock_identifier": "minecraft:creeper_banner_pattern", - "bedrock_data": 0 - }, - "minecraft:skull_banner_pattern": { - "bedrock_identifier": "minecraft:skull_banner_pattern", - "bedrock_data": 0 - }, - "minecraft:mojang_banner_pattern": { - "bedrock_identifier": "minecraft:mojang_banner_pattern", - "bedrock_data": 0 - }, - "minecraft:globe_banner_pattern": { - "bedrock_identifier": "minecraft:globe_banner_pattern", - "bedrock_data": 0 - }, - "minecraft:piglin_banner_pattern": { - "bedrock_identifier": "minecraft:piglin_banner_pattern", - "bedrock_data": 0 - }, - "minecraft:flow_banner_pattern": { - "bedrock_identifier": "minecraft:flow_banner_pattern", - "bedrock_data": 0 - }, - "minecraft:guster_banner_pattern": { - "bedrock_identifier": "minecraft:guster_banner_pattern", - "bedrock_data": 0 - }, - "minecraft:goat_horn": { - "bedrock_identifier": "minecraft:goat_horn", - "bedrock_data": 0 - }, - "minecraft:composter": { - "bedrock_identifier": "minecraft:composter", - "bedrock_data": 0, - "firstBlockRuntimeId": 19372, - "lastBlockRuntimeId": 19380 - }, - "minecraft:barrel": { - "bedrock_identifier": "minecraft:barrel", - "bedrock_data": 0, - "firstBlockRuntimeId": 18408, - "lastBlockRuntimeId": 18419 - }, - "minecraft:smoker": { - "bedrock_identifier": "minecraft:smoker", - "bedrock_data": 0, - "firstBlockRuntimeId": 18420, - "lastBlockRuntimeId": 18427 - }, - "minecraft:blast_furnace": { - "bedrock_identifier": "minecraft:blast_furnace", - "bedrock_data": 0, - "firstBlockRuntimeId": 18428, - "lastBlockRuntimeId": 18435 - }, - "minecraft:cartography_table": { - "bedrock_identifier": "minecraft:cartography_table", - "bedrock_data": 0, - "firstBlockRuntimeId": 18436 - }, - "minecraft:fletching_table": { - "bedrock_identifier": "minecraft:fletching_table", - "bedrock_data": 0, - "firstBlockRuntimeId": 18437 - }, - "minecraft:grindstone": { - "bedrock_identifier": "minecraft:grindstone", - "bedrock_data": 0, - "firstBlockRuntimeId": 18438, - "lastBlockRuntimeId": 18449 - }, - "minecraft:smithing_table": { - "bedrock_identifier": "minecraft:smithing_table", - "bedrock_data": 0, - "firstBlockRuntimeId": 18466 - }, - "minecraft:stonecutter": { - "bedrock_identifier": "minecraft:stonecutter_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 18467, - "lastBlockRuntimeId": 18470 - }, - "minecraft:bell": { - "bedrock_identifier": "minecraft:bell", - "bedrock_data": 0, - "firstBlockRuntimeId": 18471, - "lastBlockRuntimeId": 18502 - }, - "minecraft:lantern": { - "bedrock_identifier": "minecraft:lantern", - "bedrock_data": 0, - "firstBlockRuntimeId": 18503, - "lastBlockRuntimeId": 18506 - }, - "minecraft:soul_lantern": { - "bedrock_identifier": "minecraft:soul_lantern", - "bedrock_data": 0, - "firstBlockRuntimeId": 18507, - "lastBlockRuntimeId": 18510 - }, - "minecraft:sweet_berries": { - "bedrock_identifier": "minecraft:sweet_berries", - "bedrock_data": 0, - "firstBlockRuntimeId": 18575, - "lastBlockRuntimeId": 18578, - "is_edible": true - }, - "minecraft:glow_berries": { - "bedrock_identifier": "minecraft:glow_berries", - "bedrock_data": 0, - "firstBlockRuntimeId": 24769, - "lastBlockRuntimeId": 24820, - "is_edible": true - }, - "minecraft:campfire": { - "bedrock_identifier": "minecraft:campfire", - "bedrock_data": 0, - "firstBlockRuntimeId": 18511, - "lastBlockRuntimeId": 18542 - }, - "minecraft:soul_campfire": { - "bedrock_identifier": "minecraft:soul_campfire", - "bedrock_data": 0, - "firstBlockRuntimeId": 18543, - "lastBlockRuntimeId": 18574 - }, - "minecraft:shroomlight": { - "bedrock_identifier": "minecraft:shroomlight", - "bedrock_data": 0, - "firstBlockRuntimeId": 18610 - }, - "minecraft:honeycomb": { - "bedrock_identifier": "minecraft:honeycomb", - "bedrock_data": 0 - }, - "minecraft:bee_nest": { - "bedrock_identifier": "minecraft:bee_nest", - "bedrock_data": 0, - "firstBlockRuntimeId": 19397, - "lastBlockRuntimeId": 19420 - }, - "minecraft:beehive": { - "bedrock_identifier": "minecraft:beehive", - "bedrock_data": 0, - "firstBlockRuntimeId": 19421, - "lastBlockRuntimeId": 19444 - }, - "minecraft:honey_bottle": { - "bedrock_identifier": "minecraft:honey_bottle", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:honeycomb_block": { - "bedrock_identifier": "minecraft:honeycomb_block", - "bedrock_data": 0, - "firstBlockRuntimeId": 19446 - }, - "minecraft:lodestone": { - "bedrock_identifier": "minecraft:lodestone", - "bedrock_data": 0, - "firstBlockRuntimeId": 19459 - }, - "minecraft:crying_obsidian": { - "bedrock_identifier": "minecraft:crying_obsidian", - "bedrock_data": 0, - "firstBlockRuntimeId": 19449 - }, - "minecraft:blackstone": { - "bedrock_identifier": "minecraft:blackstone", - "bedrock_data": 0, - "firstBlockRuntimeId": 19460 - }, - "minecraft:blackstone_slab": { - "bedrock_identifier": "minecraft:blackstone_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 19865, - "lastBlockRuntimeId": 19870 - }, - "minecraft:blackstone_stairs": { - "bedrock_identifier": "minecraft:blackstone_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 19461, - "lastBlockRuntimeId": 19540 - }, - "minecraft:gilded_blackstone": { - "bedrock_identifier": "minecraft:gilded_blackstone", - "bedrock_data": 0, - "firstBlockRuntimeId": 20285 - }, - "minecraft:polished_blackstone": { - "bedrock_identifier": "minecraft:polished_blackstone", - "bedrock_data": 0, - "firstBlockRuntimeId": 19871 - }, - "minecraft:polished_blackstone_slab": { - "bedrock_identifier": "minecraft:polished_blackstone_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 20366, - "lastBlockRuntimeId": 20371 - }, - "minecraft:polished_blackstone_stairs": { - "bedrock_identifier": "minecraft:polished_blackstone_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 20286, - "lastBlockRuntimeId": 20365 - }, - "minecraft:chiseled_polished_blackstone": { - "bedrock_identifier": "minecraft:chiseled_polished_blackstone", - "bedrock_data": 0, - "firstBlockRuntimeId": 19874 - }, - "minecraft:polished_blackstone_bricks": { - "bedrock_identifier": "minecraft:polished_blackstone_bricks", - "bedrock_data": 0, - "firstBlockRuntimeId": 19872 - }, - "minecraft:polished_blackstone_brick_slab": { - "bedrock_identifier": "minecraft:polished_blackstone_brick_slab", - "bedrock_data": 0, - "firstBlockRuntimeId": 19875, - "lastBlockRuntimeId": 19880 - }, - "minecraft:polished_blackstone_brick_stairs": { - "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", - "bedrock_data": 0, - "firstBlockRuntimeId": 19881, - "lastBlockRuntimeId": 19960 - }, - "minecraft:cracked_polished_blackstone_bricks": { - "bedrock_identifier": "minecraft:cracked_polished_blackstone_bricks", - "bedrock_data": 0, - "firstBlockRuntimeId": 19873 - }, - "minecraft:respawn_anchor": { - "bedrock_identifier": "minecraft:respawn_anchor", - "bedrock_data": 0, - "firstBlockRuntimeId": 19450, - "lastBlockRuntimeId": 19454 - }, - "minecraft:candle": { - "bedrock_identifier": "minecraft:candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20725, - "lastBlockRuntimeId": 20740 - }, - "minecraft:white_candle": { - "bedrock_identifier": "minecraft:white_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20741, - "lastBlockRuntimeId": 20756 - }, - "minecraft:orange_candle": { - "bedrock_identifier": "minecraft:orange_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20757, - "lastBlockRuntimeId": 20772 - }, - "minecraft:magenta_candle": { - "bedrock_identifier": "minecraft:magenta_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20773, - "lastBlockRuntimeId": 20788 - }, - "minecraft:light_blue_candle": { - "bedrock_identifier": "minecraft:light_blue_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20789, - "lastBlockRuntimeId": 20804 - }, - "minecraft:yellow_candle": { - "bedrock_identifier": "minecraft:yellow_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20805, - "lastBlockRuntimeId": 20820 - }, - "minecraft:lime_candle": { - "bedrock_identifier": "minecraft:lime_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20821, - "lastBlockRuntimeId": 20836 - }, - "minecraft:pink_candle": { - "bedrock_identifier": "minecraft:pink_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20837, - "lastBlockRuntimeId": 20852 - }, - "minecraft:gray_candle": { - "bedrock_identifier": "minecraft:gray_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20853, - "lastBlockRuntimeId": 20868 - }, - "minecraft:light_gray_candle": { - "bedrock_identifier": "minecraft:light_gray_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20869, - "lastBlockRuntimeId": 20884 - }, - "minecraft:cyan_candle": { - "bedrock_identifier": "minecraft:cyan_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20885, - "lastBlockRuntimeId": 20900 - }, - "minecraft:purple_candle": { - "bedrock_identifier": "minecraft:purple_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20901, - "lastBlockRuntimeId": 20916 - }, - "minecraft:blue_candle": { - "bedrock_identifier": "minecraft:blue_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20917, - "lastBlockRuntimeId": 20932 - }, - "minecraft:brown_candle": { - "bedrock_identifier": "minecraft:brown_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20933, - "lastBlockRuntimeId": 20948 - }, - "minecraft:green_candle": { - "bedrock_identifier": "minecraft:green_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20949, - "lastBlockRuntimeId": 20964 - }, - "minecraft:red_candle": { - "bedrock_identifier": "minecraft:red_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20965, - "lastBlockRuntimeId": 20980 - }, - "minecraft:black_candle": { - "bedrock_identifier": "minecraft:black_candle", - "bedrock_data": 0, - "firstBlockRuntimeId": 20981, - "lastBlockRuntimeId": 20996 - }, - "minecraft:small_amethyst_bud": { - "bedrock_identifier": "minecraft:small_amethyst_bud", - "bedrock_data": 0, - "firstBlockRuntimeId": 21069, - "lastBlockRuntimeId": 21080 - }, - "minecraft:medium_amethyst_bud": { - "bedrock_identifier": "minecraft:medium_amethyst_bud", - "bedrock_data": 0, - "firstBlockRuntimeId": 21057, - "lastBlockRuntimeId": 21068 - }, - "minecraft:large_amethyst_bud": { - "bedrock_identifier": "minecraft:large_amethyst_bud", - "bedrock_data": 0, - "firstBlockRuntimeId": 21045, - "lastBlockRuntimeId": 21056 - }, - "minecraft:amethyst_cluster": { - "bedrock_identifier": "minecraft:amethyst_cluster", - "bedrock_data": 0, - "firstBlockRuntimeId": 21033, - "lastBlockRuntimeId": 21044 - }, - "minecraft:pointed_dripstone": { - "bedrock_identifier": "minecraft:pointed_dripstone", - "bedrock_data": 0, - "firstBlockRuntimeId": 24748, - "lastBlockRuntimeId": 24767 - }, - "minecraft:ochre_froglight": { - "bedrock_identifier": "minecraft:ochre_froglight", - "bedrock_data": 0, - "firstBlockRuntimeId": 26563, - "lastBlockRuntimeId": 26565 - }, - "minecraft:verdant_froglight": { - "bedrock_identifier": "minecraft:verdant_froglight", - "bedrock_data": 0, - "firstBlockRuntimeId": 26566, - "lastBlockRuntimeId": 26568 - }, - "minecraft:pearlescent_froglight": { - "bedrock_identifier": "minecraft:pearlescent_froglight", - "bedrock_data": 0, - "firstBlockRuntimeId": 26569, - "lastBlockRuntimeId": 26571 - }, - "minecraft:frogspawn": { - "bedrock_identifier": "minecraft:frog_spawn", - "bedrock_data": 0, - "firstBlockRuntimeId": 26572 - }, - "minecraft:echo_shard": { - "bedrock_identifier": "minecraft:echo_shard", - "bedrock_data": 0 - }, - "minecraft:brush": { - "bedrock_identifier": "minecraft:brush", - "bedrock_data": 0 - }, - "minecraft:netherite_upgrade_smithing_template": { - "bedrock_identifier": "minecraft:netherite_upgrade_smithing_template", - "bedrock_data": 0 - }, - "minecraft:sentry_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:sentry_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:dune_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:dune_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:coast_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:coast_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:wild_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:wild_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:ward_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:ward_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:eye_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:eye_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:vex_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:vex_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:tide_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:tide_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:snout_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:snout_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:rib_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:rib_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:spire_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:spire_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:wayfinder_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:wayfinder_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:shaper_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:shaper_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:silence_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:silence_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:raiser_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:raiser_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:host_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:host_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:flow_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:flow_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:bolt_armor_trim_smithing_template": { - "bedrock_identifier": "minecraft:bolt_armor_trim_smithing_template", - "bedrock_data": 0 - }, - "minecraft:angler_pottery_sherd": { - "bedrock_identifier": "minecraft:angler_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:archer_pottery_sherd": { - "bedrock_identifier": "minecraft:archer_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:arms_up_pottery_sherd": { - "bedrock_identifier": "minecraft:arms_up_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:blade_pottery_sherd": { - "bedrock_identifier": "minecraft:blade_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:brewer_pottery_sherd": { - "bedrock_identifier": "minecraft:brewer_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:burn_pottery_sherd": { - "bedrock_identifier": "minecraft:burn_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:danger_pottery_sherd": { - "bedrock_identifier": "minecraft:danger_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:explorer_pottery_sherd": { - "bedrock_identifier": "minecraft:explorer_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:flow_pottery_sherd": { - "bedrock_identifier": "minecraft:flow_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:friend_pottery_sherd": { - "bedrock_identifier": "minecraft:friend_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:guster_pottery_sherd": { - "bedrock_identifier": "minecraft:guster_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:heart_pottery_sherd": { - "bedrock_identifier": "minecraft:heart_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:heartbreak_pottery_sherd": { - "bedrock_identifier": "minecraft:heartbreak_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:howl_pottery_sherd": { - "bedrock_identifier": "minecraft:howl_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:miner_pottery_sherd": { - "bedrock_identifier": "minecraft:miner_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:mourner_pottery_sherd": { - "bedrock_identifier": "minecraft:mourner_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:plenty_pottery_sherd": { - "bedrock_identifier": "minecraft:plenty_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:prize_pottery_sherd": { - "bedrock_identifier": "minecraft:prize_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:scrape_pottery_sherd": { - "bedrock_identifier": "minecraft:scrape_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:sheaf_pottery_sherd": { - "bedrock_identifier": "minecraft:sheaf_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:shelter_pottery_sherd": { - "bedrock_identifier": "minecraft:shelter_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:skull_pottery_sherd": { - "bedrock_identifier": "minecraft:skull_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:snort_pottery_sherd": { - "bedrock_identifier": "minecraft:snort_pottery_sherd", - "bedrock_data": 0 - }, - "minecraft:copper_grate": { - "bedrock_identifier": "minecraft:copper_grate", - "bedrock_data": 0, - "firstBlockRuntimeId": 24676, - "lastBlockRuntimeId": 24677 - }, - "minecraft:exposed_copper_grate": { - "bedrock_identifier": "minecraft:exposed_copper_grate", - "bedrock_data": 0, - "firstBlockRuntimeId": 24678, - "lastBlockRuntimeId": 24679 - }, - "minecraft:weathered_copper_grate": { - "bedrock_identifier": "minecraft:weathered_copper_grate", - "bedrock_data": 0, - "firstBlockRuntimeId": 24680, - "lastBlockRuntimeId": 24681 - }, - "minecraft:oxidized_copper_grate": { - "bedrock_identifier": "minecraft:oxidized_copper_grate", - "bedrock_data": 0, - "firstBlockRuntimeId": 24682, - "lastBlockRuntimeId": 24683 - }, - "minecraft:waxed_copper_grate": { - "bedrock_identifier": "minecraft:waxed_copper_grate", - "bedrock_data": 0, - "firstBlockRuntimeId": 24684, - "lastBlockRuntimeId": 24685 - }, - "minecraft:waxed_exposed_copper_grate": { - "bedrock_identifier": "minecraft:waxed_exposed_copper_grate", - "bedrock_data": 0, - "firstBlockRuntimeId": 24686, - "lastBlockRuntimeId": 24687 - }, - "minecraft:waxed_weathered_copper_grate": { - "bedrock_identifier": "minecraft:waxed_weathered_copper_grate", - "bedrock_data": 0, - "firstBlockRuntimeId": 24688, - "lastBlockRuntimeId": 24689 - }, - "minecraft:waxed_oxidized_copper_grate": { - "bedrock_identifier": "minecraft:waxed_oxidized_copper_grate", - "bedrock_data": 0, - "firstBlockRuntimeId": 24690, - "lastBlockRuntimeId": 24691 - }, - "minecraft:copper_bulb": { - "bedrock_identifier": "minecraft:copper_bulb", - "bedrock_data": 0, - "firstBlockRuntimeId": 24692, - "lastBlockRuntimeId": 24695 - }, - "minecraft:exposed_copper_bulb": { - "bedrock_identifier": "minecraft:exposed_copper_bulb", - "bedrock_data": 0, - "firstBlockRuntimeId": 24696, - "lastBlockRuntimeId": 24699 - }, - "minecraft:weathered_copper_bulb": { - "bedrock_identifier": "minecraft:weathered_copper_bulb", - "bedrock_data": 0, - "firstBlockRuntimeId": 24700, - "lastBlockRuntimeId": 24703 - }, - "minecraft:oxidized_copper_bulb": { - "bedrock_identifier": "minecraft:oxidized_copper_bulb", - "bedrock_data": 0, - "firstBlockRuntimeId": 24704, - "lastBlockRuntimeId": 24707 - }, - "minecraft:waxed_copper_bulb": { - "bedrock_identifier": "minecraft:waxed_copper_bulb", - "bedrock_data": 0, - "firstBlockRuntimeId": 24708, - "lastBlockRuntimeId": 24711 - }, - "minecraft:waxed_exposed_copper_bulb": { - "bedrock_identifier": "minecraft:waxed_exposed_copper_bulb", - "bedrock_data": 0, - "firstBlockRuntimeId": 24712, - "lastBlockRuntimeId": 24715 - }, - "minecraft:waxed_weathered_copper_bulb": { - "bedrock_identifier": "minecraft:waxed_weathered_copper_bulb", - "bedrock_data": 0, - "firstBlockRuntimeId": 24716, - "lastBlockRuntimeId": 24719 - }, - "minecraft:waxed_oxidized_copper_bulb": { - "bedrock_identifier": "minecraft:waxed_oxidized_copper_bulb", - "bedrock_data": 0, - "firstBlockRuntimeId": 24720, - "lastBlockRuntimeId": 24723 - }, - "minecraft:trial_spawner": { - "bedrock_identifier": "minecraft:trial_spawner", - "bedrock_data": 0, - "firstBlockRuntimeId": 26638, - "lastBlockRuntimeId": 26649 - }, - "minecraft:trial_key": { - "bedrock_identifier": "minecraft:trial_key", - "bedrock_data": 0 - }, - "minecraft:ominous_trial_key": { - "bedrock_identifier": "minecraft:trial_key", - "bedrock_data": 0 - }, - "minecraft:vault": { - "bedrock_identifier": "minecraft:vault", - "bedrock_data": 0, - "firstBlockRuntimeId": 26650, - "lastBlockRuntimeId": 26681 - }, - "minecraft:ominous_bottle": { - "bedrock_identifier": "minecraft:glass_bottle", - "bedrock_data": 0, - "is_edible": true - }, - "minecraft:breeze_rod": { - "bedrock_identifier": "minecraft:breeze_rod", - "bedrock_data": 0 - } -} \ No newline at end of file diff --git a/platforms/allay/src/main/resources/mapping/items_JE_1_21_to_BE_1_21_30.json b/platforms/allay/src/main/resources/mapping/items_JE_1_21_to_BE_1_21_30.json new file mode 100644 index 000000000..222a6106d --- /dev/null +++ b/platforms/allay/src/main/resources/mapping/items_JE_1_21_to_BE_1_21_30.json @@ -0,0 +1 @@ +{ "minecraft:air": { "bedrock_identifier": "minecraft:air", "bedrock_data": 0 }, "minecraft:stone": { "bedrock_identifier": "minecraft:stone", "bedrock_data": 0, "firstBlockRuntimeId": 1 }, "minecraft:granite": { "bedrock_identifier": "minecraft:granite", "bedrock_data": 1, "firstBlockRuntimeId": 2 }, "minecraft:polished_granite": { "bedrock_identifier": "minecraft:polished_granite", "bedrock_data": 2, "firstBlockRuntimeId": 3 }, "minecraft:diorite": { "bedrock_identifier": "minecraft:diorite", "bedrock_data": 3, "firstBlockRuntimeId": 4 }, "minecraft:polished_diorite": { "bedrock_identifier": "minecraft:polished_diorite", "bedrock_data": 4, "firstBlockRuntimeId": 5 }, "minecraft:andesite": { "bedrock_identifier": "minecraft:andesite", "bedrock_data": 5, "firstBlockRuntimeId": 6 }, "minecraft:polished_andesite": { "bedrock_identifier": "minecraft:polished_andesite", "bedrock_data": 6, "firstBlockRuntimeId": 7 }, "minecraft:deepslate": { "bedrock_identifier": "minecraft:deepslate", "bedrock_data": 0, "firstBlockRuntimeId": 24904, "lastBlockRuntimeId": 24906 }, "minecraft:cobbled_deepslate": { "bedrock_identifier": "minecraft:cobbled_deepslate", "bedrock_data": 0, "firstBlockRuntimeId": 24907 }, "minecraft:polished_deepslate": { "bedrock_identifier": "minecraft:polished_deepslate", "bedrock_data": 0, "firstBlockRuntimeId": 25318 }, "minecraft:calcite": { "bedrock_identifier": "minecraft:calcite", "bedrock_data": 0, "firstBlockRuntimeId": 22316 }, "minecraft:tuff": { "bedrock_identifier": "minecraft:tuff", "bedrock_data": 0, "firstBlockRuntimeId": 21081 }, "minecraft:tuff_slab": { "bedrock_identifier": "minecraft:tuff_slab", "bedrock_data": 0, "firstBlockRuntimeId": 21082, "lastBlockRuntimeId": 21087 }, "minecraft:tuff_stairs": { "bedrock_identifier": "minecraft:tuff_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 21088, "lastBlockRuntimeId": 21167 }, "minecraft:tuff_wall": { "bedrock_identifier": "minecraft:tuff_wall", "bedrock_data": 0, "firstBlockRuntimeId": 21168, "lastBlockRuntimeId": 21491 }, "minecraft:chiseled_tuff": { "bedrock_identifier": "minecraft:chiseled_tuff", "bedrock_data": 0, "firstBlockRuntimeId": 21903 }, "minecraft:polished_tuff": { "bedrock_identifier": "minecraft:polished_tuff", "bedrock_data": 0, "firstBlockRuntimeId": 21492 }, "minecraft:polished_tuff_slab": { "bedrock_identifier": "minecraft:polished_tuff_slab", "bedrock_data": 0, "firstBlockRuntimeId": 21493, "lastBlockRuntimeId": 21498 }, "minecraft:polished_tuff_stairs": { "bedrock_identifier": "minecraft:polished_tuff_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 21499, "lastBlockRuntimeId": 21578 }, "minecraft:polished_tuff_wall": { "bedrock_identifier": "minecraft:polished_tuff_wall", "bedrock_data": 0, "firstBlockRuntimeId": 21579, "lastBlockRuntimeId": 21902 }, "minecraft:tuff_bricks": { "bedrock_identifier": "minecraft:tuff_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 21904 }, "minecraft:tuff_brick_slab": { "bedrock_identifier": "minecraft:tuff_brick_slab", "bedrock_data": 0, "firstBlockRuntimeId": 21905, "lastBlockRuntimeId": 21910 }, "minecraft:tuff_brick_stairs": { "bedrock_identifier": "minecraft:tuff_brick_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 21911, "lastBlockRuntimeId": 21990 }, "minecraft:tuff_brick_wall": { "bedrock_identifier": "minecraft:tuff_brick_wall", "bedrock_data": 0, "firstBlockRuntimeId": 21991, "lastBlockRuntimeId": 22314 }, "minecraft:chiseled_tuff_bricks": { "bedrock_identifier": "minecraft:chiseled_tuff_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 22315 }, "minecraft:dripstone_block": { "bedrock_identifier": "minecraft:dripstone_block", "bedrock_data": 0, "firstBlockRuntimeId": 24768 }, "minecraft:grass_block": { "bedrock_identifier": "minecraft:grass_block", "bedrock_data": 0, "firstBlockRuntimeId": 8, "lastBlockRuntimeId": 9 }, "minecraft:dirt": { "bedrock_identifier": "minecraft:dirt", "bedrock_data": 0, "firstBlockRuntimeId": 10 }, "minecraft:coarse_dirt": { "bedrock_identifier": "minecraft:coarse_dirt", "bedrock_data": 0, "firstBlockRuntimeId": 11 }, "minecraft:podzol": { "bedrock_identifier": "minecraft:podzol", "bedrock_data": 0, "firstBlockRuntimeId": 12, "lastBlockRuntimeId": 13 }, "minecraft:rooted_dirt": { "bedrock_identifier": "minecraft:dirt_with_roots", "bedrock_data": 0, "firstBlockRuntimeId": 24902 }, "minecraft:mud": { "bedrock_identifier": "minecraft:mud", "bedrock_data": 0, "firstBlockRuntimeId": 24903 }, "minecraft:crimson_nylium": { "bedrock_identifier": "minecraft:crimson_nylium", "bedrock_data": 0, "firstBlockRuntimeId": 18608 }, "minecraft:warped_nylium": { "bedrock_identifier": "minecraft:warped_nylium", "bedrock_data": 0, "firstBlockRuntimeId": 18591 }, "minecraft:cobblestone": { "bedrock_identifier": "minecraft:cobblestone", "bedrock_data": 0, "firstBlockRuntimeId": 14 }, "minecraft:oak_planks": { "bedrock_identifier": "minecraft:oak_planks", "bedrock_data": 0, "firstBlockRuntimeId": 15 }, "minecraft:spruce_planks": { "bedrock_identifier": "minecraft:spruce_planks", "bedrock_data": 1, "firstBlockRuntimeId": 16 }, "minecraft:birch_planks": { "bedrock_identifier": "minecraft:birch_planks", "bedrock_data": 2, "firstBlockRuntimeId": 17 }, "minecraft:jungle_planks": { "bedrock_identifier": "minecraft:jungle_planks", "bedrock_data": 3, "firstBlockRuntimeId": 18 }, "minecraft:acacia_planks": { "bedrock_identifier": "minecraft:acacia_planks", "bedrock_data": 4, "firstBlockRuntimeId": 19 }, "minecraft:cherry_planks": { "bedrock_identifier": "minecraft:cherry_planks", "bedrock_data": 0, "firstBlockRuntimeId": 20 }, "minecraft:dark_oak_planks": { "bedrock_identifier": "minecraft:dark_oak_planks", "bedrock_data": 5, "firstBlockRuntimeId": 21 }, "minecraft:mangrove_planks": { "bedrock_identifier": "minecraft:mangrove_planks", "bedrock_data": 0, "firstBlockRuntimeId": 22 }, "minecraft:bamboo_planks": { "bedrock_identifier": "minecraft:bamboo_planks", "bedrock_data": 0, "firstBlockRuntimeId": 23 }, "minecraft:crimson_planks": { "bedrock_identifier": "minecraft:crimson_planks", "bedrock_data": 0, "firstBlockRuntimeId": 18666 }, "minecraft:warped_planks": { "bedrock_identifier": "minecraft:warped_planks", "bedrock_data": 0, "firstBlockRuntimeId": 18667 }, "minecraft:bamboo_mosaic": { "bedrock_identifier": "minecraft:bamboo_mosaic", "bedrock_data": 0, "firstBlockRuntimeId": 24 }, "minecraft:oak_sapling": { "bedrock_identifier": "minecraft:oak_sapling", "bedrock_data": 0, "firstBlockRuntimeId": 25, "lastBlockRuntimeId": 26 }, "minecraft:spruce_sapling": { "bedrock_identifier": "minecraft:spruce_sapling", "bedrock_data": 0, "firstBlockRuntimeId": 27, "lastBlockRuntimeId": 28 }, "minecraft:birch_sapling": { "bedrock_identifier": "minecraft:birch_sapling", "bedrock_data": 0, "firstBlockRuntimeId": 29, "lastBlockRuntimeId": 30 }, "minecraft:jungle_sapling": { "bedrock_identifier": "minecraft:jungle_sapling", "bedrock_data": 0, "firstBlockRuntimeId": 31, "lastBlockRuntimeId": 32 }, "minecraft:acacia_sapling": { "bedrock_identifier": "minecraft:acacia_sapling", "bedrock_data": 0, "firstBlockRuntimeId": 33, "lastBlockRuntimeId": 34 }, "minecraft:cherry_sapling": { "bedrock_identifier": "minecraft:cherry_sapling", "bedrock_data": 0, "firstBlockRuntimeId": 35, "lastBlockRuntimeId": 36 }, "minecraft:dark_oak_sapling": { "bedrock_identifier": "minecraft:dark_oak_sapling", "bedrock_data": 0, "firstBlockRuntimeId": 37, "lastBlockRuntimeId": 38 }, "minecraft:mangrove_propagule": { "bedrock_identifier": "minecraft:mangrove_propagule", "bedrock_data": 0, "firstBlockRuntimeId": 39, "lastBlockRuntimeId": 78 }, "minecraft:bedrock": { "bedrock_identifier": "minecraft:bedrock", "bedrock_data": 0, "firstBlockRuntimeId": 79 }, "minecraft:sand": { "bedrock_identifier": "minecraft:sand", "bedrock_data": 0, "firstBlockRuntimeId": 112 }, "minecraft:suspicious_sand": { "bedrock_identifier": "minecraft:suspicious_sand", "bedrock_data": 0, "firstBlockRuntimeId": 113, "lastBlockRuntimeId": 116 }, "minecraft:suspicious_gravel": { "bedrock_identifier": "minecraft:suspicious_gravel", "bedrock_data": 0, "firstBlockRuntimeId": 119, "lastBlockRuntimeId": 122 }, "minecraft:red_sand": { "bedrock_identifier": "minecraft:red_sand", "bedrock_data": 0, "firstBlockRuntimeId": 117 }, "minecraft:gravel": { "bedrock_identifier": "minecraft:gravel", "bedrock_data": 0, "firstBlockRuntimeId": 118 }, "minecraft:coal_ore": { "bedrock_identifier": "minecraft:coal_ore", "bedrock_data": 0, "firstBlockRuntimeId": 127 }, "minecraft:deepslate_coal_ore": { "bedrock_identifier": "minecraft:deepslate_coal_ore", "bedrock_data": 0, "firstBlockRuntimeId": 128 }, "minecraft:iron_ore": { "bedrock_identifier": "minecraft:iron_ore", "bedrock_data": 0, "firstBlockRuntimeId": 125 }, "minecraft:deepslate_iron_ore": { "bedrock_identifier": "minecraft:deepslate_iron_ore", "bedrock_data": 0, "firstBlockRuntimeId": 126 }, "minecraft:copper_ore": { "bedrock_identifier": "minecraft:copper_ore", "bedrock_data": 0, "firstBlockRuntimeId": 22942 }, "minecraft:deepslate_copper_ore": { "bedrock_identifier": "minecraft:deepslate_copper_ore", "bedrock_data": 0, "firstBlockRuntimeId": 22943 }, "minecraft:gold_ore": { "bedrock_identifier": "minecraft:gold_ore", "bedrock_data": 0, "firstBlockRuntimeId": 123 }, "minecraft:deepslate_gold_ore": { "bedrock_identifier": "minecraft:deepslate_gold_ore", "bedrock_data": 0, "firstBlockRuntimeId": 124 }, "minecraft:redstone_ore": { "bedrock_identifier": "minecraft:redstone_ore", "bedrock_data": 0, "firstBlockRuntimeId": 5734, "lastBlockRuntimeId": 5735 }, "minecraft:deepslate_redstone_ore": { "bedrock_identifier": "minecraft:deepslate_redstone_ore", "bedrock_data": 0, "firstBlockRuntimeId": 5736, "lastBlockRuntimeId": 5737 }, "minecraft:emerald_ore": { "bedrock_identifier": "minecraft:emerald_ore", "bedrock_data": 0, "firstBlockRuntimeId": 7511 }, "minecraft:deepslate_emerald_ore": { "bedrock_identifier": "minecraft:deepslate_emerald_ore", "bedrock_data": 0, "firstBlockRuntimeId": 7512 }, "minecraft:lapis_ore": { "bedrock_identifier": "minecraft:lapis_ore", "bedrock_data": 0, "firstBlockRuntimeId": 520 }, "minecraft:deepslate_lapis_ore": { "bedrock_identifier": "minecraft:deepslate_lapis_ore", "bedrock_data": 0, "firstBlockRuntimeId": 521 }, "minecraft:diamond_ore": { "bedrock_identifier": "minecraft:diamond_ore", "bedrock_data": 0, "firstBlockRuntimeId": 4274 }, "minecraft:deepslate_diamond_ore": { "bedrock_identifier": "minecraft:deepslate_diamond_ore", "bedrock_data": 0, "firstBlockRuntimeId": 4275 }, "minecraft:nether_gold_ore": { "bedrock_identifier": "minecraft:nether_gold_ore", "bedrock_data": 0, "firstBlockRuntimeId": 129 }, "minecraft:nether_quartz_ore": { "bedrock_identifier": "minecraft:quartz_ore", "bedrock_data": 0, "firstBlockRuntimeId": 9224 }, "minecraft:ancient_debris": { "bedrock_identifier": "minecraft:ancient_debris", "bedrock_data": 0, "firstBlockRuntimeId": 19448 }, "minecraft:coal_block": { "bedrock_identifier": "minecraft:coal_block", "bedrock_data": 0, "firstBlockRuntimeId": 10745 }, "minecraft:raw_iron_block": { "bedrock_identifier": "minecraft:raw_iron_block", "bedrock_data": 0, "firstBlockRuntimeId": 26558 }, "minecraft:raw_copper_block": { "bedrock_identifier": "minecraft:raw_copper_block", "bedrock_data": 0, "firstBlockRuntimeId": 26559 }, "minecraft:raw_gold_block": { "bedrock_identifier": "minecraft:raw_gold_block", "bedrock_data": 0, "firstBlockRuntimeId": 26560 }, "minecraft:heavy_core": { "bedrock_identifier": "minecraft:heavy_core", "bedrock_data": 0, "firstBlockRuntimeId": 26682, "lastBlockRuntimeId": 26683 }, "minecraft:amethyst_block": { "bedrock_identifier": "minecraft:amethyst_block", "bedrock_data": 0, "firstBlockRuntimeId": 21031 }, "minecraft:budding_amethyst": { "bedrock_identifier": "minecraft:budding_amethyst", "bedrock_data": 0, "firstBlockRuntimeId": 21032 }, "minecraft:iron_block": { "bedrock_identifier": "minecraft:iron_block", "bedrock_data": 0, "firstBlockRuntimeId": 2092 }, "minecraft:copper_block": { "bedrock_identifier": "minecraft:copper_block", "bedrock_data": 0, "firstBlockRuntimeId": 22938 }, "minecraft:gold_block": { "bedrock_identifier": "minecraft:gold_block", "bedrock_data": 0, "firstBlockRuntimeId": 2091 }, "minecraft:diamond_block": { "bedrock_identifier": "minecraft:diamond_block", "bedrock_data": 0, "firstBlockRuntimeId": 4276 }, "minecraft:netherite_block": { "bedrock_identifier": "minecraft:netherite_block", "bedrock_data": 0, "firstBlockRuntimeId": 19447 }, "minecraft:exposed_copper": { "bedrock_identifier": "minecraft:exposed_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22939 }, "minecraft:weathered_copper": { "bedrock_identifier": "minecraft:weathered_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22940 }, "minecraft:oxidized_copper": { "bedrock_identifier": "minecraft:oxidized_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22941 }, "minecraft:chiseled_copper": { "bedrock_identifier": "minecraft:chiseled_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22951 }, "minecraft:exposed_chiseled_copper": { "bedrock_identifier": "minecraft:exposed_chiseled_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22950 }, "minecraft:weathered_chiseled_copper": { "bedrock_identifier": "minecraft:weathered_chiseled_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22949 }, "minecraft:oxidized_chiseled_copper": { "bedrock_identifier": "minecraft:oxidized_chiseled_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22948 }, "minecraft:cut_copper": { "bedrock_identifier": "minecraft:cut_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22947 }, "minecraft:exposed_cut_copper": { "bedrock_identifier": "minecraft:exposed_cut_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22946 }, "minecraft:weathered_cut_copper": { "bedrock_identifier": "minecraft:weathered_cut_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22945 }, "minecraft:oxidized_cut_copper": { "bedrock_identifier": "minecraft:oxidized_cut_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22944 }, "minecraft:cut_copper_stairs": { "bedrock_identifier": "minecraft:cut_copper_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 23196, "lastBlockRuntimeId": 23275 }, "minecraft:exposed_cut_copper_stairs": { "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 23116, "lastBlockRuntimeId": 23195 }, "minecraft:weathered_cut_copper_stairs": { "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 23036, "lastBlockRuntimeId": 23115 }, "minecraft:oxidized_cut_copper_stairs": { "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 22956, "lastBlockRuntimeId": 23035 }, "minecraft:cut_copper_slab": { "bedrock_identifier": "minecraft:cut_copper_slab", "bedrock_data": 0, "firstBlockRuntimeId": 23294, "lastBlockRuntimeId": 23299 }, "minecraft:exposed_cut_copper_slab": { "bedrock_identifier": "minecraft:exposed_cut_copper_slab", "bedrock_data": 0, "firstBlockRuntimeId": 23288, "lastBlockRuntimeId": 23293 }, "minecraft:weathered_cut_copper_slab": { "bedrock_identifier": "minecraft:weathered_cut_copper_slab", "bedrock_data": 0, "firstBlockRuntimeId": 23282, "lastBlockRuntimeId": 23287 }, "minecraft:oxidized_cut_copper_slab": { "bedrock_identifier": "minecraft:oxidized_cut_copper_slab", "bedrock_data": 0, "firstBlockRuntimeId": 23276, "lastBlockRuntimeId": 23281 }, "minecraft:waxed_copper_block": { "bedrock_identifier": "minecraft:waxed_copper", "bedrock_data": 0, "firstBlockRuntimeId": 23300 }, "minecraft:waxed_exposed_copper": { "bedrock_identifier": "minecraft:waxed_exposed_copper", "bedrock_data": 0, "firstBlockRuntimeId": 23302 }, "minecraft:waxed_weathered_copper": { "bedrock_identifier": "minecraft:waxed_weathered_copper", "bedrock_data": 0, "firstBlockRuntimeId": 23301 }, "minecraft:waxed_oxidized_copper": { "bedrock_identifier": "minecraft:waxed_oxidized_copper", "bedrock_data": 0, "firstBlockRuntimeId": 23303 }, "minecraft:waxed_chiseled_copper": { "bedrock_identifier": "minecraft:waxed_chiseled_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22955 }, "minecraft:waxed_exposed_chiseled_copper": { "bedrock_identifier": "minecraft:waxed_exposed_chiseled_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22954 }, "minecraft:waxed_weathered_chiseled_copper": { "bedrock_identifier": "minecraft:waxed_weathered_chiseled_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22953 }, "minecraft:waxed_oxidized_chiseled_copper": { "bedrock_identifier": "minecraft:waxed_oxidized_chiseled_copper", "bedrock_data": 0, "firstBlockRuntimeId": 22952 }, "minecraft:waxed_cut_copper": { "bedrock_identifier": "minecraft:waxed_cut_copper", "bedrock_data": 0, "firstBlockRuntimeId": 23307 }, "minecraft:waxed_exposed_cut_copper": { "bedrock_identifier": "minecraft:waxed_exposed_cut_copper", "bedrock_data": 0, "firstBlockRuntimeId": 23306 }, "minecraft:waxed_weathered_cut_copper": { "bedrock_identifier": "minecraft:waxed_weathered_cut_copper", "bedrock_data": 0, "firstBlockRuntimeId": 23305 }, "minecraft:waxed_oxidized_cut_copper": { "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper", "bedrock_data": 0, "firstBlockRuntimeId": 23304 }, "minecraft:waxed_cut_copper_stairs": { "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 23548, "lastBlockRuntimeId": 23627 }, "minecraft:waxed_exposed_cut_copper_stairs": { "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 23468, "lastBlockRuntimeId": 23547 }, "minecraft:waxed_weathered_cut_copper_stairs": { "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 23388, "lastBlockRuntimeId": 23467 }, "minecraft:waxed_oxidized_cut_copper_stairs": { "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 23308, "lastBlockRuntimeId": 23387 }, "minecraft:waxed_cut_copper_slab": { "bedrock_identifier": "minecraft:waxed_cut_copper_slab", "bedrock_data": 0, "firstBlockRuntimeId": 23646, "lastBlockRuntimeId": 23651 }, "minecraft:waxed_exposed_cut_copper_slab": { "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_slab", "bedrock_data": 0, "firstBlockRuntimeId": 23640, "lastBlockRuntimeId": 23645 }, "minecraft:waxed_weathered_cut_copper_slab": { "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_slab", "bedrock_data": 0, "firstBlockRuntimeId": 23634, "lastBlockRuntimeId": 23639 }, "minecraft:waxed_oxidized_cut_copper_slab": { "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_slab", "bedrock_data": 0, "firstBlockRuntimeId": 23628, "lastBlockRuntimeId": 23633 }, "minecraft:oak_log": { "bedrock_identifier": "minecraft:oak_log", "bedrock_data": 0, "firstBlockRuntimeId": 130, "lastBlockRuntimeId": 132 }, "minecraft:spruce_log": { "bedrock_identifier": "minecraft:spruce_log", "bedrock_data": 1, "firstBlockRuntimeId": 133, "lastBlockRuntimeId": 135 }, "minecraft:birch_log": { "bedrock_identifier": "minecraft:birch_log", "bedrock_data": 2, "firstBlockRuntimeId": 136, "lastBlockRuntimeId": 138 }, "minecraft:jungle_log": { "bedrock_identifier": "minecraft:jungle_log", "bedrock_data": 3, "firstBlockRuntimeId": 139, "lastBlockRuntimeId": 141 }, "minecraft:acacia_log": { "bedrock_identifier": "minecraft:acacia_log", "bedrock_data": 0, "firstBlockRuntimeId": 142, "lastBlockRuntimeId": 144 }, "minecraft:cherry_log": { "bedrock_identifier": "minecraft:cherry_log", "bedrock_data": 0, "firstBlockRuntimeId": 145, "lastBlockRuntimeId": 147 }, "minecraft:dark_oak_log": { "bedrock_identifier": "minecraft:dark_oak_log", "bedrock_data": 1, "firstBlockRuntimeId": 148, "lastBlockRuntimeId": 150 }, "minecraft:mangrove_log": { "bedrock_identifier": "minecraft:mangrove_log", "bedrock_data": 0, "firstBlockRuntimeId": 151, "lastBlockRuntimeId": 153 }, "minecraft:mangrove_roots": { "bedrock_identifier": "minecraft:mangrove_roots", "bedrock_data": 0, "firstBlockRuntimeId": 154, "lastBlockRuntimeId": 155 }, "minecraft:muddy_mangrove_roots": { "bedrock_identifier": "minecraft:muddy_mangrove_roots", "bedrock_data": 0, "firstBlockRuntimeId": 156, "lastBlockRuntimeId": 158 }, "minecraft:crimson_stem": { "bedrock_identifier": "minecraft:crimson_stem", "bedrock_data": 0, "firstBlockRuntimeId": 18596, "lastBlockRuntimeId": 18598 }, "minecraft:warped_stem": { "bedrock_identifier": "minecraft:warped_stem", "bedrock_data": 0, "firstBlockRuntimeId": 18579, "lastBlockRuntimeId": 18581 }, "minecraft:bamboo_block": { "bedrock_identifier": "minecraft:bamboo_block", "bedrock_data": 0, "firstBlockRuntimeId": 159, "lastBlockRuntimeId": 161 }, "minecraft:stripped_oak_log": { "bedrock_identifier": "minecraft:stripped_oak_log", "bedrock_data": 0, "firstBlockRuntimeId": 180, "lastBlockRuntimeId": 182 }, "minecraft:stripped_spruce_log": { "bedrock_identifier": "minecraft:stripped_spruce_log", "bedrock_data": 0, "firstBlockRuntimeId": 162, "lastBlockRuntimeId": 164 }, "minecraft:stripped_birch_log": { "bedrock_identifier": "minecraft:stripped_birch_log", "bedrock_data": 0, "firstBlockRuntimeId": 165, "lastBlockRuntimeId": 167 }, "minecraft:stripped_jungle_log": { "bedrock_identifier": "minecraft:stripped_jungle_log", "bedrock_data": 0, "firstBlockRuntimeId": 168, "lastBlockRuntimeId": 170 }, "minecraft:stripped_acacia_log": { "bedrock_identifier": "minecraft:stripped_acacia_log", "bedrock_data": 0, "firstBlockRuntimeId": 171, "lastBlockRuntimeId": 173 }, "minecraft:stripped_cherry_log": { "bedrock_identifier": "minecraft:stripped_cherry_log", "bedrock_data": 0, "firstBlockRuntimeId": 174, "lastBlockRuntimeId": 176 }, "minecraft:stripped_dark_oak_log": { "bedrock_identifier": "minecraft:stripped_dark_oak_log", "bedrock_data": 0, "firstBlockRuntimeId": 177, "lastBlockRuntimeId": 179 }, "minecraft:stripped_mangrove_log": { "bedrock_identifier": "minecraft:stripped_mangrove_log", "bedrock_data": 0, "firstBlockRuntimeId": 183, "lastBlockRuntimeId": 185 }, "minecraft:stripped_crimson_stem": { "bedrock_identifier": "minecraft:stripped_crimson_stem", "bedrock_data": 0, "firstBlockRuntimeId": 18599, "lastBlockRuntimeId": 18601 }, "minecraft:stripped_warped_stem": { "bedrock_identifier": "minecraft:stripped_warped_stem", "bedrock_data": 0, "firstBlockRuntimeId": 18582, "lastBlockRuntimeId": 18584 }, "minecraft:stripped_oak_wood": { "bedrock_identifier": "minecraft:stripped_oak_wood", "bedrock_data": 8, "firstBlockRuntimeId": 213, "lastBlockRuntimeId": 215 }, "minecraft:stripped_spruce_wood": { "bedrock_identifier": "minecraft:stripped_spruce_wood", "bedrock_data": 9, "firstBlockRuntimeId": 216, "lastBlockRuntimeId": 218 }, "minecraft:stripped_birch_wood": { "bedrock_identifier": "minecraft:stripped_birch_wood", "bedrock_data": 10, "firstBlockRuntimeId": 219, "lastBlockRuntimeId": 221 }, "minecraft:stripped_jungle_wood": { "bedrock_identifier": "minecraft:stripped_jungle_wood", "bedrock_data": 11, "firstBlockRuntimeId": 222, "lastBlockRuntimeId": 224 }, "minecraft:stripped_acacia_wood": { "bedrock_identifier": "minecraft:stripped_acacia_wood", "bedrock_data": 12, "firstBlockRuntimeId": 225, "lastBlockRuntimeId": 227 }, "minecraft:stripped_cherry_wood": { "bedrock_identifier": "minecraft:stripped_cherry_wood", "bedrock_data": 0, "firstBlockRuntimeId": 228, "lastBlockRuntimeId": 230 }, "minecraft:stripped_dark_oak_wood": { "bedrock_identifier": "minecraft:stripped_dark_oak_wood", "bedrock_data": 13, "firstBlockRuntimeId": 231, "lastBlockRuntimeId": 233 }, "minecraft:stripped_mangrove_wood": { "bedrock_identifier": "minecraft:stripped_mangrove_wood", "bedrock_data": 0, "firstBlockRuntimeId": 234, "lastBlockRuntimeId": 236 }, "minecraft:stripped_crimson_hyphae": { "bedrock_identifier": "minecraft:stripped_crimson_hyphae", "bedrock_data": 0, "firstBlockRuntimeId": 18605, "lastBlockRuntimeId": 18607 }, "minecraft:stripped_warped_hyphae": { "bedrock_identifier": "minecraft:stripped_warped_hyphae", "bedrock_data": 0, "firstBlockRuntimeId": 18588, "lastBlockRuntimeId": 18590 }, "minecraft:stripped_bamboo_block": { "bedrock_identifier": "minecraft:stripped_bamboo_block", "bedrock_data": 0, "firstBlockRuntimeId": 186, "lastBlockRuntimeId": 188 }, "minecraft:oak_wood": { "bedrock_identifier": "minecraft:oak_wood", "bedrock_data": 0, "firstBlockRuntimeId": 189, "lastBlockRuntimeId": 191 }, "minecraft:spruce_wood": { "bedrock_identifier": "minecraft:spruce_wood", "bedrock_data": 1, "firstBlockRuntimeId": 192, "lastBlockRuntimeId": 194 }, "minecraft:birch_wood": { "bedrock_identifier": "minecraft:birch_wood", "bedrock_data": 2, "firstBlockRuntimeId": 195, "lastBlockRuntimeId": 197 }, "minecraft:jungle_wood": { "bedrock_identifier": "minecraft:jungle_wood", "bedrock_data": 3, "firstBlockRuntimeId": 198, "lastBlockRuntimeId": 200 }, "minecraft:acacia_wood": { "bedrock_identifier": "minecraft:acacia_wood", "bedrock_data": 4, "firstBlockRuntimeId": 201, "lastBlockRuntimeId": 203 }, "minecraft:cherry_wood": { "bedrock_identifier": "minecraft:cherry_wood", "bedrock_data": 0, "firstBlockRuntimeId": 204, "lastBlockRuntimeId": 206 }, "minecraft:dark_oak_wood": { "bedrock_identifier": "minecraft:dark_oak_wood", "bedrock_data": 5, "firstBlockRuntimeId": 207, "lastBlockRuntimeId": 209 }, "minecraft:mangrove_wood": { "bedrock_identifier": "minecraft:mangrove_wood", "bedrock_data": 0, "firstBlockRuntimeId": 210, "lastBlockRuntimeId": 212 }, "minecraft:crimson_hyphae": { "bedrock_identifier": "minecraft:crimson_hyphae", "bedrock_data": 0, "firstBlockRuntimeId": 18602, "lastBlockRuntimeId": 18604 }, "minecraft:warped_hyphae": { "bedrock_identifier": "minecraft:warped_hyphae", "bedrock_data": 0, "firstBlockRuntimeId": 18585, "lastBlockRuntimeId": 18587 }, "minecraft:oak_leaves": { "bedrock_identifier": "minecraft:oak_leaves", "bedrock_data": 0, "firstBlockRuntimeId": 237, "lastBlockRuntimeId": 264 }, "minecraft:spruce_leaves": { "bedrock_identifier": "minecraft:spruce_leaves", "bedrock_data": 1, "firstBlockRuntimeId": 265, "lastBlockRuntimeId": 292 }, "minecraft:birch_leaves": { "bedrock_identifier": "minecraft:birch_leaves", "bedrock_data": 2, "firstBlockRuntimeId": 293, "lastBlockRuntimeId": 320 }, "minecraft:jungle_leaves": { "bedrock_identifier": "minecraft:jungle_leaves", "bedrock_data": 3, "firstBlockRuntimeId": 321, "lastBlockRuntimeId": 348 }, "minecraft:acacia_leaves": { "bedrock_identifier": "minecraft:acacia_leaves", "bedrock_data": 0, "firstBlockRuntimeId": 349, "lastBlockRuntimeId": 376 }, "minecraft:cherry_leaves": { "bedrock_identifier": "minecraft:cherry_leaves", "bedrock_data": 0, "firstBlockRuntimeId": 377, "lastBlockRuntimeId": 404 }, "minecraft:dark_oak_leaves": { "bedrock_identifier": "minecraft:dark_oak_leaves", "bedrock_data": 1, "firstBlockRuntimeId": 405, "lastBlockRuntimeId": 432 }, "minecraft:mangrove_leaves": { "bedrock_identifier": "minecraft:mangrove_leaves", "bedrock_data": 0, "firstBlockRuntimeId": 433, "lastBlockRuntimeId": 460 }, "minecraft:azalea_leaves": { "bedrock_identifier": "minecraft:azalea_leaves", "bedrock_data": 0, "firstBlockRuntimeId": 461, "lastBlockRuntimeId": 488 }, "minecraft:flowering_azalea_leaves": { "bedrock_identifier": "minecraft:azalea_leaves_flowered", "bedrock_data": 0, "firstBlockRuntimeId": 489, "lastBlockRuntimeId": 516 }, "minecraft:sponge": { "bedrock_identifier": "minecraft:sponge", "bedrock_data": 0, "firstBlockRuntimeId": 517 }, "minecraft:wet_sponge": { "bedrock_identifier": "minecraft:sponge", "bedrock_data": 1, "firstBlockRuntimeId": 518 }, "minecraft:glass": { "bedrock_identifier": "minecraft:glass", "bedrock_data": 0, "firstBlockRuntimeId": 519 }, "minecraft:tinted_glass": { "bedrock_identifier": "minecraft:tinted_glass", "bedrock_data": 0, "firstBlockRuntimeId": 22317 }, "minecraft:lapis_block": { "bedrock_identifier": "minecraft:lapis_block", "bedrock_data": 0, "firstBlockRuntimeId": 522 }, "minecraft:sandstone": { "bedrock_identifier": "minecraft:sandstone", "bedrock_data": 0, "firstBlockRuntimeId": 535 }, "minecraft:chiseled_sandstone": { "bedrock_identifier": "minecraft:chiseled_sandstone", "bedrock_data": 0, "firstBlockRuntimeId": 536 }, "minecraft:cut_sandstone": { "bedrock_identifier": "minecraft:cut_sandstone", "bedrock_data": 0, "firstBlockRuntimeId": 537 }, "minecraft:cobweb": { "bedrock_identifier": "minecraft:web", "bedrock_data": 0, "firstBlockRuntimeId": 2004 }, "minecraft:short_grass": { "bedrock_identifier": "minecraft:short_grass", "bedrock_data": 0, "firstBlockRuntimeId": 2005 }, "minecraft:fern": { "bedrock_identifier": "minecraft:fern", "bedrock_data": 0, "firstBlockRuntimeId": 2006 }, "minecraft:azalea": { "bedrock_identifier": "minecraft:azalea", "bedrock_data": 0, "firstBlockRuntimeId": 24824 }, "minecraft:flowering_azalea": { "bedrock_identifier": "minecraft:flowering_azalea", "bedrock_data": 0, "firstBlockRuntimeId": 24825 }, "minecraft:dead_bush": { "bedrock_identifier": "minecraft:deadbush", "bedrock_data": 0, "firstBlockRuntimeId": 2007 }, "minecraft:seagrass": { "bedrock_identifier": "minecraft:seagrass", "bedrock_data": 0, "firstBlockRuntimeId": 2008 }, "minecraft:sea_pickle": { "bedrock_identifier": "minecraft:sea_pickle", "bedrock_data": 0, "firstBlockRuntimeId": 12933, "lastBlockRuntimeId": 12940 }, "minecraft:white_wool": { "bedrock_identifier": "minecraft:white_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2047 }, "minecraft:orange_wool": { "bedrock_identifier": "minecraft:orange_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2048 }, "minecraft:magenta_wool": { "bedrock_identifier": "minecraft:magenta_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2049 }, "minecraft:light_blue_wool": { "bedrock_identifier": "minecraft:light_blue_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2050 }, "minecraft:yellow_wool": { "bedrock_identifier": "minecraft:yellow_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2051 }, "minecraft:lime_wool": { "bedrock_identifier": "minecraft:lime_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2052 }, "minecraft:pink_wool": { "bedrock_identifier": "minecraft:pink_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2053 }, "minecraft:gray_wool": { "bedrock_identifier": "minecraft:gray_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2054 }, "minecraft:light_gray_wool": { "bedrock_identifier": "minecraft:light_gray_wool", "bedrock_data": 8, "firstBlockRuntimeId": 2055 }, "minecraft:cyan_wool": { "bedrock_identifier": "minecraft:cyan_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2056 }, "minecraft:purple_wool": { "bedrock_identifier": "minecraft:purple_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2057 }, "minecraft:blue_wool": { "bedrock_identifier": "minecraft:blue_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2058 }, "minecraft:brown_wool": { "bedrock_identifier": "minecraft:brown_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2059 }, "minecraft:green_wool": { "bedrock_identifier": "minecraft:green_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2060 }, "minecraft:red_wool": { "bedrock_identifier": "minecraft:red_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2061 }, "minecraft:black_wool": { "bedrock_identifier": "minecraft:black_wool", "bedrock_data": 0, "firstBlockRuntimeId": 2062 }, "minecraft:dandelion": { "bedrock_identifier": "minecraft:dandelion", "bedrock_data": 0, "firstBlockRuntimeId": 2075 }, "minecraft:poppy": { "bedrock_identifier": "minecraft:poppy", "bedrock_data": 0, "firstBlockRuntimeId": 2077 }, "minecraft:blue_orchid": { "bedrock_identifier": "minecraft:blue_orchid", "bedrock_data": 0, "firstBlockRuntimeId": 2078 }, "minecraft:allium": { "bedrock_identifier": "minecraft:allium", "bedrock_data": 0, "firstBlockRuntimeId": 2079 }, "minecraft:azure_bluet": { "bedrock_identifier": "minecraft:azure_bluet", "bedrock_data": 0, "firstBlockRuntimeId": 2080 }, "minecraft:red_tulip": { "bedrock_identifier": "minecraft:red_tulip", "bedrock_data": 0, "firstBlockRuntimeId": 2081 }, "minecraft:orange_tulip": { "bedrock_identifier": "minecraft:orange_tulip", "bedrock_data": 0, "firstBlockRuntimeId": 2082 }, "minecraft:white_tulip": { "bedrock_identifier": "minecraft:white_tulip", "bedrock_data": 0, "firstBlockRuntimeId": 2083 }, "minecraft:pink_tulip": { "bedrock_identifier": "minecraft:pink_tulip", "bedrock_data": 0, "firstBlockRuntimeId": 2084 }, "minecraft:oxeye_daisy": { "bedrock_identifier": "minecraft:oxeye_daisy", "bedrock_data": 0, "firstBlockRuntimeId": 2085 }, "minecraft:cornflower": { "bedrock_identifier": "minecraft:cornflower", "bedrock_data": 0, "firstBlockRuntimeId": 2086 }, "minecraft:lily_of_the_valley": { "bedrock_identifier": "minecraft:lily_of_the_valley", "bedrock_data": 0, "firstBlockRuntimeId": 2088 }, "minecraft:wither_rose": { "bedrock_identifier": "minecraft:wither_rose", "bedrock_data": 0, "firstBlockRuntimeId": 2087 }, "minecraft:torchflower": { "bedrock_identifier": "minecraft:torchflower", "bedrock_data": 0, "firstBlockRuntimeId": 2076 }, "minecraft:pitcher_plant": { "bedrock_identifier": "minecraft:pitcher_plant", "bedrock_data": 0, "firstBlockRuntimeId": 12507, "lastBlockRuntimeId": 12508 }, "minecraft:spore_blossom": { "bedrock_identifier": "minecraft:spore_blossom", "bedrock_data": 0, "firstBlockRuntimeId": 24823 }, "minecraft:brown_mushroom": { "bedrock_identifier": "minecraft:brown_mushroom", "bedrock_data": 0, "firstBlockRuntimeId": 2089 }, "minecraft:red_mushroom": { "bedrock_identifier": "minecraft:red_mushroom", "bedrock_data": 0, "firstBlockRuntimeId": 2090 }, "minecraft:crimson_fungus": { "bedrock_identifier": "minecraft:crimson_fungus", "bedrock_data": 0, "firstBlockRuntimeId": 18609 }, "minecraft:warped_fungus": { "bedrock_identifier": "minecraft:warped_fungus", "bedrock_data": 0, "firstBlockRuntimeId": 18592 }, "minecraft:crimson_roots": { "bedrock_identifier": "minecraft:crimson_roots", "bedrock_data": 0, "firstBlockRuntimeId": 18665 }, "minecraft:warped_roots": { "bedrock_identifier": "minecraft:warped_roots", "bedrock_data": 0, "firstBlockRuntimeId": 18594 }, "minecraft:nether_sprouts": { "bedrock_identifier": "minecraft:nether_sprouts", "bedrock_data": 0, "firstBlockRuntimeId": 18595 }, "minecraft:weeping_vines": { "bedrock_identifier": "minecraft:weeping_vines", "bedrock_data": 0, "firstBlockRuntimeId": 18611, "lastBlockRuntimeId": 18636 }, "minecraft:twisting_vines": { "bedrock_identifier": "minecraft:twisting_vines", "bedrock_data": 0, "firstBlockRuntimeId": 18638, "lastBlockRuntimeId": 18663 }, "minecraft:sugar_cane": { "bedrock_identifier": "minecraft:sugar_cane", "bedrock_data": 0, "firstBlockRuntimeId": 5799, "lastBlockRuntimeId": 5814 }, "minecraft:kelp": { "bedrock_identifier": "minecraft:kelp", "bedrock_data": 0, "firstBlockRuntimeId": 12760, "lastBlockRuntimeId": 12785 }, "minecraft:moss_carpet": { "bedrock_identifier": "minecraft:moss_carpet", "bedrock_data": 0, "firstBlockRuntimeId": 24826 }, "minecraft:pink_petals": { "bedrock_identifier": "minecraft:pink_petals", "bedrock_data": 0, "firstBlockRuntimeId": 24827, "lastBlockRuntimeId": 24842 }, "minecraft:moss_block": { "bedrock_identifier": "minecraft:moss_block", "bedrock_data": 0, "firstBlockRuntimeId": 24843 }, "minecraft:hanging_roots": { "bedrock_identifier": "minecraft:hanging_roots", "bedrock_data": 0, "firstBlockRuntimeId": 24900, "lastBlockRuntimeId": 24901 }, "minecraft:big_dripleaf": { "bedrock_identifier": "minecraft:big_dripleaf", "bedrock_data": 0, "firstBlockRuntimeId": 24844, "lastBlockRuntimeId": 24875 }, "minecraft:small_dripleaf": { "bedrock_identifier": "minecraft:small_dripleaf_block", "bedrock_data": 0, "firstBlockRuntimeId": 24884, "lastBlockRuntimeId": 24899 }, "minecraft:bamboo": { "bedrock_identifier": "minecraft:bamboo", "bedrock_data": 0, "firstBlockRuntimeId": 12945, "lastBlockRuntimeId": 12956 }, "minecraft:oak_slab": { "bedrock_identifier": "minecraft:oak_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11162, "lastBlockRuntimeId": 11167 }, "minecraft:spruce_slab": { "bedrock_identifier": "minecraft:spruce_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11168, "lastBlockRuntimeId": 11173 }, "minecraft:birch_slab": { "bedrock_identifier": "minecraft:birch_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11174, "lastBlockRuntimeId": 11179 }, "minecraft:jungle_slab": { "bedrock_identifier": "minecraft:jungle_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11180, "lastBlockRuntimeId": 11185 }, "minecraft:acacia_slab": { "bedrock_identifier": "minecraft:acacia_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11186, "lastBlockRuntimeId": 11191 }, "minecraft:cherry_slab": { "bedrock_identifier": "minecraft:cherry_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11192, "lastBlockRuntimeId": 11197 }, "minecraft:dark_oak_slab": { "bedrock_identifier": "minecraft:dark_oak_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11198, "lastBlockRuntimeId": 11203 }, "minecraft:mangrove_slab": { "bedrock_identifier": "minecraft:mangrove_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11204, "lastBlockRuntimeId": 11209 }, "minecraft:bamboo_slab": { "bedrock_identifier": "minecraft:bamboo_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11210, "lastBlockRuntimeId": 11215 }, "minecraft:bamboo_mosaic_slab": { "bedrock_identifier": "minecraft:bamboo_mosaic_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11216, "lastBlockRuntimeId": 11221 }, "minecraft:crimson_slab": { "bedrock_identifier": "minecraft:crimson_slab", "bedrock_data": 0, "firstBlockRuntimeId": 18668, "lastBlockRuntimeId": 18673 }, "minecraft:warped_slab": { "bedrock_identifier": "minecraft:warped_slab", "bedrock_data": 0, "firstBlockRuntimeId": 18674, "lastBlockRuntimeId": 18679 }, "minecraft:stone_slab": { "bedrock_identifier": "minecraft:normal_stone_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11222, "lastBlockRuntimeId": 11227 }, "minecraft:smooth_stone_slab": { "bedrock_identifier": "minecraft:smooth_stone_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11228, "lastBlockRuntimeId": 11233 }, "minecraft:sandstone_slab": { "bedrock_identifier": "minecraft:sandstone_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11234, "lastBlockRuntimeId": 11239 }, "minecraft:cut_sandstone_slab": { "bedrock_identifier": "minecraft:cut_sandstone_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11240, "lastBlockRuntimeId": 11245 }, "minecraft:petrified_oak_slab": { "bedrock_identifier": "minecraft:petrified_oak_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11246, "lastBlockRuntimeId": 11251 }, "minecraft:cobblestone_slab": { "bedrock_identifier": "minecraft:cobblestone_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11252, "lastBlockRuntimeId": 11257 }, "minecraft:brick_slab": { "bedrock_identifier": "minecraft:brick_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11258, "lastBlockRuntimeId": 11263 }, "minecraft:stone_brick_slab": { "bedrock_identifier": "minecraft:stone_brick_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11264, "lastBlockRuntimeId": 11269 }, "minecraft:mud_brick_slab": { "bedrock_identifier": "minecraft:mud_brick_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11270, "lastBlockRuntimeId": 11275 }, "minecraft:nether_brick_slab": { "bedrock_identifier": "minecraft:nether_brick_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11276, "lastBlockRuntimeId": 11281 }, "minecraft:quartz_slab": { "bedrock_identifier": "minecraft:quartz_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11282, "lastBlockRuntimeId": 11287 }, "minecraft:red_sandstone_slab": { "bedrock_identifier": "minecraft:red_sandstone_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11288, "lastBlockRuntimeId": 11293 }, "minecraft:cut_red_sandstone_slab": { "bedrock_identifier": "minecraft:cut_red_sandstone_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11294, "lastBlockRuntimeId": 11299 }, "minecraft:purpur_slab": { "bedrock_identifier": "minecraft:purpur_slab", "bedrock_data": 0, "firstBlockRuntimeId": 11300, "lastBlockRuntimeId": 11305 }, "minecraft:prismarine_slab": { "bedrock_identifier": "minecraft:prismarine_slab", "bedrock_data": 0, "firstBlockRuntimeId": 10706, "lastBlockRuntimeId": 10711 }, "minecraft:prismarine_brick_slab": { "bedrock_identifier": "minecraft:prismarine_brick_slab", "bedrock_data": 0, "firstBlockRuntimeId": 10712, "lastBlockRuntimeId": 10717 }, "minecraft:dark_prismarine_slab": { "bedrock_identifier": "minecraft:dark_prismarine_slab", "bedrock_data": 0, "firstBlockRuntimeId": 10718, "lastBlockRuntimeId": 10723 }, "minecraft:smooth_quartz": { "bedrock_identifier": "minecraft:smooth_quartz", "bedrock_data": 0, "firstBlockRuntimeId": 11308 }, "minecraft:smooth_red_sandstone": { "bedrock_identifier": "minecraft:smooth_red_sandstone", "bedrock_data": 0, "firstBlockRuntimeId": 11309 }, "minecraft:smooth_sandstone": { "bedrock_identifier": "minecraft:smooth_sandstone", "bedrock_data": 0, "firstBlockRuntimeId": 11307 }, "minecraft:smooth_stone": { "bedrock_identifier": "minecraft:smooth_stone", "bedrock_data": 0, "firstBlockRuntimeId": 11306 }, "minecraft:bricks": { "bedrock_identifier": "minecraft:brick_block", "bedrock_data": 0, "firstBlockRuntimeId": 2093 }, "minecraft:bookshelf": { "bedrock_identifier": "minecraft:bookshelf", "bedrock_data": 0, "firstBlockRuntimeId": 2096 }, "minecraft:chiseled_bookshelf": { "bedrock_identifier": "minecraft:chiseled_bookshelf", "bedrock_data": 0, "firstBlockRuntimeId": 2097, "lastBlockRuntimeId": 2352 }, "minecraft:decorated_pot": { "bedrock_identifier": "minecraft:decorated_pot", "bedrock_data": 0, "firstBlockRuntimeId": 26574, "lastBlockRuntimeId": 26589 }, "minecraft:mossy_cobblestone": { "bedrock_identifier": "minecraft:mossy_cobblestone", "bedrock_data": 0, "firstBlockRuntimeId": 2353 }, "minecraft:obsidian": { "bedrock_identifier": "minecraft:obsidian", "bedrock_data": 0, "firstBlockRuntimeId": 2354 }, "minecraft:torch": { "bedrock_identifier": "minecraft:torch", "bedrock_data": 0, "firstBlockRuntimeId": 2355 }, "minecraft:end_rod": { "bedrock_identifier": "minecraft:end_rod", "bedrock_data": 0, "firstBlockRuntimeId": 12334, "lastBlockRuntimeId": 12339 }, "minecraft:chorus_plant": { "bedrock_identifier": "minecraft:chorus_plant", "bedrock_data": 0, "firstBlockRuntimeId": 12340, "lastBlockRuntimeId": 12403 }, "minecraft:chorus_flower": { "bedrock_identifier": "minecraft:chorus_flower", "bedrock_data": 0, "firstBlockRuntimeId": 12404, "lastBlockRuntimeId": 12409 }, "minecraft:purpur_block": { "bedrock_identifier": "minecraft:purpur_block", "bedrock_data": 0, "firstBlockRuntimeId": 12410 }, "minecraft:purpur_pillar": { "bedrock_identifier": "minecraft:purpur_block", "bedrock_data": 2, "firstBlockRuntimeId": 12411, "lastBlockRuntimeId": 12413 }, "minecraft:purpur_stairs": { "bedrock_identifier": "minecraft:purpur_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 12414, "lastBlockRuntimeId": 12493 }, "minecraft:spawner": { "bedrock_identifier": "minecraft:mob_spawner", "bedrock_data": 0, "firstBlockRuntimeId": 2873 }, "minecraft:chest": { "bedrock_identifier": "minecraft:chest", "bedrock_data": 0, "firstBlockRuntimeId": 2954, "lastBlockRuntimeId": 2977 }, "minecraft:crafting_table": { "bedrock_identifier": "minecraft:crafting_table", "bedrock_data": 0, "firstBlockRuntimeId": 4277 }, "minecraft:farmland": { "bedrock_identifier": "minecraft:farmland", "bedrock_data": 0, "firstBlockRuntimeId": 4286, "lastBlockRuntimeId": 4293 }, "minecraft:furnace": { "bedrock_identifier": "minecraft:furnace", "bedrock_data": 0, "firstBlockRuntimeId": 4294, "lastBlockRuntimeId": 4301 }, "minecraft:ladder": { "bedrock_identifier": "minecraft:ladder", "bedrock_data": 0, "firstBlockRuntimeId": 4654, "lastBlockRuntimeId": 4661 }, "minecraft:cobblestone_stairs": { "bedrock_identifier": "minecraft:stone_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 4682, "lastBlockRuntimeId": 4761 }, "minecraft:snow": { "bedrock_identifier": "minecraft:snow_layer", "bedrock_data": 0, "firstBlockRuntimeId": 5772, "lastBlockRuntimeId": 5779 }, "minecraft:ice": { "bedrock_identifier": "minecraft:ice", "bedrock_data": 0, "firstBlockRuntimeId": 5780 }, "minecraft:snow_block": { "bedrock_identifier": "minecraft:snow", "bedrock_data": 0, "firstBlockRuntimeId": 5781 }, "minecraft:cactus": { "bedrock_identifier": "minecraft:cactus", "bedrock_data": 0, "firstBlockRuntimeId": 5782, "lastBlockRuntimeId": 5797 }, "minecraft:clay": { "bedrock_identifier": "minecraft:clay", "bedrock_data": 0, "firstBlockRuntimeId": 5798 }, "minecraft:jukebox": { "bedrock_identifier": "minecraft:jukebox", "bedrock_data": 0, "firstBlockRuntimeId": 5815, "lastBlockRuntimeId": 5816 }, "minecraft:oak_fence": { "bedrock_identifier": "minecraft:oak_fence", "bedrock_data": 0, "firstBlockRuntimeId": 5817, "lastBlockRuntimeId": 5848 }, "minecraft:spruce_fence": { "bedrock_identifier": "minecraft:spruce_fence", "bedrock_data": 1, "firstBlockRuntimeId": 11566, "lastBlockRuntimeId": 11597 }, "minecraft:birch_fence": { "bedrock_identifier": "minecraft:birch_fence", "bedrock_data": 2, "firstBlockRuntimeId": 11598, "lastBlockRuntimeId": 11629 }, "minecraft:jungle_fence": { "bedrock_identifier": "minecraft:jungle_fence", "bedrock_data": 3, "firstBlockRuntimeId": 11630, "lastBlockRuntimeId": 11661 }, "minecraft:acacia_fence": { "bedrock_identifier": "minecraft:acacia_fence", "bedrock_data": 4, "firstBlockRuntimeId": 11662, "lastBlockRuntimeId": 11693 }, "minecraft:cherry_fence": { "bedrock_identifier": "minecraft:cherry_fence", "bedrock_data": 0, "firstBlockRuntimeId": 11694, "lastBlockRuntimeId": 11725 }, "minecraft:dark_oak_fence": { "bedrock_identifier": "minecraft:dark_oak_fence", "bedrock_data": 5, "firstBlockRuntimeId": 11726, "lastBlockRuntimeId": 11757 }, "minecraft:mangrove_fence": { "bedrock_identifier": "minecraft:mangrove_fence", "bedrock_data": 0, "firstBlockRuntimeId": 11758, "lastBlockRuntimeId": 11789 }, "minecraft:bamboo_fence": { "bedrock_identifier": "minecraft:bamboo_fence", "bedrock_data": 0, "firstBlockRuntimeId": 11790, "lastBlockRuntimeId": 11821 }, "minecraft:crimson_fence": { "bedrock_identifier": "minecraft:crimson_fence", "bedrock_data": 0, "firstBlockRuntimeId": 18684, "lastBlockRuntimeId": 18715 }, "minecraft:warped_fence": { "bedrock_identifier": "minecraft:warped_fence", "bedrock_data": 0, "firstBlockRuntimeId": 18716, "lastBlockRuntimeId": 18747 }, "minecraft:pumpkin": { "bedrock_identifier": "minecraft:pumpkin", "bedrock_data": 0, "firstBlockRuntimeId": 6811 }, "minecraft:carved_pumpkin": { "bedrock_identifier": "minecraft:carved_pumpkin", "bedrock_data": 0, "firstBlockRuntimeId": 5866, "lastBlockRuntimeId": 5869 }, "minecraft:jack_o_lantern": { "bedrock_identifier": "minecraft:lit_pumpkin", "bedrock_data": 0, "firstBlockRuntimeId": 5870, "lastBlockRuntimeId": 5873 }, "minecraft:netherrack": { "bedrock_identifier": "minecraft:netherrack", "bedrock_data": 0, "firstBlockRuntimeId": 5849 }, "minecraft:soul_sand": { "bedrock_identifier": "minecraft:soul_sand", "bedrock_data": 0, "firstBlockRuntimeId": 5850 }, "minecraft:soul_soil": { "bedrock_identifier": "minecraft:soul_soil", "bedrock_data": 0, "firstBlockRuntimeId": 5851 }, "minecraft:basalt": { "bedrock_identifier": "minecraft:basalt", "bedrock_data": 0, "firstBlockRuntimeId": 5852, "lastBlockRuntimeId": 5854 }, "minecraft:polished_basalt": { "bedrock_identifier": "minecraft:polished_basalt", "bedrock_data": 0, "firstBlockRuntimeId": 5855, "lastBlockRuntimeId": 5857 }, "minecraft:smooth_basalt": { "bedrock_identifier": "minecraft:smooth_basalt", "bedrock_data": 0, "firstBlockRuntimeId": 26557 }, "minecraft:soul_torch": { "bedrock_identifier": "minecraft:soul_torch", "bedrock_data": 0, "firstBlockRuntimeId": 5858 }, "minecraft:glowstone": { "bedrock_identifier": "minecraft:glowstone", "bedrock_data": 0, "firstBlockRuntimeId": 5863 }, "minecraft:infested_stone": { "bedrock_identifier": "minecraft:infested_stone", "bedrock_data": 0, "firstBlockRuntimeId": 6543 }, "minecraft:infested_cobblestone": { "bedrock_identifier": "minecraft:infested_cobblestone", "bedrock_data": 0, "firstBlockRuntimeId": 6544 }, "minecraft:infested_stone_bricks": { "bedrock_identifier": "minecraft:infested_stone_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 6545 }, "minecraft:infested_mossy_stone_bricks": { "bedrock_identifier": "minecraft:infested_mossy_stone_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 6546 }, "minecraft:infested_cracked_stone_bricks": { "bedrock_identifier": "minecraft:infested_cracked_stone_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 6547 }, "minecraft:infested_chiseled_stone_bricks": { "bedrock_identifier": "minecraft:infested_chiseled_stone_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 6548 }, "minecraft:infested_deepslate": { "bedrock_identifier": "minecraft:infested_deepslate", "bedrock_data": 0, "firstBlockRuntimeId": 26554, "lastBlockRuntimeId": 26556 }, "minecraft:stone_bricks": { "bedrock_identifier": "minecraft:stone_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 6537 }, "minecraft:mossy_stone_bricks": { "bedrock_identifier": "minecraft:mossy_stone_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 6538 }, "minecraft:cracked_stone_bricks": { "bedrock_identifier": "minecraft:cracked_stone_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 6539 }, "minecraft:chiseled_stone_bricks": { "bedrock_identifier": "minecraft:chiseled_stone_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 6540 }, "minecraft:packed_mud": { "bedrock_identifier": "minecraft:packed_mud", "bedrock_data": 0, "firstBlockRuntimeId": 6541 }, "minecraft:mud_bricks": { "bedrock_identifier": "minecraft:mud_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 6542 }, "minecraft:deepslate_bricks": { "bedrock_identifier": "minecraft:deepslate_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 26140 }, "minecraft:cracked_deepslate_bricks": { "bedrock_identifier": "minecraft:cracked_deepslate_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 26552 }, "minecraft:deepslate_tiles": { "bedrock_identifier": "minecraft:deepslate_tiles", "bedrock_data": 0, "firstBlockRuntimeId": 25729 }, "minecraft:cracked_deepslate_tiles": { "bedrock_identifier": "minecraft:cracked_deepslate_tiles", "bedrock_data": 0, "firstBlockRuntimeId": 26553 }, "minecraft:chiseled_deepslate": { "bedrock_identifier": "minecraft:chiseled_deepslate", "bedrock_data": 0, "firstBlockRuntimeId": 26551 }, "minecraft:reinforced_deepslate": { "bedrock_identifier": "minecraft:reinforced_deepslate", "bedrock_data": 0, "firstBlockRuntimeId": 26573 }, "minecraft:brown_mushroom_block": { "bedrock_identifier": "minecraft:brown_mushroom_block", "bedrock_data": 14, "firstBlockRuntimeId": 6549, "lastBlockRuntimeId": 6612 }, "minecraft:red_mushroom_block": { "bedrock_identifier": "minecraft:red_mushroom_block", "bedrock_data": 14, "firstBlockRuntimeId": 6613, "lastBlockRuntimeId": 6676 }, "minecraft:mushroom_stem": { "bedrock_identifier": "minecraft:brown_mushroom_block", "bedrock_data": 15, "firstBlockRuntimeId": 6677, "lastBlockRuntimeId": 6740 }, "minecraft:iron_bars": { "bedrock_identifier": "minecraft:iron_bars", "bedrock_data": 0, "firstBlockRuntimeId": 6741, "lastBlockRuntimeId": 6772 }, "minecraft:chain": { "bedrock_identifier": "minecraft:chain", "bedrock_data": 0, "firstBlockRuntimeId": 6773, "lastBlockRuntimeId": 6778 }, "minecraft:glass_pane": { "bedrock_identifier": "minecraft:glass_pane", "bedrock_data": 0, "firstBlockRuntimeId": 6779, "lastBlockRuntimeId": 6810 }, "minecraft:melon": { "bedrock_identifier": "minecraft:melon_block", "bedrock_data": 0, "firstBlockRuntimeId": 6812 }, "minecraft:vine": { "bedrock_identifier": "minecraft:vine", "bedrock_data": 0, "firstBlockRuntimeId": 6837, "lastBlockRuntimeId": 6868 }, "minecraft:glow_lichen": { "bedrock_identifier": "minecraft:glow_lichen", "bedrock_data": 0, "firstBlockRuntimeId": 6869, "lastBlockRuntimeId": 6996 }, "minecraft:brick_stairs": { "bedrock_identifier": "minecraft:brick_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 7029, "lastBlockRuntimeId": 7108 }, "minecraft:stone_brick_stairs": { "bedrock_identifier": "minecraft:stone_brick_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 7109, "lastBlockRuntimeId": 7188 }, "minecraft:mud_brick_stairs": { "bedrock_identifier": "minecraft:mud_brick_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 7189, "lastBlockRuntimeId": 7268 }, "minecraft:mycelium": { "bedrock_identifier": "minecraft:mycelium", "bedrock_data": 0, "firstBlockRuntimeId": 7269, "lastBlockRuntimeId": 7270 }, "minecraft:lily_pad": { "bedrock_identifier": "minecraft:waterlily", "bedrock_data": 0, "firstBlockRuntimeId": 7271 }, "minecraft:nether_bricks": { "bedrock_identifier": "minecraft:nether_brick", "bedrock_data": 0, "firstBlockRuntimeId": 7272 }, "minecraft:cracked_nether_bricks": { "bedrock_identifier": "minecraft:cracked_nether_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 20723 }, "minecraft:chiseled_nether_bricks": { "bedrock_identifier": "minecraft:chiseled_nether_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 20722 }, "minecraft:nether_brick_fence": { "bedrock_identifier": "minecraft:nether_brick_fence", "bedrock_data": 0, "firstBlockRuntimeId": 7273, "lastBlockRuntimeId": 7304 }, "minecraft:nether_brick_stairs": { "bedrock_identifier": "minecraft:nether_brick_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 7305, "lastBlockRuntimeId": 7384 }, "minecraft:sculk": { "bedrock_identifier": "minecraft:sculk", "bedrock_data": 0, "firstBlockRuntimeId": 22799 }, "minecraft:sculk_vein": { "bedrock_identifier": "minecraft:sculk_vein", "bedrock_data": 0, "firstBlockRuntimeId": 22800, "lastBlockRuntimeId": 22927 }, "minecraft:sculk_catalyst": { "bedrock_identifier": "minecraft:sculk_catalyst", "bedrock_data": 0, "firstBlockRuntimeId": 22928, "lastBlockRuntimeId": 22929 }, "minecraft:sculk_shrieker": { "bedrock_identifier": "minecraft:sculk_shrieker", "bedrock_data": 0, "firstBlockRuntimeId": 22930, "lastBlockRuntimeId": 22937 }, "minecraft:enchanting_table": { "bedrock_identifier": "minecraft:enchanting_table", "bedrock_data": 0, "firstBlockRuntimeId": 7389 }, "minecraft:end_portal_frame": { "bedrock_identifier": "minecraft:end_portal_frame", "bedrock_data": 0, "firstBlockRuntimeId": 7407, "lastBlockRuntimeId": 7414 }, "minecraft:end_stone": { "bedrock_identifier": "minecraft:end_stone", "bedrock_data": 0, "firstBlockRuntimeId": 7415 }, "minecraft:end_stone_bricks": { "bedrock_identifier": "minecraft:end_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 12494 }, "minecraft:dragon_egg": { "bedrock_identifier": "minecraft:dragon_egg", "bedrock_data": 0, "firstBlockRuntimeId": 7416 }, "minecraft:sandstone_stairs": { "bedrock_identifier": "minecraft:sandstone_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 7431, "lastBlockRuntimeId": 7510 }, "minecraft:ender_chest": { "bedrock_identifier": "minecraft:ender_chest", "bedrock_data": 0, "firstBlockRuntimeId": 7513, "lastBlockRuntimeId": 7520 }, "minecraft:emerald_block": { "bedrock_identifier": "minecraft:emerald_block", "bedrock_data": 0, "firstBlockRuntimeId": 7665 }, "minecraft:oak_stairs": { "bedrock_identifier": "minecraft:oak_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 2874, "lastBlockRuntimeId": 2953 }, "minecraft:spruce_stairs": { "bedrock_identifier": "minecraft:spruce_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 7666, "lastBlockRuntimeId": 7745 }, "minecraft:birch_stairs": { "bedrock_identifier": "minecraft:birch_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 7746, "lastBlockRuntimeId": 7825 }, "minecraft:jungle_stairs": { "bedrock_identifier": "minecraft:jungle_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 7826, "lastBlockRuntimeId": 7905 }, "minecraft:acacia_stairs": { "bedrock_identifier": "minecraft:acacia_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 9884, "lastBlockRuntimeId": 9963 }, "minecraft:cherry_stairs": { "bedrock_identifier": "minecraft:cherry_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 9964, "lastBlockRuntimeId": 10043 }, "minecraft:dark_oak_stairs": { "bedrock_identifier": "minecraft:dark_oak_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 10044, "lastBlockRuntimeId": 10123 }, "minecraft:mangrove_stairs": { "bedrock_identifier": "minecraft:mangrove_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 10124, "lastBlockRuntimeId": 10203 }, "minecraft:bamboo_stairs": { "bedrock_identifier": "minecraft:bamboo_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 10204, "lastBlockRuntimeId": 10283 }, "minecraft:bamboo_mosaic_stairs": { "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 10284, "lastBlockRuntimeId": 10363 }, "minecraft:crimson_stairs": { "bedrock_identifier": "minecraft:crimson_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 18940, "lastBlockRuntimeId": 19019 }, "minecraft:warped_stairs": { "bedrock_identifier": "minecraft:warped_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 19020, "lastBlockRuntimeId": 19099 }, "minecraft:command_block": { "bedrock_identifier": "minecraft:command_block", "bedrock_data": 0, "firstBlockRuntimeId": 7906, "lastBlockRuntimeId": 7917 }, "minecraft:beacon": { "bedrock_identifier": "minecraft:beacon", "bedrock_data": 0, "firstBlockRuntimeId": 7918 }, "minecraft:cobblestone_wall": { "bedrock_identifier": "minecraft:cobblestone_wall", "bedrock_data": 0, "firstBlockRuntimeId": 7919, "lastBlockRuntimeId": 8242 }, "minecraft:mossy_cobblestone_wall": { "bedrock_identifier": "minecraft:mossy_cobblestone_wall", "bedrock_data": 1, "firstBlockRuntimeId": 8243, "lastBlockRuntimeId": 8566 }, "minecraft:brick_wall": { "bedrock_identifier": "minecraft:brick_wall", "bedrock_data": 6, "firstBlockRuntimeId": 14160, "lastBlockRuntimeId": 14483 }, "minecraft:prismarine_wall": { "bedrock_identifier": "minecraft:prismarine_wall", "bedrock_data": 11, "firstBlockRuntimeId": 14484, "lastBlockRuntimeId": 14807 }, "minecraft:red_sandstone_wall": { "bedrock_identifier": "minecraft:red_sandstone_wall", "bedrock_data": 12, "firstBlockRuntimeId": 14808, "lastBlockRuntimeId": 15131 }, "minecraft:mossy_stone_brick_wall": { "bedrock_identifier": "minecraft:mossy_stone_brick_wall", "bedrock_data": 8, "firstBlockRuntimeId": 15132, "lastBlockRuntimeId": 15455 }, "minecraft:granite_wall": { "bedrock_identifier": "minecraft:granite_wall", "bedrock_data": 2, "firstBlockRuntimeId": 15456, "lastBlockRuntimeId": 15779 }, "minecraft:stone_brick_wall": { "bedrock_identifier": "minecraft:stone_brick_wall", "bedrock_data": 7, "firstBlockRuntimeId": 15780, "lastBlockRuntimeId": 16103 }, "minecraft:mud_brick_wall": { "bedrock_identifier": "minecraft:mud_brick_wall", "bedrock_data": 0, "firstBlockRuntimeId": 16104, "lastBlockRuntimeId": 16427 }, "minecraft:nether_brick_wall": { "bedrock_identifier": "minecraft:nether_brick_wall", "bedrock_data": 9, "firstBlockRuntimeId": 16428, "lastBlockRuntimeId": 16751 }, "minecraft:andesite_wall": { "bedrock_identifier": "minecraft:andesite_wall", "bedrock_data": 4, "firstBlockRuntimeId": 16752, "lastBlockRuntimeId": 17075 }, "minecraft:red_nether_brick_wall": { "bedrock_identifier": "minecraft:red_nether_brick_wall", "bedrock_data": 13, "firstBlockRuntimeId": 17076, "lastBlockRuntimeId": 17399 }, "minecraft:sandstone_wall": { "bedrock_identifier": "minecraft:sandstone_wall", "bedrock_data": 5, "firstBlockRuntimeId": 17400, "lastBlockRuntimeId": 17723 }, "minecraft:end_stone_brick_wall": { "bedrock_identifier": "minecraft:end_stone_brick_wall", "bedrock_data": 10, "firstBlockRuntimeId": 17724, "lastBlockRuntimeId": 18047 }, "minecraft:diorite_wall": { "bedrock_identifier": "minecraft:diorite_wall", "bedrock_data": 3, "firstBlockRuntimeId": 18048, "lastBlockRuntimeId": 18371 }, "minecraft:blackstone_wall": { "bedrock_identifier": "minecraft:blackstone_wall", "bedrock_data": 0, "firstBlockRuntimeId": 19541, "lastBlockRuntimeId": 19864 }, "minecraft:polished_blackstone_wall": { "bedrock_identifier": "minecraft:polished_blackstone_wall", "bedrock_data": 0, "firstBlockRuntimeId": 20398, "lastBlockRuntimeId": 20721 }, "minecraft:polished_blackstone_brick_wall": { "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", "bedrock_data": 0, "firstBlockRuntimeId": 19961, "lastBlockRuntimeId": 20284 }, "minecraft:cobbled_deepslate_wall": { "bedrock_identifier": "minecraft:cobbled_deepslate_wall", "bedrock_data": 0, "firstBlockRuntimeId": 24994, "lastBlockRuntimeId": 25317 }, "minecraft:polished_deepslate_wall": { "bedrock_identifier": "minecraft:polished_deepslate_wall", "bedrock_data": 0, "firstBlockRuntimeId": 25405, "lastBlockRuntimeId": 25728 }, "minecraft:deepslate_brick_wall": { "bedrock_identifier": "minecraft:deepslate_brick_wall", "bedrock_data": 0, "firstBlockRuntimeId": 26227, "lastBlockRuntimeId": 26550 }, "minecraft:deepslate_tile_wall": { "bedrock_identifier": "minecraft:deepslate_tile_wall", "bedrock_data": 0, "firstBlockRuntimeId": 25816, "lastBlockRuntimeId": 26139 }, "minecraft:anvil": { "bedrock_identifier": "minecraft:anvil", "bedrock_data": 0, "firstBlockRuntimeId": 9107, "lastBlockRuntimeId": 9110 }, "minecraft:chipped_anvil": { "bedrock_identifier": "minecraft:chipped_anvil", "bedrock_data": 0, "firstBlockRuntimeId": 9111, "lastBlockRuntimeId": 9114 }, "minecraft:damaged_anvil": { "bedrock_identifier": "minecraft:damaged_anvil", "bedrock_data": 0, "firstBlockRuntimeId": 9115, "lastBlockRuntimeId": 9118 }, "minecraft:chiseled_quartz_block": { "bedrock_identifier": "minecraft:chiseled_quartz_block", "bedrock_data": 0, "firstBlockRuntimeId": 9236 }, "minecraft:quartz_block": { "bedrock_identifier": "minecraft:quartz_block", "bedrock_data": 0, "firstBlockRuntimeId": 9235 }, "minecraft:quartz_bricks": { "bedrock_identifier": "minecraft:quartz_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 20724 }, "minecraft:quartz_pillar": { "bedrock_identifier": "minecraft:quartz_pillar", "bedrock_data": 0, "firstBlockRuntimeId": 9237, "lastBlockRuntimeId": 9239 }, "minecraft:quartz_stairs": { "bedrock_identifier": "minecraft:quartz_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 9240, "lastBlockRuntimeId": 9319 }, "minecraft:white_terracotta": { "bedrock_identifier": "minecraft:white_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 9356 }, "minecraft:orange_terracotta": { "bedrock_identifier": "minecraft:orange_terracotta", "bedrock_data": 1, "firstBlockRuntimeId": 9357 }, "minecraft:magenta_terracotta": { "bedrock_identifier": "minecraft:magenta_terracotta", "bedrock_data": 2, "firstBlockRuntimeId": 9358 }, "minecraft:light_blue_terracotta": { "bedrock_identifier": "minecraft:light_blue_terracotta", "bedrock_data": 3, "firstBlockRuntimeId": 9359 }, "minecraft:yellow_terracotta": { "bedrock_identifier": "minecraft:yellow_terracotta", "bedrock_data": 4, "firstBlockRuntimeId": 9360 }, "minecraft:lime_terracotta": { "bedrock_identifier": "minecraft:lime_terracotta", "bedrock_data": 5, "firstBlockRuntimeId": 9361 }, "minecraft:pink_terracotta": { "bedrock_identifier": "minecraft:pink_terracotta", "bedrock_data": 6, "firstBlockRuntimeId": 9362 }, "minecraft:gray_terracotta": { "bedrock_identifier": "minecraft:gray_terracotta", "bedrock_data": 7, "firstBlockRuntimeId": 9363 }, "minecraft:light_gray_terracotta": { "bedrock_identifier": "minecraft:light_gray_terracotta", "bedrock_data": 8, "firstBlockRuntimeId": 9364 }, "minecraft:cyan_terracotta": { "bedrock_identifier": "minecraft:cyan_terracotta", "bedrock_data": 9, "firstBlockRuntimeId": 9365 }, "minecraft:purple_terracotta": { "bedrock_identifier": "minecraft:purple_terracotta", "bedrock_data": 10, "firstBlockRuntimeId": 9366 }, "minecraft:blue_terracotta": { "bedrock_identifier": "minecraft:blue_terracotta", "bedrock_data": 11, "firstBlockRuntimeId": 9367 }, "minecraft:brown_terracotta": { "bedrock_identifier": "minecraft:brown_terracotta", "bedrock_data": 12, "firstBlockRuntimeId": 9368 }, "minecraft:green_terracotta": { "bedrock_identifier": "minecraft:green_terracotta", "bedrock_data": 13, "firstBlockRuntimeId": 9369 }, "minecraft:red_terracotta": { "bedrock_identifier": "minecraft:red_terracotta", "bedrock_data": 14, "firstBlockRuntimeId": 9370 }, "minecraft:black_terracotta": { "bedrock_identifier": "minecraft:black_terracotta", "bedrock_data": 15, "firstBlockRuntimeId": 9371 }, "minecraft:barrier": { "bedrock_identifier": "minecraft:barrier", "bedrock_data": 0, "firstBlockRuntimeId": 10365, "lastBlockRuntimeId": 10366 }, "minecraft:light": { "bedrock_identifier": "minecraft:light_block", "bedrock_data": 0, "firstBlockRuntimeId": 10367, "lastBlockRuntimeId": 10398 }, "minecraft:hay_block": { "bedrock_identifier": "minecraft:hay_block", "bedrock_data": 0, "firstBlockRuntimeId": 10725, "lastBlockRuntimeId": 10727 }, "minecraft:white_carpet": { "bedrock_identifier": "minecraft:white_carpet", "bedrock_data": 0, "firstBlockRuntimeId": 10728 }, "minecraft:orange_carpet": { "bedrock_identifier": "minecraft:orange_carpet", "bedrock_data": 1, "firstBlockRuntimeId": 10729 }, "minecraft:magenta_carpet": { "bedrock_identifier": "minecraft:magenta_carpet", "bedrock_data": 2, "firstBlockRuntimeId": 10730 }, "minecraft:light_blue_carpet": { "bedrock_identifier": "minecraft:light_blue_carpet", "bedrock_data": 3, "firstBlockRuntimeId": 10731 }, "minecraft:yellow_carpet": { "bedrock_identifier": "minecraft:yellow_carpet", "bedrock_data": 4, "firstBlockRuntimeId": 10732 }, "minecraft:lime_carpet": { "bedrock_identifier": "minecraft:lime_carpet", "bedrock_data": 5, "firstBlockRuntimeId": 10733 }, "minecraft:pink_carpet": { "bedrock_identifier": "minecraft:pink_carpet", "bedrock_data": 6, "firstBlockRuntimeId": 10734 }, "minecraft:gray_carpet": { "bedrock_identifier": "minecraft:gray_carpet", "bedrock_data": 7, "firstBlockRuntimeId": 10735 }, "minecraft:light_gray_carpet": { "bedrock_identifier": "minecraft:light_gray_carpet", "bedrock_data": 8, "firstBlockRuntimeId": 10736 }, "minecraft:cyan_carpet": { "bedrock_identifier": "minecraft:cyan_carpet", "bedrock_data": 9, "firstBlockRuntimeId": 10737 }, "minecraft:purple_carpet": { "bedrock_identifier": "minecraft:purple_carpet", "bedrock_data": 10, "firstBlockRuntimeId": 10738 }, "minecraft:blue_carpet": { "bedrock_identifier": "minecraft:blue_carpet", "bedrock_data": 11, "firstBlockRuntimeId": 10739 }, "minecraft:brown_carpet": { "bedrock_identifier": "minecraft:brown_carpet", "bedrock_data": 12, "firstBlockRuntimeId": 10740 }, "minecraft:green_carpet": { "bedrock_identifier": "minecraft:green_carpet", "bedrock_data": 13, "firstBlockRuntimeId": 10741 }, "minecraft:red_carpet": { "bedrock_identifier": "minecraft:red_carpet", "bedrock_data": 14, "firstBlockRuntimeId": 10742 }, "minecraft:black_carpet": { "bedrock_identifier": "minecraft:black_carpet", "bedrock_data": 15, "firstBlockRuntimeId": 10743 }, "minecraft:terracotta": { "bedrock_identifier": "minecraft:hardened_clay", "bedrock_data": 0, "firstBlockRuntimeId": 10744 }, "minecraft:packed_ice": { "bedrock_identifier": "minecraft:packed_ice", "bedrock_data": 0, "firstBlockRuntimeId": 10746 }, "minecraft:dirt_path": { "bedrock_identifier": "minecraft:grass_path", "bedrock_data": 0, "firstBlockRuntimeId": 12513 }, "minecraft:sunflower": { "bedrock_identifier": "minecraft:sunflower", "bedrock_data": 0, "firstBlockRuntimeId": 10747, "lastBlockRuntimeId": 10748 }, "minecraft:lilac": { "bedrock_identifier": "minecraft:lilac", "bedrock_data": 0, "firstBlockRuntimeId": 10749, "lastBlockRuntimeId": 10750 }, "minecraft:rose_bush": { "bedrock_identifier": "minecraft:rose_bush", "bedrock_data": 0, "firstBlockRuntimeId": 10751, "lastBlockRuntimeId": 10752 }, "minecraft:peony": { "bedrock_identifier": "minecraft:peony", "bedrock_data": 0, "firstBlockRuntimeId": 10753, "lastBlockRuntimeId": 10754 }, "minecraft:tall_grass": { "bedrock_identifier": "minecraft:tall_grass", "bedrock_data": 0, "firstBlockRuntimeId": 10755, "lastBlockRuntimeId": 10756 }, "minecraft:large_fern": { "bedrock_identifier": "minecraft:large_fern", "bedrock_data": 0, "firstBlockRuntimeId": 10757, "lastBlockRuntimeId": 10758 }, "minecraft:white_stained_glass": { "bedrock_identifier": "minecraft:white_stained_glass", "bedrock_data": 0, "firstBlockRuntimeId": 5945 }, "minecraft:orange_stained_glass": { "bedrock_identifier": "minecraft:orange_stained_glass", "bedrock_data": 1, "firstBlockRuntimeId": 5946 }, "minecraft:magenta_stained_glass": { "bedrock_identifier": "minecraft:magenta_stained_glass", "bedrock_data": 2, "firstBlockRuntimeId": 5947 }, "minecraft:light_blue_stained_glass": { "bedrock_identifier": "minecraft:light_blue_stained_glass", "bedrock_data": 3, "firstBlockRuntimeId": 5948 }, "minecraft:yellow_stained_glass": { "bedrock_identifier": "minecraft:yellow_stained_glass", "bedrock_data": 4, "firstBlockRuntimeId": 5949 }, "minecraft:lime_stained_glass": { "bedrock_identifier": "minecraft:lime_stained_glass", "bedrock_data": 5, "firstBlockRuntimeId": 5950 }, "minecraft:pink_stained_glass": { "bedrock_identifier": "minecraft:pink_stained_glass", "bedrock_data": 6, "firstBlockRuntimeId": 5951 }, "minecraft:gray_stained_glass": { "bedrock_identifier": "minecraft:gray_stained_glass", "bedrock_data": 7, "firstBlockRuntimeId": 5952 }, "minecraft:light_gray_stained_glass": { "bedrock_identifier": "minecraft:light_gray_stained_glass", "bedrock_data": 8, "firstBlockRuntimeId": 5953 }, "minecraft:cyan_stained_glass": { "bedrock_identifier": "minecraft:cyan_stained_glass", "bedrock_data": 9, "firstBlockRuntimeId": 5954 }, "minecraft:purple_stained_glass": { "bedrock_identifier": "minecraft:purple_stained_glass", "bedrock_data": 10, "firstBlockRuntimeId": 5955 }, "minecraft:blue_stained_glass": { "bedrock_identifier": "minecraft:blue_stained_glass", "bedrock_data": 11, "firstBlockRuntimeId": 5956 }, "minecraft:brown_stained_glass": { "bedrock_identifier": "minecraft:brown_stained_glass", "bedrock_data": 12, "firstBlockRuntimeId": 5957 }, "minecraft:green_stained_glass": { "bedrock_identifier": "minecraft:green_stained_glass", "bedrock_data": 13, "firstBlockRuntimeId": 5958 }, "minecraft:red_stained_glass": { "bedrock_identifier": "minecraft:red_stained_glass", "bedrock_data": 14, "firstBlockRuntimeId": 5959 }, "minecraft:black_stained_glass": { "bedrock_identifier": "minecraft:black_stained_glass", "bedrock_data": 15, "firstBlockRuntimeId": 5960 }, "minecraft:white_stained_glass_pane": { "bedrock_identifier": "minecraft:white_stained_glass_pane", "bedrock_data": 0, "firstBlockRuntimeId": 9372, "lastBlockRuntimeId": 9403 }, "minecraft:orange_stained_glass_pane": { "bedrock_identifier": "minecraft:orange_stained_glass_pane", "bedrock_data": 1, "firstBlockRuntimeId": 9404, "lastBlockRuntimeId": 9435 }, "minecraft:magenta_stained_glass_pane": { "bedrock_identifier": "minecraft:magenta_stained_glass_pane", "bedrock_data": 2, "firstBlockRuntimeId": 9436, "lastBlockRuntimeId": 9467 }, "minecraft:light_blue_stained_glass_pane": { "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", "bedrock_data": 3, "firstBlockRuntimeId": 9468, "lastBlockRuntimeId": 9499 }, "minecraft:yellow_stained_glass_pane": { "bedrock_identifier": "minecraft:yellow_stained_glass_pane", "bedrock_data": 4, "firstBlockRuntimeId": 9500, "lastBlockRuntimeId": 9531 }, "minecraft:lime_stained_glass_pane": { "bedrock_identifier": "minecraft:lime_stained_glass_pane", "bedrock_data": 5, "firstBlockRuntimeId": 9532, "lastBlockRuntimeId": 9563 }, "minecraft:pink_stained_glass_pane": { "bedrock_identifier": "minecraft:pink_stained_glass_pane", "bedrock_data": 6, "firstBlockRuntimeId": 9564, "lastBlockRuntimeId": 9595 }, "minecraft:gray_stained_glass_pane": { "bedrock_identifier": "minecraft:gray_stained_glass_pane", "bedrock_data": 7, "firstBlockRuntimeId": 9596, "lastBlockRuntimeId": 9627 }, "minecraft:light_gray_stained_glass_pane": { "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", "bedrock_data": 8, "firstBlockRuntimeId": 9628, "lastBlockRuntimeId": 9659 }, "minecraft:cyan_stained_glass_pane": { "bedrock_identifier": "minecraft:cyan_stained_glass_pane", "bedrock_data": 9, "firstBlockRuntimeId": 9660, "lastBlockRuntimeId": 9691 }, "minecraft:purple_stained_glass_pane": { "bedrock_identifier": "minecraft:purple_stained_glass_pane", "bedrock_data": 10, "firstBlockRuntimeId": 9692, "lastBlockRuntimeId": 9723 }, "minecraft:blue_stained_glass_pane": { "bedrock_identifier": "minecraft:blue_stained_glass_pane", "bedrock_data": 11, "firstBlockRuntimeId": 9724, "lastBlockRuntimeId": 9755 }, "minecraft:brown_stained_glass_pane": { "bedrock_identifier": "minecraft:brown_stained_glass_pane", "bedrock_data": 12, "firstBlockRuntimeId": 9756, "lastBlockRuntimeId": 9787 }, "minecraft:green_stained_glass_pane": { "bedrock_identifier": "minecraft:green_stained_glass_pane", "bedrock_data": 13, "firstBlockRuntimeId": 9788, "lastBlockRuntimeId": 9819 }, "minecraft:red_stained_glass_pane": { "bedrock_identifier": "minecraft:red_stained_glass_pane", "bedrock_data": 14, "firstBlockRuntimeId": 9820, "lastBlockRuntimeId": 9851 }, "minecraft:black_stained_glass_pane": { "bedrock_identifier": "minecraft:black_stained_glass_pane", "bedrock_data": 15, "firstBlockRuntimeId": 9852, "lastBlockRuntimeId": 9883 }, "minecraft:prismarine": { "bedrock_identifier": "minecraft:prismarine", "bedrock_data": 0, "firstBlockRuntimeId": 10463 }, "minecraft:prismarine_bricks": { "bedrock_identifier": "minecraft:prismarine_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 10464 }, "minecraft:dark_prismarine": { "bedrock_identifier": "minecraft:dark_prismarine", "bedrock_data": 0, "firstBlockRuntimeId": 10465 }, "minecraft:prismarine_stairs": { "bedrock_identifier": "minecraft:prismarine_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 10466, "lastBlockRuntimeId": 10545 }, "minecraft:prismarine_brick_stairs": { "bedrock_identifier": "minecraft:prismarine_bricks_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 10546, "lastBlockRuntimeId": 10625 }, "minecraft:dark_prismarine_stairs": { "bedrock_identifier": "minecraft:dark_prismarine_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 10626, "lastBlockRuntimeId": 10705 }, "minecraft:sea_lantern": { "bedrock_identifier": "minecraft:sea_lantern", "bedrock_data": 0, "firstBlockRuntimeId": 10724 }, "minecraft:red_sandstone": { "bedrock_identifier": "minecraft:red_sandstone", "bedrock_data": 0, "firstBlockRuntimeId": 11079 }, "minecraft:chiseled_red_sandstone": { "bedrock_identifier": "minecraft:chiseled_red_sandstone", "bedrock_data": 0, "firstBlockRuntimeId": 11080 }, "minecraft:cut_red_sandstone": { "bedrock_identifier": "minecraft:cut_red_sandstone", "bedrock_data": 0, "firstBlockRuntimeId": 11081 }, "minecraft:red_sandstone_stairs": { "bedrock_identifier": "minecraft:red_sandstone_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 11082, "lastBlockRuntimeId": 11161 }, "minecraft:repeating_command_block": { "bedrock_identifier": "minecraft:repeating_command_block", "bedrock_data": 0, "firstBlockRuntimeId": 12515, "lastBlockRuntimeId": 12526 }, "minecraft:chain_command_block": { "bedrock_identifier": "minecraft:chain_command_block", "bedrock_data": 0, "firstBlockRuntimeId": 12527, "lastBlockRuntimeId": 12538 }, "minecraft:magma_block": { "bedrock_identifier": "minecraft:magma", "bedrock_data": 0, "firstBlockRuntimeId": 12543 }, "minecraft:nether_wart_block": { "bedrock_identifier": "minecraft:nether_wart_block", "bedrock_data": 0, "firstBlockRuntimeId": 12544 }, "minecraft:warped_wart_block": { "bedrock_identifier": "minecraft:warped_wart_block", "bedrock_data": 0, "firstBlockRuntimeId": 18593 }, "minecraft:red_nether_bricks": { "bedrock_identifier": "minecraft:red_nether_brick", "bedrock_data": 0, "firstBlockRuntimeId": 12545 }, "minecraft:bone_block": { "bedrock_identifier": "minecraft:bone_block", "bedrock_data": 0, "firstBlockRuntimeId": 12546, "lastBlockRuntimeId": 12548 }, "minecraft:structure_void": { "bedrock_identifier": "minecraft:structure_void", "bedrock_data": 0, "firstBlockRuntimeId": 12549 }, "minecraft:shulker_box": { "bedrock_identifier": "minecraft:undyed_shulker_box", "bedrock_data": 0, "firstBlockRuntimeId": 12562, "lastBlockRuntimeId": 12567 }, "minecraft:white_shulker_box": { "bedrock_identifier": "minecraft:white_shulker_box", "bedrock_data": 0, "firstBlockRuntimeId": 12568, "lastBlockRuntimeId": 12573 }, "minecraft:orange_shulker_box": { "bedrock_identifier": "minecraft:orange_shulker_box", "bedrock_data": 1, "firstBlockRuntimeId": 12574, "lastBlockRuntimeId": 12579 }, "minecraft:magenta_shulker_box": { "bedrock_identifier": "minecraft:magenta_shulker_box", "bedrock_data": 2, "firstBlockRuntimeId": 12580, "lastBlockRuntimeId": 12585 }, "minecraft:light_blue_shulker_box": { "bedrock_identifier": "minecraft:light_blue_shulker_box", "bedrock_data": 3, "firstBlockRuntimeId": 12586, "lastBlockRuntimeId": 12591 }, "minecraft:yellow_shulker_box": { "bedrock_identifier": "minecraft:yellow_shulker_box", "bedrock_data": 4, "firstBlockRuntimeId": 12592, "lastBlockRuntimeId": 12597 }, "minecraft:lime_shulker_box": { "bedrock_identifier": "minecraft:lime_shulker_box", "bedrock_data": 5, "firstBlockRuntimeId": 12598, "lastBlockRuntimeId": 12603 }, "minecraft:pink_shulker_box": { "bedrock_identifier": "minecraft:pink_shulker_box", "bedrock_data": 6, "firstBlockRuntimeId": 12604, "lastBlockRuntimeId": 12609 }, "minecraft:gray_shulker_box": { "bedrock_identifier": "minecraft:gray_shulker_box", "bedrock_data": 7, "firstBlockRuntimeId": 12610, "lastBlockRuntimeId": 12615 }, "minecraft:light_gray_shulker_box": { "bedrock_identifier": "minecraft:light_gray_shulker_box", "bedrock_data": 8, "firstBlockRuntimeId": 12616, "lastBlockRuntimeId": 12621 }, "minecraft:cyan_shulker_box": { "bedrock_identifier": "minecraft:cyan_shulker_box", "bedrock_data": 9, "firstBlockRuntimeId": 12622, "lastBlockRuntimeId": 12627 }, "minecraft:purple_shulker_box": { "bedrock_identifier": "minecraft:purple_shulker_box", "bedrock_data": 10, "firstBlockRuntimeId": 12628, "lastBlockRuntimeId": 12633 }, "minecraft:blue_shulker_box": { "bedrock_identifier": "minecraft:blue_shulker_box", "bedrock_data": 11, "firstBlockRuntimeId": 12634, "lastBlockRuntimeId": 12639 }, "minecraft:brown_shulker_box": { "bedrock_identifier": "minecraft:brown_shulker_box", "bedrock_data": 12, "firstBlockRuntimeId": 12640, "lastBlockRuntimeId": 12645 }, "minecraft:green_shulker_box": { "bedrock_identifier": "minecraft:green_shulker_box", "bedrock_data": 13, "firstBlockRuntimeId": 12646, "lastBlockRuntimeId": 12651 }, "minecraft:red_shulker_box": { "bedrock_identifier": "minecraft:red_shulker_box", "bedrock_data": 14, "firstBlockRuntimeId": 12652, "lastBlockRuntimeId": 12657 }, "minecraft:black_shulker_box": { "bedrock_identifier": "minecraft:black_shulker_box", "bedrock_data": 15, "firstBlockRuntimeId": 12658, "lastBlockRuntimeId": 12663 }, "minecraft:white_glazed_terracotta": { "bedrock_identifier": "minecraft:white_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12664, "lastBlockRuntimeId": 12667 }, "minecraft:orange_glazed_terracotta": { "bedrock_identifier": "minecraft:orange_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12668, "lastBlockRuntimeId": 12671 }, "minecraft:magenta_glazed_terracotta": { "bedrock_identifier": "minecraft:magenta_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12672, "lastBlockRuntimeId": 12675 }, "minecraft:light_blue_glazed_terracotta": { "bedrock_identifier": "minecraft:light_blue_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12676, "lastBlockRuntimeId": 12679 }, "minecraft:yellow_glazed_terracotta": { "bedrock_identifier": "minecraft:yellow_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12680, "lastBlockRuntimeId": 12683 }, "minecraft:lime_glazed_terracotta": { "bedrock_identifier": "minecraft:lime_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12684, "lastBlockRuntimeId": 12687 }, "minecraft:pink_glazed_terracotta": { "bedrock_identifier": "minecraft:pink_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12688, "lastBlockRuntimeId": 12691 }, "minecraft:gray_glazed_terracotta": { "bedrock_identifier": "minecraft:gray_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12692, "lastBlockRuntimeId": 12695 }, "minecraft:light_gray_glazed_terracotta": { "bedrock_identifier": "minecraft:silver_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12696, "lastBlockRuntimeId": 12699 }, "minecraft:cyan_glazed_terracotta": { "bedrock_identifier": "minecraft:cyan_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12700, "lastBlockRuntimeId": 12703 }, "minecraft:purple_glazed_terracotta": { "bedrock_identifier": "minecraft:purple_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12704, "lastBlockRuntimeId": 12707 }, "minecraft:blue_glazed_terracotta": { "bedrock_identifier": "minecraft:blue_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12708, "lastBlockRuntimeId": 12711 }, "minecraft:brown_glazed_terracotta": { "bedrock_identifier": "minecraft:brown_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12712, "lastBlockRuntimeId": 12715 }, "minecraft:green_glazed_terracotta": { "bedrock_identifier": "minecraft:green_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12716, "lastBlockRuntimeId": 12719 }, "minecraft:red_glazed_terracotta": { "bedrock_identifier": "minecraft:red_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12720, "lastBlockRuntimeId": 12723 }, "minecraft:black_glazed_terracotta": { "bedrock_identifier": "minecraft:black_glazed_terracotta", "bedrock_data": 0, "firstBlockRuntimeId": 12724, "lastBlockRuntimeId": 12727 }, "minecraft:white_concrete": { "bedrock_identifier": "minecraft:white_concrete", "bedrock_data": 0, "firstBlockRuntimeId": 12728 }, "minecraft:orange_concrete": { "bedrock_identifier": "minecraft:orange_concrete", "bedrock_data": 1, "firstBlockRuntimeId": 12729 }, "minecraft:magenta_concrete": { "bedrock_identifier": "minecraft:magenta_concrete", "bedrock_data": 2, "firstBlockRuntimeId": 12730 }, "minecraft:light_blue_concrete": { "bedrock_identifier": "minecraft:light_blue_concrete", "bedrock_data": 3, "firstBlockRuntimeId": 12731 }, "minecraft:yellow_concrete": { "bedrock_identifier": "minecraft:yellow_concrete", "bedrock_data": 4, "firstBlockRuntimeId": 12732 }, "minecraft:lime_concrete": { "bedrock_identifier": "minecraft:lime_concrete", "bedrock_data": 5, "firstBlockRuntimeId": 12733 }, "minecraft:pink_concrete": { "bedrock_identifier": "minecraft:pink_concrete", "bedrock_data": 6, "firstBlockRuntimeId": 12734 }, "minecraft:gray_concrete": { "bedrock_identifier": "minecraft:gray_concrete", "bedrock_data": 7, "firstBlockRuntimeId": 12735 }, "minecraft:light_gray_concrete": { "bedrock_identifier": "minecraft:light_gray_concrete", "bedrock_data": 8, "firstBlockRuntimeId": 12736 }, "minecraft:cyan_concrete": { "bedrock_identifier": "minecraft:cyan_concrete", "bedrock_data": 9, "firstBlockRuntimeId": 12737 }, "minecraft:purple_concrete": { "bedrock_identifier": "minecraft:purple_concrete", "bedrock_data": 10, "firstBlockRuntimeId": 12738 }, "minecraft:blue_concrete": { "bedrock_identifier": "minecraft:blue_concrete", "bedrock_data": 11, "firstBlockRuntimeId": 12739 }, "minecraft:brown_concrete": { "bedrock_identifier": "minecraft:brown_concrete", "bedrock_data": 12, "firstBlockRuntimeId": 12740 }, "minecraft:green_concrete": { "bedrock_identifier": "minecraft:green_concrete", "bedrock_data": 13, "firstBlockRuntimeId": 12741 }, "minecraft:red_concrete": { "bedrock_identifier": "minecraft:red_concrete", "bedrock_data": 14, "firstBlockRuntimeId": 12742 }, "minecraft:black_concrete": { "bedrock_identifier": "minecraft:black_concrete", "bedrock_data": 15, "firstBlockRuntimeId": 12743 }, "minecraft:white_concrete_powder": { "bedrock_identifier": "minecraft:white_concrete_powder", "bedrock_data": 0, "firstBlockRuntimeId": 12744 }, "minecraft:orange_concrete_powder": { "bedrock_identifier": "minecraft:orange_concrete_powder", "bedrock_data": 1, "firstBlockRuntimeId": 12745 }, "minecraft:magenta_concrete_powder": { "bedrock_identifier": "minecraft:magenta_concrete_powder", "bedrock_data": 2, "firstBlockRuntimeId": 12746 }, "minecraft:light_blue_concrete_powder": { "bedrock_identifier": "minecraft:light_blue_concrete_powder", "bedrock_data": 3, "firstBlockRuntimeId": 12747 }, "minecraft:yellow_concrete_powder": { "bedrock_identifier": "minecraft:yellow_concrete_powder", "bedrock_data": 4, "firstBlockRuntimeId": 12748 }, "minecraft:lime_concrete_powder": { "bedrock_identifier": "minecraft:lime_concrete_powder", "bedrock_data": 5, "firstBlockRuntimeId": 12749 }, "minecraft:pink_concrete_powder": { "bedrock_identifier": "minecraft:pink_concrete_powder", "bedrock_data": 6, "firstBlockRuntimeId": 12750 }, "minecraft:gray_concrete_powder": { "bedrock_identifier": "minecraft:gray_concrete_powder", "bedrock_data": 7, "firstBlockRuntimeId": 12751 }, "minecraft:light_gray_concrete_powder": { "bedrock_identifier": "minecraft:light_gray_concrete_powder", "bedrock_data": 8, "firstBlockRuntimeId": 12752 }, "minecraft:cyan_concrete_powder": { "bedrock_identifier": "minecraft:cyan_concrete_powder", "bedrock_data": 9, "firstBlockRuntimeId": 12753 }, "minecraft:purple_concrete_powder": { "bedrock_identifier": "minecraft:purple_concrete_powder", "bedrock_data": 10, "firstBlockRuntimeId": 12754 }, "minecraft:blue_concrete_powder": { "bedrock_identifier": "minecraft:blue_concrete_powder", "bedrock_data": 11, "firstBlockRuntimeId": 12755 }, "minecraft:brown_concrete_powder": { "bedrock_identifier": "minecraft:brown_concrete_powder", "bedrock_data": 12, "firstBlockRuntimeId": 12756 }, "minecraft:green_concrete_powder": { "bedrock_identifier": "minecraft:green_concrete_powder", "bedrock_data": 13, "firstBlockRuntimeId": 12757 }, "minecraft:red_concrete_powder": { "bedrock_identifier": "minecraft:red_concrete_powder", "bedrock_data": 14, "firstBlockRuntimeId": 12758 }, "minecraft:black_concrete_powder": { "bedrock_identifier": "minecraft:black_concrete_powder", "bedrock_data": 15, "firstBlockRuntimeId": 12759 }, "minecraft:turtle_egg": { "bedrock_identifier": "minecraft:turtle_egg", "bedrock_data": 0, "firstBlockRuntimeId": 12788, "lastBlockRuntimeId": 12799 }, "minecraft:sniffer_egg": { "bedrock_identifier": "minecraft:sniffer_egg", "bedrock_data": 0, "firstBlockRuntimeId": 12800, "lastBlockRuntimeId": 12802 }, "minecraft:dead_tube_coral_block": { "bedrock_identifier": "minecraft:dead_tube_coral_block", "bedrock_data": 0, "firstBlockRuntimeId": 12803 }, "minecraft:dead_brain_coral_block": { "bedrock_identifier": "minecraft:dead_brain_coral_block", "bedrock_data": 0, "firstBlockRuntimeId": 12804 }, "minecraft:dead_bubble_coral_block": { "bedrock_identifier": "minecraft:dead_bubble_coral_block", "bedrock_data": 0, "firstBlockRuntimeId": 12805 }, "minecraft:dead_fire_coral_block": { "bedrock_identifier": "minecraft:dead_fire_coral_block", "bedrock_data": 0, "firstBlockRuntimeId": 12806 }, "minecraft:dead_horn_coral_block": { "bedrock_identifier": "minecraft:dead_horn_coral_block", "bedrock_data": 0, "firstBlockRuntimeId": 12807 }, "minecraft:tube_coral_block": { "bedrock_identifier": "minecraft:tube_coral_block", "bedrock_data": 0, "firstBlockRuntimeId": 12808 }, "minecraft:brain_coral_block": { "bedrock_identifier": "minecraft:brain_coral_block", "bedrock_data": 0, "firstBlockRuntimeId": 12809 }, "minecraft:bubble_coral_block": { "bedrock_identifier": "minecraft:bubble_coral_block", "bedrock_data": 0, "firstBlockRuntimeId": 12810 }, "minecraft:fire_coral_block": { "bedrock_identifier": "minecraft:fire_coral_block", "bedrock_data": 0, "firstBlockRuntimeId": 12811 }, "minecraft:horn_coral_block": { "bedrock_identifier": "minecraft:horn_coral_block", "bedrock_data": 0, "firstBlockRuntimeId": 12812 }, "minecraft:tube_coral": { "bedrock_identifier": "minecraft:tube_coral", "bedrock_data": 0, "firstBlockRuntimeId": 12823, "lastBlockRuntimeId": 12824 }, "minecraft:brain_coral": { "bedrock_identifier": "minecraft:brain_coral", "bedrock_data": 1, "firstBlockRuntimeId": 12825, "lastBlockRuntimeId": 12826 }, "minecraft:bubble_coral": { "bedrock_identifier": "minecraft:bubble_coral", "bedrock_data": 2, "firstBlockRuntimeId": 12827, "lastBlockRuntimeId": 12828 }, "minecraft:fire_coral": { "bedrock_identifier": "minecraft:fire_coral", "bedrock_data": 3, "firstBlockRuntimeId": 12829, "lastBlockRuntimeId": 12830 }, "minecraft:horn_coral": { "bedrock_identifier": "minecraft:horn_coral", "bedrock_data": 4, "firstBlockRuntimeId": 12831, "lastBlockRuntimeId": 12832 }, "minecraft:dead_brain_coral": { "bedrock_identifier": "minecraft:dead_brain_coral", "bedrock_data": 9, "firstBlockRuntimeId": 12815, "lastBlockRuntimeId": 12816 }, "minecraft:dead_bubble_coral": { "bedrock_identifier": "minecraft:dead_bubble_coral", "bedrock_data": 10, "firstBlockRuntimeId": 12817, "lastBlockRuntimeId": 12818 }, "minecraft:dead_fire_coral": { "bedrock_identifier": "minecraft:dead_fire_coral", "bedrock_data": 11, "firstBlockRuntimeId": 12819, "lastBlockRuntimeId": 12820 }, "minecraft:dead_horn_coral": { "bedrock_identifier": "minecraft:dead_horn_coral", "bedrock_data": 12, "firstBlockRuntimeId": 12821, "lastBlockRuntimeId": 12822 }, "minecraft:dead_tube_coral": { "bedrock_identifier": "minecraft:dead_tube_coral", "bedrock_data": 8, "firstBlockRuntimeId": 12813, "lastBlockRuntimeId": 12814 }, "minecraft:tube_coral_fan": { "bedrock_identifier": "minecraft:tube_coral_fan", "bedrock_data": 0, "firstBlockRuntimeId": 12843, "lastBlockRuntimeId": 12844 }, "minecraft:brain_coral_fan": { "bedrock_identifier": "minecraft:brain_coral_fan", "bedrock_data": 0, "firstBlockRuntimeId": 12845, "lastBlockRuntimeId": 12846 }, "minecraft:bubble_coral_fan": { "bedrock_identifier": "minecraft:bubble_coral_fan", "bedrock_data": 0, "firstBlockRuntimeId": 12847, "lastBlockRuntimeId": 12848 }, "minecraft:fire_coral_fan": { "bedrock_identifier": "minecraft:fire_coral_fan", "bedrock_data": 0, "firstBlockRuntimeId": 12849, "lastBlockRuntimeId": 12850 }, "minecraft:horn_coral_fan": { "bedrock_identifier": "minecraft:horn_coral_fan", "bedrock_data": 0, "firstBlockRuntimeId": 12851, "lastBlockRuntimeId": 12852 }, "minecraft:dead_tube_coral_fan": { "bedrock_identifier": "minecraft:dead_tube_coral_fan", "bedrock_data": 0, "firstBlockRuntimeId": 12833, "lastBlockRuntimeId": 12834 }, "minecraft:dead_brain_coral_fan": { "bedrock_identifier": "minecraft:dead_brain_coral_fan", "bedrock_data": 0, "firstBlockRuntimeId": 12835, "lastBlockRuntimeId": 12836 }, "minecraft:dead_bubble_coral_fan": { "bedrock_identifier": "minecraft:dead_bubble_coral_fan", "bedrock_data": 0, "firstBlockRuntimeId": 12837, "lastBlockRuntimeId": 12838 }, "minecraft:dead_fire_coral_fan": { "bedrock_identifier": "minecraft:dead_fire_coral_fan", "bedrock_data": 0, "firstBlockRuntimeId": 12839, "lastBlockRuntimeId": 12840 }, "minecraft:dead_horn_coral_fan": { "bedrock_identifier": "minecraft:dead_horn_coral_fan", "bedrock_data": 0, "firstBlockRuntimeId": 12841, "lastBlockRuntimeId": 12842 }, "minecraft:blue_ice": { "bedrock_identifier": "minecraft:blue_ice", "bedrock_data": 0, "firstBlockRuntimeId": 12941 }, "minecraft:conduit": { "bedrock_identifier": "minecraft:conduit", "bedrock_data": 0, "firstBlockRuntimeId": 12942, "lastBlockRuntimeId": 12943 }, "minecraft:polished_granite_stairs": { "bedrock_identifier": "minecraft:polished_granite_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 12962, "lastBlockRuntimeId": 13041 }, "minecraft:smooth_red_sandstone_stairs": { "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 13042, "lastBlockRuntimeId": 13121 }, "minecraft:mossy_stone_brick_stairs": { "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 13122, "lastBlockRuntimeId": 13201 }, "minecraft:polished_diorite_stairs": { "bedrock_identifier": "minecraft:polished_diorite_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 13202, "lastBlockRuntimeId": 13281 }, "minecraft:mossy_cobblestone_stairs": { "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 13282, "lastBlockRuntimeId": 13361 }, "minecraft:end_stone_brick_stairs": { "bedrock_identifier": "minecraft:end_brick_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 13362, "lastBlockRuntimeId": 13441 }, "minecraft:stone_stairs": { "bedrock_identifier": "minecraft:normal_stone_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 13442, "lastBlockRuntimeId": 13521 }, "minecraft:smooth_sandstone_stairs": { "bedrock_identifier": "minecraft:smooth_sandstone_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 13522, "lastBlockRuntimeId": 13601 }, "minecraft:smooth_quartz_stairs": { "bedrock_identifier": "minecraft:smooth_quartz_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 13602, "lastBlockRuntimeId": 13681 }, "minecraft:granite_stairs": { "bedrock_identifier": "minecraft:granite_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 13682, "lastBlockRuntimeId": 13761 }, "minecraft:andesite_stairs": { "bedrock_identifier": "minecraft:andesite_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 13762, "lastBlockRuntimeId": 13841 }, "minecraft:red_nether_brick_stairs": { "bedrock_identifier": "minecraft:red_nether_brick_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 13842, "lastBlockRuntimeId": 13921 }, "minecraft:polished_andesite_stairs": { "bedrock_identifier": "minecraft:polished_andesite_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 13922, "lastBlockRuntimeId": 14001 }, "minecraft:diorite_stairs": { "bedrock_identifier": "minecraft:diorite_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 14002, "lastBlockRuntimeId": 14081 }, "minecraft:cobbled_deepslate_stairs": { "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 24908, "lastBlockRuntimeId": 24987 }, "minecraft:polished_deepslate_stairs": { "bedrock_identifier": "minecraft:polished_deepslate_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 25319, "lastBlockRuntimeId": 25398 }, "minecraft:deepslate_brick_stairs": { "bedrock_identifier": "minecraft:deepslate_brick_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 26141, "lastBlockRuntimeId": 26220 }, "minecraft:deepslate_tile_stairs": { "bedrock_identifier": "minecraft:deepslate_tile_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 25730, "lastBlockRuntimeId": 25809 }, "minecraft:polished_granite_slab": { "bedrock_identifier": "minecraft:polished_granite_slab", "bedrock_data": 0, "firstBlockRuntimeId": 14082, "lastBlockRuntimeId": 14087 }, "minecraft:smooth_red_sandstone_slab": { "bedrock_identifier": "minecraft:smooth_red_sandstone_slab", "bedrock_data": 0, "firstBlockRuntimeId": 14088, "lastBlockRuntimeId": 14093 }, "minecraft:mossy_stone_brick_slab": { "bedrock_identifier": "minecraft:mossy_stone_brick_slab", "bedrock_data": 0, "firstBlockRuntimeId": 14094, "lastBlockRuntimeId": 14099 }, "minecraft:polished_diorite_slab": { "bedrock_identifier": "minecraft:polished_diorite_slab", "bedrock_data": 0, "firstBlockRuntimeId": 14100, "lastBlockRuntimeId": 14105 }, "minecraft:mossy_cobblestone_slab": { "bedrock_identifier": "minecraft:mossy_cobblestone_slab", "bedrock_data": 0, "firstBlockRuntimeId": 14106, "lastBlockRuntimeId": 14111 }, "minecraft:end_stone_brick_slab": { "bedrock_identifier": "minecraft:end_stone_brick_slab", "bedrock_data": 0, "firstBlockRuntimeId": 14112, "lastBlockRuntimeId": 14117 }, "minecraft:smooth_sandstone_slab": { "bedrock_identifier": "minecraft:smooth_sandstone_slab", "bedrock_data": 0, "firstBlockRuntimeId": 14118, "lastBlockRuntimeId": 14123 }, "minecraft:smooth_quartz_slab": { "bedrock_identifier": "minecraft:smooth_quartz_slab", "bedrock_data": 0, "firstBlockRuntimeId": 14124, "lastBlockRuntimeId": 14129 }, "minecraft:granite_slab": { "bedrock_identifier": "minecraft:granite_slab", "bedrock_data": 0, "firstBlockRuntimeId": 14130, "lastBlockRuntimeId": 14135 }, "minecraft:andesite_slab": { "bedrock_identifier": "minecraft:andesite_slab", "bedrock_data": 0, "firstBlockRuntimeId": 14136, "lastBlockRuntimeId": 14141 }, "minecraft:red_nether_brick_slab": { "bedrock_identifier": "minecraft:red_nether_brick_slab", "bedrock_data": 0, "firstBlockRuntimeId": 14142, "lastBlockRuntimeId": 14147 }, "minecraft:polished_andesite_slab": { "bedrock_identifier": "minecraft:polished_andesite_slab", "bedrock_data": 0, "firstBlockRuntimeId": 14148, "lastBlockRuntimeId": 14153 }, "minecraft:diorite_slab": { "bedrock_identifier": "minecraft:diorite_slab", "bedrock_data": 0, "firstBlockRuntimeId": 14154, "lastBlockRuntimeId": 14159 }, "minecraft:cobbled_deepslate_slab": { "bedrock_identifier": "minecraft:cobbled_deepslate_slab", "bedrock_data": 0, "firstBlockRuntimeId": 24988, "lastBlockRuntimeId": 24993 }, "minecraft:polished_deepslate_slab": { "bedrock_identifier": "minecraft:polished_deepslate_slab", "bedrock_data": 0, "firstBlockRuntimeId": 25399, "lastBlockRuntimeId": 25404 }, "minecraft:deepslate_brick_slab": { "bedrock_identifier": "minecraft:deepslate_brick_slab", "bedrock_data": 0, "firstBlockRuntimeId": 26221, "lastBlockRuntimeId": 26226 }, "minecraft:deepslate_tile_slab": { "bedrock_identifier": "minecraft:deepslate_tile_slab", "bedrock_data": 0, "firstBlockRuntimeId": 25810, "lastBlockRuntimeId": 25815 }, "minecraft:scaffolding": { "bedrock_identifier": "minecraft:scaffolding", "bedrock_data": 0, "firstBlockRuntimeId": 18372, "lastBlockRuntimeId": 18403 }, "minecraft:redstone": { "bedrock_identifier": "minecraft:redstone", "bedrock_data": 0, "firstBlockRuntimeId": 2978, "lastBlockRuntimeId": 4273 }, "minecraft:redstone_torch": { "bedrock_identifier": "minecraft:redstone_torch", "bedrock_data": 0, "firstBlockRuntimeId": 5738, "lastBlockRuntimeId": 5739 }, "minecraft:redstone_block": { "bedrock_identifier": "minecraft:redstone_block", "bedrock_data": 0, "firstBlockRuntimeId": 9223 }, "minecraft:repeater": { "bedrock_identifier": "minecraft:repeater", "bedrock_data": 0, "firstBlockRuntimeId": 5881, "lastBlockRuntimeId": 5944 }, "minecraft:comparator": { "bedrock_identifier": "minecraft:comparator", "bedrock_data": 0, "firstBlockRuntimeId": 9175, "lastBlockRuntimeId": 9190 }, "minecraft:piston": { "bedrock_identifier": "minecraft:piston", "bedrock_data": 1, "firstBlockRuntimeId": 2011, "lastBlockRuntimeId": 2022 }, "minecraft:sticky_piston": { "bedrock_identifier": "minecraft:sticky_piston", "bedrock_data": 1, "firstBlockRuntimeId": 1992, "lastBlockRuntimeId": 2003 }, "minecraft:slime_block": { "bedrock_identifier": "minecraft:slime", "bedrock_data": 0, "firstBlockRuntimeId": 10364 }, "minecraft:honey_block": { "bedrock_identifier": "minecraft:honey_block", "bedrock_data": 0, "firstBlockRuntimeId": 19445 }, "minecraft:observer": { "bedrock_identifier": "minecraft:observer", "bedrock_data": 0, "firstBlockRuntimeId": 12550, "lastBlockRuntimeId": 12561 }, "minecraft:hopper": { "bedrock_identifier": "minecraft:hopper", "bedrock_data": 0, "firstBlockRuntimeId": 9225, "lastBlockRuntimeId": 9234 }, "minecraft:dispenser": { "bedrock_identifier": "minecraft:dispenser", "bedrock_data": 3, "firstBlockRuntimeId": 523, "lastBlockRuntimeId": 534 }, "minecraft:dropper": { "bedrock_identifier": "minecraft:dropper", "bedrock_data": 3, "firstBlockRuntimeId": 9344, "lastBlockRuntimeId": 9355 }, "minecraft:lectern": { "bedrock_identifier": "minecraft:lectern", "bedrock_data": 0, "firstBlockRuntimeId": 18450, "lastBlockRuntimeId": 18465 }, "minecraft:target": { "bedrock_identifier": "minecraft:target", "bedrock_data": 0, "firstBlockRuntimeId": 19381, "lastBlockRuntimeId": 19396 }, "minecraft:lever": { "bedrock_identifier": "minecraft:lever", "bedrock_data": 0, "firstBlockRuntimeId": 5626, "lastBlockRuntimeId": 5649 }, "minecraft:lightning_rod": { "bedrock_identifier": "minecraft:lightning_rod", "bedrock_data": 0, "firstBlockRuntimeId": 24724, "lastBlockRuntimeId": 24747 }, "minecraft:daylight_detector": { "bedrock_identifier": "minecraft:daylight_detector", "bedrock_data": 0, "firstBlockRuntimeId": 9191, "lastBlockRuntimeId": 9222 }, "minecraft:sculk_sensor": { "bedrock_identifier": "minecraft:sculk_sensor", "bedrock_data": 0, "firstBlockRuntimeId": 22319, "lastBlockRuntimeId": 22414 }, "minecraft:calibrated_sculk_sensor": { "bedrock_identifier": "minecraft:calibrated_sculk_sensor", "bedrock_data": 0, "firstBlockRuntimeId": 22415, "lastBlockRuntimeId": 22798 }, "minecraft:tripwire_hook": { "bedrock_identifier": "minecraft:tripwire_hook", "bedrock_data": 0, "firstBlockRuntimeId": 7521, "lastBlockRuntimeId": 7536 }, "minecraft:trapped_chest": { "bedrock_identifier": "minecraft:trapped_chest", "bedrock_data": 0, "firstBlockRuntimeId": 9119, "lastBlockRuntimeId": 9142 }, "minecraft:tnt": { "bedrock_identifier": "minecraft:tnt", "bedrock_data": 0, "firstBlockRuntimeId": 2094, "lastBlockRuntimeId": 2095 }, "minecraft:redstone_lamp": { "bedrock_identifier": "minecraft:redstone_lamp", "bedrock_data": 0, "firstBlockRuntimeId": 7417, "lastBlockRuntimeId": 7418 }, "minecraft:note_block": { "bedrock_identifier": "minecraft:noteblock", "bedrock_data": 0, "firstBlockRuntimeId": 538, "lastBlockRuntimeId": 1687 }, "minecraft:stone_button": { "bedrock_identifier": "minecraft:stone_button", "bedrock_data": 0, "firstBlockRuntimeId": 5748, "lastBlockRuntimeId": 5771 }, "minecraft:polished_blackstone_button": { "bedrock_identifier": "minecraft:polished_blackstone_button", "bedrock_data": 0, "firstBlockRuntimeId": 20374, "lastBlockRuntimeId": 20397 }, "minecraft:oak_button": { "bedrock_identifier": "minecraft:wooden_button", "bedrock_data": 0, "firstBlockRuntimeId": 8611, "lastBlockRuntimeId": 8634 }, "minecraft:spruce_button": { "bedrock_identifier": "minecraft:spruce_button", "bedrock_data": 0, "firstBlockRuntimeId": 8635, "lastBlockRuntimeId": 8658 }, "minecraft:birch_button": { "bedrock_identifier": "minecraft:birch_button", "bedrock_data": 0, "firstBlockRuntimeId": 8659, "lastBlockRuntimeId": 8682 }, "minecraft:jungle_button": { "bedrock_identifier": "minecraft:jungle_button", "bedrock_data": 0, "firstBlockRuntimeId": 8683, "lastBlockRuntimeId": 8706 }, "minecraft:acacia_button": { "bedrock_identifier": "minecraft:acacia_button", "bedrock_data": 0, "firstBlockRuntimeId": 8707, "lastBlockRuntimeId": 8730 }, "minecraft:cherry_button": { "bedrock_identifier": "minecraft:cherry_button", "bedrock_data": 0, "firstBlockRuntimeId": 8731, "lastBlockRuntimeId": 8754 }, "minecraft:dark_oak_button": { "bedrock_identifier": "minecraft:dark_oak_button", "bedrock_data": 0, "firstBlockRuntimeId": 8755, "lastBlockRuntimeId": 8778 }, "minecraft:mangrove_button": { "bedrock_identifier": "minecraft:mangrove_button", "bedrock_data": 0, "firstBlockRuntimeId": 8779, "lastBlockRuntimeId": 8802 }, "minecraft:bamboo_button": { "bedrock_identifier": "minecraft:bamboo_button", "bedrock_data": 0, "firstBlockRuntimeId": 8803, "lastBlockRuntimeId": 8826 }, "minecraft:crimson_button": { "bedrock_identifier": "minecraft:crimson_button", "bedrock_data": 0, "firstBlockRuntimeId": 19100, "lastBlockRuntimeId": 19123 }, "minecraft:warped_button": { "bedrock_identifier": "minecraft:warped_button", "bedrock_data": 0, "firstBlockRuntimeId": 19124, "lastBlockRuntimeId": 19147 }, "minecraft:stone_pressure_plate": { "bedrock_identifier": "minecraft:stone_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 5650, "lastBlockRuntimeId": 5651 }, "minecraft:polished_blackstone_pressure_plate": { "bedrock_identifier": "minecraft:polished_blackstone_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 20372, "lastBlockRuntimeId": 20373 }, "minecraft:light_weighted_pressure_plate": { "bedrock_identifier": "minecraft:light_weighted_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 9143, "lastBlockRuntimeId": 9158 }, "minecraft:heavy_weighted_pressure_plate": { "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 9159, "lastBlockRuntimeId": 9174 }, "minecraft:oak_pressure_plate": { "bedrock_identifier": "minecraft:wooden_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 5716, "lastBlockRuntimeId": 5717 }, "minecraft:spruce_pressure_plate": { "bedrock_identifier": "minecraft:spruce_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 5718, "lastBlockRuntimeId": 5719 }, "minecraft:birch_pressure_plate": { "bedrock_identifier": "minecraft:birch_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 5720, "lastBlockRuntimeId": 5721 }, "minecraft:jungle_pressure_plate": { "bedrock_identifier": "minecraft:jungle_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 5722, "lastBlockRuntimeId": 5723 }, "minecraft:acacia_pressure_plate": { "bedrock_identifier": "minecraft:acacia_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 5724, "lastBlockRuntimeId": 5725 }, "minecraft:cherry_pressure_plate": { "bedrock_identifier": "minecraft:cherry_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 5726, "lastBlockRuntimeId": 5727 }, "minecraft:dark_oak_pressure_plate": { "bedrock_identifier": "minecraft:dark_oak_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 5728, "lastBlockRuntimeId": 5729 }, "minecraft:mangrove_pressure_plate": { "bedrock_identifier": "minecraft:mangrove_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 5730, "lastBlockRuntimeId": 5731 }, "minecraft:bamboo_pressure_plate": { "bedrock_identifier": "minecraft:bamboo_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 5732, "lastBlockRuntimeId": 5733 }, "minecraft:crimson_pressure_plate": { "bedrock_identifier": "minecraft:crimson_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 18680, "lastBlockRuntimeId": 18681 }, "minecraft:warped_pressure_plate": { "bedrock_identifier": "minecraft:warped_pressure_plate", "bedrock_data": 0, "firstBlockRuntimeId": 18682, "lastBlockRuntimeId": 18683 }, "minecraft:iron_door": { "bedrock_identifier": "minecraft:iron_door", "bedrock_data": 0, "firstBlockRuntimeId": 5652, "lastBlockRuntimeId": 5715 }, "minecraft:oak_door": { "bedrock_identifier": "minecraft:wooden_door", "bedrock_data": 0, "firstBlockRuntimeId": 4590, "lastBlockRuntimeId": 4653 }, "minecraft:spruce_door": { "bedrock_identifier": "minecraft:spruce_door", "bedrock_data": 0, "firstBlockRuntimeId": 11822, "lastBlockRuntimeId": 11885 }, "minecraft:birch_door": { "bedrock_identifier": "minecraft:birch_door", "bedrock_data": 0, "firstBlockRuntimeId": 11886, "lastBlockRuntimeId": 11949 }, "minecraft:jungle_door": { "bedrock_identifier": "minecraft:jungle_door", "bedrock_data": 0, "firstBlockRuntimeId": 11950, "lastBlockRuntimeId": 12013 }, "minecraft:acacia_door": { "bedrock_identifier": "minecraft:acacia_door", "bedrock_data": 0, "firstBlockRuntimeId": 12014, "lastBlockRuntimeId": 12077 }, "minecraft:cherry_door": { "bedrock_identifier": "minecraft:cherry_door", "bedrock_data": 0, "firstBlockRuntimeId": 12078, "lastBlockRuntimeId": 12141 }, "minecraft:dark_oak_door": { "bedrock_identifier": "minecraft:dark_oak_door", "bedrock_data": 0, "firstBlockRuntimeId": 12142, "lastBlockRuntimeId": 12205 }, "minecraft:mangrove_door": { "bedrock_identifier": "minecraft:mangrove_door", "bedrock_data": 0, "firstBlockRuntimeId": 12206, "lastBlockRuntimeId": 12269 }, "minecraft:bamboo_door": { "bedrock_identifier": "minecraft:bamboo_door", "bedrock_data": 0, "firstBlockRuntimeId": 12270, "lastBlockRuntimeId": 12333 }, "minecraft:crimson_door": { "bedrock_identifier": "minecraft:crimson_door", "bedrock_data": 0, "firstBlockRuntimeId": 19148, "lastBlockRuntimeId": 19211 }, "minecraft:warped_door": { "bedrock_identifier": "minecraft:warped_door", "bedrock_data": 0, "firstBlockRuntimeId": 19212, "lastBlockRuntimeId": 19275 }, "minecraft:copper_door": { "bedrock_identifier": "minecraft:copper_door", "bedrock_data": 0, "firstBlockRuntimeId": 23652, "lastBlockRuntimeId": 23715 }, "minecraft:exposed_copper_door": { "bedrock_identifier": "minecraft:exposed_copper_door", "bedrock_data": 0, "firstBlockRuntimeId": 23716, "lastBlockRuntimeId": 23779 }, "minecraft:weathered_copper_door": { "bedrock_identifier": "minecraft:weathered_copper_door", "bedrock_data": 0, "firstBlockRuntimeId": 23844, "lastBlockRuntimeId": 23907 }, "minecraft:oxidized_copper_door": { "bedrock_identifier": "minecraft:oxidized_copper_door", "bedrock_data": 0, "firstBlockRuntimeId": 23780, "lastBlockRuntimeId": 23843 }, "minecraft:waxed_copper_door": { "bedrock_identifier": "minecraft:waxed_copper_door", "bedrock_data": 0, "firstBlockRuntimeId": 23908, "lastBlockRuntimeId": 23971 }, "minecraft:waxed_exposed_copper_door": { "bedrock_identifier": "minecraft:waxed_exposed_copper_door", "bedrock_data": 0, "firstBlockRuntimeId": 23972, "lastBlockRuntimeId": 24035 }, "minecraft:waxed_weathered_copper_door": { "bedrock_identifier": "minecraft:waxed_weathered_copper_door", "bedrock_data": 0, "firstBlockRuntimeId": 24100, "lastBlockRuntimeId": 24163 }, "minecraft:waxed_oxidized_copper_door": { "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", "bedrock_data": 0, "firstBlockRuntimeId": 24036, "lastBlockRuntimeId": 24099 }, "minecraft:iron_trapdoor": { "bedrock_identifier": "minecraft:iron_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 10399, "lastBlockRuntimeId": 10462 }, "minecraft:oak_trapdoor": { "bedrock_identifier": "minecraft:trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 5961, "lastBlockRuntimeId": 6024 }, "minecraft:spruce_trapdoor": { "bedrock_identifier": "minecraft:spruce_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 6025, "lastBlockRuntimeId": 6088 }, "minecraft:birch_trapdoor": { "bedrock_identifier": "minecraft:birch_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 6089, "lastBlockRuntimeId": 6152 }, "minecraft:jungle_trapdoor": { "bedrock_identifier": "minecraft:jungle_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 6153, "lastBlockRuntimeId": 6216 }, "minecraft:acacia_trapdoor": { "bedrock_identifier": "minecraft:acacia_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 6217, "lastBlockRuntimeId": 6280 }, "minecraft:cherry_trapdoor": { "bedrock_identifier": "minecraft:cherry_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 6281, "lastBlockRuntimeId": 6344 }, "minecraft:dark_oak_trapdoor": { "bedrock_identifier": "minecraft:dark_oak_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 6345, "lastBlockRuntimeId": 6408 }, "minecraft:mangrove_trapdoor": { "bedrock_identifier": "minecraft:mangrove_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 6409, "lastBlockRuntimeId": 6472 }, "minecraft:bamboo_trapdoor": { "bedrock_identifier": "minecraft:bamboo_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 6473, "lastBlockRuntimeId": 6536 }, "minecraft:crimson_trapdoor": { "bedrock_identifier": "minecraft:crimson_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 18748, "lastBlockRuntimeId": 18811 }, "minecraft:warped_trapdoor": { "bedrock_identifier": "minecraft:warped_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 18812, "lastBlockRuntimeId": 18875 }, "minecraft:copper_trapdoor": { "bedrock_identifier": "minecraft:copper_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 24164, "lastBlockRuntimeId": 24227 }, "minecraft:exposed_copper_trapdoor": { "bedrock_identifier": "minecraft:exposed_copper_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 24228, "lastBlockRuntimeId": 24291 }, "minecraft:weathered_copper_trapdoor": { "bedrock_identifier": "minecraft:weathered_copper_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 24356, "lastBlockRuntimeId": 24419 }, "minecraft:oxidized_copper_trapdoor": { "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 24292, "lastBlockRuntimeId": 24355 }, "minecraft:waxed_copper_trapdoor": { "bedrock_identifier": "minecraft:waxed_copper_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 24420, "lastBlockRuntimeId": 24483 }, "minecraft:waxed_exposed_copper_trapdoor": { "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 24484, "lastBlockRuntimeId": 24547 }, "minecraft:waxed_weathered_copper_trapdoor": { "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 24612, "lastBlockRuntimeId": 24675 }, "minecraft:waxed_oxidized_copper_trapdoor": { "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", "bedrock_data": 0, "firstBlockRuntimeId": 24548, "lastBlockRuntimeId": 24611 }, "minecraft:oak_fence_gate": { "bedrock_identifier": "minecraft:fence_gate", "bedrock_data": 0, "firstBlockRuntimeId": 6997, "lastBlockRuntimeId": 7028 }, "minecraft:spruce_fence_gate": { "bedrock_identifier": "minecraft:spruce_fence_gate", "bedrock_data": 0, "firstBlockRuntimeId": 11310, "lastBlockRuntimeId": 11341 }, "minecraft:birch_fence_gate": { "bedrock_identifier": "minecraft:birch_fence_gate", "bedrock_data": 0, "firstBlockRuntimeId": 11342, "lastBlockRuntimeId": 11373 }, "minecraft:jungle_fence_gate": { "bedrock_identifier": "minecraft:jungle_fence_gate", "bedrock_data": 0, "firstBlockRuntimeId": 11374, "lastBlockRuntimeId": 11405 }, "minecraft:acacia_fence_gate": { "bedrock_identifier": "minecraft:acacia_fence_gate", "bedrock_data": 0, "firstBlockRuntimeId": 11406, "lastBlockRuntimeId": 11437 }, "minecraft:cherry_fence_gate": { "bedrock_identifier": "minecraft:cherry_fence_gate", "bedrock_data": 0, "firstBlockRuntimeId": 11438, "lastBlockRuntimeId": 11469 }, "minecraft:dark_oak_fence_gate": { "bedrock_identifier": "minecraft:dark_oak_fence_gate", "bedrock_data": 0, "firstBlockRuntimeId": 11470, "lastBlockRuntimeId": 11501 }, "minecraft:mangrove_fence_gate": { "bedrock_identifier": "minecraft:mangrove_fence_gate", "bedrock_data": 0, "firstBlockRuntimeId": 11502, "lastBlockRuntimeId": 11533 }, "minecraft:bamboo_fence_gate": { "bedrock_identifier": "minecraft:bamboo_fence_gate", "bedrock_data": 0, "firstBlockRuntimeId": 11534, "lastBlockRuntimeId": 11565 }, "minecraft:crimson_fence_gate": { "bedrock_identifier": "minecraft:crimson_fence_gate", "bedrock_data": 0, "firstBlockRuntimeId": 18876, "lastBlockRuntimeId": 18907 }, "minecraft:warped_fence_gate": { "bedrock_identifier": "minecraft:warped_fence_gate", "bedrock_data": 0, "firstBlockRuntimeId": 18908, "lastBlockRuntimeId": 18939 }, "minecraft:powered_rail": { "bedrock_identifier": "minecraft:golden_rail", "bedrock_data": 0, "firstBlockRuntimeId": 1944, "lastBlockRuntimeId": 1967 }, "minecraft:detector_rail": { "bedrock_identifier": "minecraft:detector_rail", "bedrock_data": 0, "firstBlockRuntimeId": 1968, "lastBlockRuntimeId": 1991 }, "minecraft:rail": { "bedrock_identifier": "minecraft:rail", "bedrock_data": 0, "firstBlockRuntimeId": 4662, "lastBlockRuntimeId": 4681 }, "minecraft:activator_rail": { "bedrock_identifier": "minecraft:activator_rail", "bedrock_data": 0, "firstBlockRuntimeId": 9320, "lastBlockRuntimeId": 9343 }, "minecraft:saddle": { "bedrock_identifier": "minecraft:saddle", "bedrock_data": 0 }, "minecraft:minecart": { "bedrock_identifier": "minecraft:minecart", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:chest_minecart": { "bedrock_identifier": "minecraft:chest_minecart", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:furnace_minecart": { "bedrock_identifier": "minecraft:hopper_minecart", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:tnt_minecart": { "bedrock_identifier": "minecraft:tnt_minecart", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:hopper_minecart": { "bedrock_identifier": "minecraft:hopper_minecart", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:carrot_on_a_stick": { "bedrock_identifier": "minecraft:carrot_on_a_stick", "bedrock_data": 0 }, "minecraft:warped_fungus_on_a_stick": { "bedrock_identifier": "minecraft:warped_fungus_on_a_stick", "bedrock_data": 0 }, "minecraft:elytra": { "bedrock_identifier": "minecraft:elytra", "bedrock_data": 0, "repair_materials": [ "minecraft:phantom_membrane" ] }, "minecraft:oak_boat": { "bedrock_identifier": "minecraft:oak_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:oak_chest_boat": { "bedrock_identifier": "minecraft:oak_chest_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:spruce_boat": { "bedrock_identifier": "minecraft:spruce_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:spruce_chest_boat": { "bedrock_identifier": "minecraft:spruce_chest_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:birch_boat": { "bedrock_identifier": "minecraft:birch_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:birch_chest_boat": { "bedrock_identifier": "minecraft:birch_chest_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:jungle_boat": { "bedrock_identifier": "minecraft:jungle_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:jungle_chest_boat": { "bedrock_identifier": "minecraft:jungle_chest_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:acacia_boat": { "bedrock_identifier": "minecraft:acacia_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:acacia_chest_boat": { "bedrock_identifier": "minecraft:acacia_chest_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:cherry_boat": { "bedrock_identifier": "minecraft:cherry_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:cherry_chest_boat": { "bedrock_identifier": "minecraft:cherry_chest_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:dark_oak_boat": { "bedrock_identifier": "minecraft:dark_oak_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:dark_oak_chest_boat": { "bedrock_identifier": "minecraft:dark_oak_chest_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:mangrove_boat": { "bedrock_identifier": "minecraft:mangrove_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:mangrove_chest_boat": { "bedrock_identifier": "minecraft:mangrove_chest_boat", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:bamboo_raft": { "bedrock_identifier": "minecraft:bamboo_raft", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:bamboo_chest_raft": { "bedrock_identifier": "minecraft:bamboo_chest_raft", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:structure_block": { "bedrock_identifier": "minecraft:structure_block", "bedrock_data": 0, "firstBlockRuntimeId": 19356, "lastBlockRuntimeId": 19359 }, "minecraft:jigsaw": { "bedrock_identifier": "minecraft:jigsaw", "bedrock_data": 0, "firstBlockRuntimeId": 19360, "lastBlockRuntimeId": 19371 }, "minecraft:turtle_helmet": { "bedrock_identifier": "minecraft:turtle_helmet", "bedrock_data": 0, "armor_type": "helmet", "protection_value": 2, "repair_materials": [ "minecraft:turtle_scute" ] }, "minecraft:turtle_scute": { "bedrock_identifier": "minecraft:turtle_scute", "bedrock_data": 0 }, "minecraft:armadillo_scute": { "bedrock_identifier": "minecraft:armadillo_scute", "bedrock_data": 0 }, "minecraft:wolf_armor": { "bedrock_identifier": "minecraft:wolf_armor", "bedrock_data": 0, "protection_value": 11, "repair_materials": [ "minecraft:armadillo_scute" ] }, "minecraft:flint_and_steel": { "bedrock_identifier": "minecraft:flint_and_steel", "bedrock_data": 0 }, "minecraft:bowl": { "bedrock_identifier": "minecraft:bowl", "bedrock_data": 0 }, "minecraft:apple": { "bedrock_identifier": "minecraft:apple", "bedrock_data": 0, "is_edible": true }, "minecraft:bow": { "bedrock_identifier": "minecraft:bow", "bedrock_data": 0 }, "minecraft:arrow": { "bedrock_identifier": "minecraft:arrow", "bedrock_data": 0 }, "minecraft:coal": { "bedrock_identifier": "minecraft:coal", "bedrock_data": 0 }, "minecraft:charcoal": { "bedrock_identifier": "minecraft:charcoal", "bedrock_data": 0 }, "minecraft:diamond": { "bedrock_identifier": "minecraft:diamond", "bedrock_data": 0 }, "minecraft:emerald": { "bedrock_identifier": "minecraft:emerald", "bedrock_data": 0 }, "minecraft:lapis_lazuli": { "bedrock_identifier": "minecraft:lapis_lazuli", "bedrock_data": 0 }, "minecraft:quartz": { "bedrock_identifier": "minecraft:quartz", "bedrock_data": 0 }, "minecraft:amethyst_shard": { "bedrock_identifier": "minecraft:amethyst_shard", "bedrock_data": 0 }, "minecraft:raw_iron": { "bedrock_identifier": "minecraft:raw_iron", "bedrock_data": 0 }, "minecraft:iron_ingot": { "bedrock_identifier": "minecraft:iron_ingot", "bedrock_data": 0 }, "minecraft:raw_copper": { "bedrock_identifier": "minecraft:raw_copper", "bedrock_data": 0 }, "minecraft:copper_ingot": { "bedrock_identifier": "minecraft:copper_ingot", "bedrock_data": 0 }, "minecraft:raw_gold": { "bedrock_identifier": "minecraft:raw_gold", "bedrock_data": 0 }, "minecraft:gold_ingot": { "bedrock_identifier": "minecraft:gold_ingot", "bedrock_data": 0 }, "minecraft:netherite_ingot": { "bedrock_identifier": "minecraft:netherite_ingot", "bedrock_data": 0 }, "minecraft:netherite_scrap": { "bedrock_identifier": "minecraft:netherite_scrap", "bedrock_data": 0 }, "minecraft:wooden_sword": { "bedrock_identifier": "minecraft:wooden_sword", "bedrock_data": 0, "tool_type": "sword", "tool_tier": "wooden", "repair_materials": [ "minecraft:oak_planks", "minecraft:spruce_planks", "minecraft:birch_planks", "minecraft:jungle_planks", "minecraft:acacia_planks", "minecraft:cherry_planks", "minecraft:dark_oak_planks", "minecraft:mangrove_planks", "minecraft:bamboo_planks", "minecraft:crimson_planks", "minecraft:warped_planks" ] }, "minecraft:wooden_shovel": { "bedrock_identifier": "minecraft:wooden_shovel", "bedrock_data": 0, "tool_type": "shovel", "tool_tier": "wooden", "repair_materials": [ "minecraft:oak_planks", "minecraft:spruce_planks", "minecraft:birch_planks", "minecraft:jungle_planks", "minecraft:acacia_planks", "minecraft:cherry_planks", "minecraft:dark_oak_planks", "minecraft:mangrove_planks", "minecraft:bamboo_planks", "minecraft:crimson_planks", "minecraft:warped_planks" ] }, "minecraft:wooden_pickaxe": { "bedrock_identifier": "minecraft:wooden_pickaxe", "bedrock_data": 0, "tool_type": "pickaxe", "tool_tier": "wooden", "repair_materials": [ "minecraft:oak_planks", "minecraft:spruce_planks", "minecraft:birch_planks", "minecraft:jungle_planks", "minecraft:acacia_planks", "minecraft:cherry_planks", "minecraft:dark_oak_planks", "minecraft:mangrove_planks", "minecraft:bamboo_planks", "minecraft:crimson_planks", "minecraft:warped_planks" ] }, "minecraft:wooden_axe": { "bedrock_identifier": "minecraft:wooden_axe", "bedrock_data": 0, "tool_type": "axe", "tool_tier": "wooden", "repair_materials": [ "minecraft:oak_planks", "minecraft:spruce_planks", "minecraft:birch_planks", "minecraft:jungle_planks", "minecraft:acacia_planks", "minecraft:cherry_planks", "minecraft:dark_oak_planks", "minecraft:mangrove_planks", "minecraft:bamboo_planks", "minecraft:crimson_planks", "minecraft:warped_planks" ] }, "minecraft:wooden_hoe": { "bedrock_identifier": "minecraft:wooden_hoe", "bedrock_data": 0, "tool_type": "hoe", "tool_tier": "wooden", "repair_materials": [ "minecraft:oak_planks", "minecraft:spruce_planks", "minecraft:birch_planks", "minecraft:jungle_planks", "minecraft:acacia_planks", "minecraft:cherry_planks", "minecraft:dark_oak_planks", "minecraft:mangrove_planks", "minecraft:bamboo_planks", "minecraft:crimson_planks", "minecraft:warped_planks" ] }, "minecraft:stone_sword": { "bedrock_identifier": "minecraft:stone_sword", "bedrock_data": 0, "tool_type": "sword", "tool_tier": "stone", "repair_materials": [ "minecraft:cobblestone", "minecraft:cobbled_deepslate", "minecraft:blackstone" ] }, "minecraft:stone_shovel": { "bedrock_identifier": "minecraft:stone_shovel", "bedrock_data": 0, "tool_type": "shovel", "tool_tier": "stone", "repair_materials": [ "minecraft:cobblestone", "minecraft:cobbled_deepslate", "minecraft:blackstone" ] }, "minecraft:stone_pickaxe": { "bedrock_identifier": "minecraft:stone_pickaxe", "bedrock_data": 0, "tool_type": "pickaxe", "tool_tier": "stone", "repair_materials": [ "minecraft:cobblestone", "minecraft:cobbled_deepslate", "minecraft:blackstone" ] }, "minecraft:stone_axe": { "bedrock_identifier": "minecraft:stone_axe", "bedrock_data": 0, "tool_type": "axe", "tool_tier": "stone", "repair_materials": [ "minecraft:cobblestone", "minecraft:cobbled_deepslate", "minecraft:blackstone" ] }, "minecraft:stone_hoe": { "bedrock_identifier": "minecraft:stone_hoe", "bedrock_data": 0, "tool_type": "hoe", "tool_tier": "stone", "repair_materials": [ "minecraft:cobblestone", "minecraft:cobbled_deepslate", "minecraft:blackstone" ] }, "minecraft:golden_sword": { "bedrock_identifier": "minecraft:golden_sword", "bedrock_data": 0, "tool_type": "sword", "tool_tier": "golden", "repair_materials": [ "minecraft:gold_ingot" ] }, "minecraft:golden_shovel": { "bedrock_identifier": "minecraft:golden_shovel", "bedrock_data": 0, "tool_type": "shovel", "tool_tier": "golden", "repair_materials": [ "minecraft:gold_ingot" ] }, "minecraft:golden_pickaxe": { "bedrock_identifier": "minecraft:golden_pickaxe", "bedrock_data": 0, "tool_type": "pickaxe", "tool_tier": "golden", "repair_materials": [ "minecraft:gold_ingot" ] }, "minecraft:golden_axe": { "bedrock_identifier": "minecraft:golden_axe", "bedrock_data": 0, "tool_type": "axe", "tool_tier": "golden", "repair_materials": [ "minecraft:gold_ingot" ] }, "minecraft:golden_hoe": { "bedrock_identifier": "minecraft:golden_hoe", "bedrock_data": 0, "tool_type": "hoe", "tool_tier": "golden", "repair_materials": [ "minecraft:gold_ingot" ] }, "minecraft:iron_sword": { "bedrock_identifier": "minecraft:iron_sword", "bedrock_data": 0, "tool_type": "sword", "tool_tier": "iron", "repair_materials": [ "minecraft:iron_ingot" ] }, "minecraft:iron_shovel": { "bedrock_identifier": "minecraft:iron_shovel", "bedrock_data": 0, "tool_type": "shovel", "tool_tier": "iron", "repair_materials": [ "minecraft:iron_ingot" ] }, "minecraft:iron_pickaxe": { "bedrock_identifier": "minecraft:iron_pickaxe", "bedrock_data": 0, "tool_type": "pickaxe", "tool_tier": "iron", "repair_materials": [ "minecraft:iron_ingot" ] }, "minecraft:iron_axe": { "bedrock_identifier": "minecraft:iron_axe", "bedrock_data": 0, "tool_type": "axe", "tool_tier": "iron", "repair_materials": [ "minecraft:iron_ingot" ] }, "minecraft:iron_hoe": { "bedrock_identifier": "minecraft:iron_hoe", "bedrock_data": 0, "tool_type": "hoe", "tool_tier": "iron", "repair_materials": [ "minecraft:iron_ingot" ] }, "minecraft:diamond_sword": { "bedrock_identifier": "minecraft:diamond_sword", "bedrock_data": 0, "tool_type": "sword", "tool_tier": "diamond", "repair_materials": [ "minecraft:diamond" ] }, "minecraft:diamond_shovel": { "bedrock_identifier": "minecraft:diamond_shovel", "bedrock_data": 0, "tool_type": "shovel", "tool_tier": "diamond", "repair_materials": [ "minecraft:diamond" ] }, "minecraft:diamond_pickaxe": { "bedrock_identifier": "minecraft:diamond_pickaxe", "bedrock_data": 0, "tool_type": "pickaxe", "tool_tier": "diamond", "repair_materials": [ "minecraft:diamond" ] }, "minecraft:diamond_axe": { "bedrock_identifier": "minecraft:diamond_axe", "bedrock_data": 0, "tool_type": "axe", "tool_tier": "diamond", "repair_materials": [ "minecraft:diamond" ] }, "minecraft:diamond_hoe": { "bedrock_identifier": "minecraft:diamond_hoe", "bedrock_data": 0, "tool_type": "hoe", "tool_tier": "diamond", "repair_materials": [ "minecraft:diamond" ] }, "minecraft:netherite_sword": { "bedrock_identifier": "minecraft:netherite_sword", "bedrock_data": 0, "tool_type": "sword", "tool_tier": "netherite", "repair_materials": [ "minecraft:netherite_ingot" ] }, "minecraft:netherite_shovel": { "bedrock_identifier": "minecraft:netherite_shovel", "bedrock_data": 0, "tool_type": "shovel", "tool_tier": "netherite", "repair_materials": [ "minecraft:netherite_ingot" ] }, "minecraft:netherite_pickaxe": { "bedrock_identifier": "minecraft:netherite_pickaxe", "bedrock_data": 0, "tool_type": "pickaxe", "tool_tier": "netherite", "repair_materials": [ "minecraft:netherite_ingot" ] }, "minecraft:netherite_axe": { "bedrock_identifier": "minecraft:netherite_axe", "bedrock_data": 0, "tool_type": "axe", "tool_tier": "netherite", "repair_materials": [ "minecraft:netherite_ingot" ] }, "minecraft:netherite_hoe": { "bedrock_identifier": "minecraft:netherite_hoe", "bedrock_data": 0, "tool_type": "hoe", "tool_tier": "netherite", "repair_materials": [ "minecraft:netherite_ingot" ] }, "minecraft:stick": { "bedrock_identifier": "minecraft:stick", "bedrock_data": 0 }, "minecraft:mushroom_stew": { "bedrock_identifier": "minecraft:mushroom_stew", "bedrock_data": 0, "is_edible": true }, "minecraft:string": { "bedrock_identifier": "minecraft:string", "bedrock_data": 0, "firstBlockRuntimeId": 7537, "lastBlockRuntimeId": 7664 }, "minecraft:feather": { "bedrock_identifier": "minecraft:feather", "bedrock_data": 0 }, "minecraft:gunpowder": { "bedrock_identifier": "minecraft:gunpowder", "bedrock_data": 0 }, "minecraft:wheat_seeds": { "bedrock_identifier": "minecraft:wheat_seeds", "bedrock_data": 0, "firstBlockRuntimeId": 4278, "lastBlockRuntimeId": 4285 }, "minecraft:wheat": { "bedrock_identifier": "minecraft:wheat", "bedrock_data": 0 }, "minecraft:bread": { "bedrock_identifier": "minecraft:bread", "bedrock_data": 0, "is_edible": true }, "minecraft:leather_helmet": { "bedrock_identifier": "minecraft:leather_helmet", "bedrock_data": 0, "armor_type": "helmet", "protection_value": 1, "repair_materials": [ "minecraft:leather" ] }, "minecraft:leather_chestplate": { "bedrock_identifier": "minecraft:leather_chestplate", "bedrock_data": 0, "armor_type": "chestplate", "protection_value": 3, "repair_materials": [ "minecraft:leather" ] }, "minecraft:leather_leggings": { "bedrock_identifier": "minecraft:leather_leggings", "bedrock_data": 0, "armor_type": "leggings", "protection_value": 2, "repair_materials": [ "minecraft:leather" ] }, "minecraft:leather_boots": { "bedrock_identifier": "minecraft:leather_boots", "bedrock_data": 0, "armor_type": "boots", "protection_value": 1, "repair_materials": [ "minecraft:leather" ] }, "minecraft:chainmail_helmet": { "bedrock_identifier": "minecraft:chainmail_helmet", "bedrock_data": 0, "armor_type": "helmet", "protection_value": 2, "repair_materials": [ "minecraft:iron_ingot" ] }, "minecraft:chainmail_chestplate": { "bedrock_identifier": "minecraft:chainmail_chestplate", "bedrock_data": 0, "armor_type": "chestplate", "protection_value": 5, "repair_materials": [ "minecraft:iron_ingot" ] }, "minecraft:chainmail_leggings": { "bedrock_identifier": "minecraft:chainmail_leggings", "bedrock_data": 0, "armor_type": "leggings", "protection_value": 4, "repair_materials": [ "minecraft:iron_ingot" ] }, "minecraft:chainmail_boots": { "bedrock_identifier": "minecraft:chainmail_boots", "bedrock_data": 0, "armor_type": "boots", "protection_value": 1, "repair_materials": [ "minecraft:iron_ingot" ] }, "minecraft:iron_helmet": { "bedrock_identifier": "minecraft:iron_helmet", "bedrock_data": 0, "armor_type": "helmet", "protection_value": 2, "repair_materials": [ "minecraft:iron_ingot" ] }, "minecraft:iron_chestplate": { "bedrock_identifier": "minecraft:iron_chestplate", "bedrock_data": 0, "armor_type": "chestplate", "protection_value": 6, "repair_materials": [ "minecraft:iron_ingot" ] }, "minecraft:iron_leggings": { "bedrock_identifier": "minecraft:iron_leggings", "bedrock_data": 0, "armor_type": "leggings", "protection_value": 5, "repair_materials": [ "minecraft:iron_ingot" ] }, "minecraft:iron_boots": { "bedrock_identifier": "minecraft:iron_boots", "bedrock_data": 0, "armor_type": "boots", "protection_value": 2, "repair_materials": [ "minecraft:iron_ingot" ] }, "minecraft:diamond_helmet": { "bedrock_identifier": "minecraft:diamond_helmet", "bedrock_data": 0, "armor_type": "helmet", "protection_value": 3, "repair_materials": [ "minecraft:diamond" ] }, "minecraft:diamond_chestplate": { "bedrock_identifier": "minecraft:diamond_chestplate", "bedrock_data": 0, "armor_type": "chestplate", "protection_value": 8, "repair_materials": [ "minecraft:diamond" ] }, "minecraft:diamond_leggings": { "bedrock_identifier": "minecraft:diamond_leggings", "bedrock_data": 0, "armor_type": "leggings", "protection_value": 6, "repair_materials": [ "minecraft:diamond" ] }, "minecraft:diamond_boots": { "bedrock_identifier": "minecraft:diamond_boots", "bedrock_data": 0, "armor_type": "boots", "protection_value": 3, "repair_materials": [ "minecraft:diamond" ] }, "minecraft:golden_helmet": { "bedrock_identifier": "minecraft:golden_helmet", "bedrock_data": 0, "armor_type": "helmet", "protection_value": 2, "repair_materials": [ "minecraft:gold_ingot" ] }, "minecraft:golden_chestplate": { "bedrock_identifier": "minecraft:golden_chestplate", "bedrock_data": 0, "armor_type": "chestplate", "protection_value": 5, "repair_materials": [ "minecraft:gold_ingot" ] }, "minecraft:golden_leggings": { "bedrock_identifier": "minecraft:golden_leggings", "bedrock_data": 0, "armor_type": "leggings", "protection_value": 3, "repair_materials": [ "minecraft:gold_ingot" ] }, "minecraft:golden_boots": { "bedrock_identifier": "minecraft:golden_boots", "bedrock_data": 0, "armor_type": "boots", "protection_value": 1, "repair_materials": [ "minecraft:gold_ingot" ] }, "minecraft:netherite_helmet": { "bedrock_identifier": "minecraft:netherite_helmet", "bedrock_data": 0, "armor_type": "helmet", "protection_value": 3, "repair_materials": [ "minecraft:netherite_ingot" ] }, "minecraft:netherite_chestplate": { "bedrock_identifier": "minecraft:netherite_chestplate", "bedrock_data": 0, "armor_type": "chestplate", "protection_value": 8, "repair_materials": [ "minecraft:netherite_ingot" ] }, "minecraft:netherite_leggings": { "bedrock_identifier": "minecraft:netherite_leggings", "bedrock_data": 0, "armor_type": "leggings", "protection_value": 6, "repair_materials": [ "minecraft:netherite_ingot" ] }, "minecraft:netherite_boots": { "bedrock_identifier": "minecraft:netherite_boots", "bedrock_data": 0, "armor_type": "boots", "protection_value": 3, "repair_materials": [ "minecraft:netherite_ingot" ] }, "minecraft:flint": { "bedrock_identifier": "minecraft:flint", "bedrock_data": 0 }, "minecraft:porkchop": { "bedrock_identifier": "minecraft:porkchop", "bedrock_data": 0, "is_edible": true }, "minecraft:cooked_porkchop": { "bedrock_identifier": "minecraft:cooked_porkchop", "bedrock_data": 0, "is_edible": true }, "minecraft:painting": { "bedrock_identifier": "minecraft:painting", "bedrock_data": 0 }, "minecraft:golden_apple": { "bedrock_identifier": "minecraft:golden_apple", "bedrock_data": 0, "is_edible": true }, "minecraft:enchanted_golden_apple": { "bedrock_identifier": "minecraft:enchanted_golden_apple", "bedrock_data": 0, "is_edible": true }, "minecraft:oak_sign": { "bedrock_identifier": "minecraft:oak_sign", "bedrock_data": 0, "firstBlockRuntimeId": 4302, "lastBlockRuntimeId": 4333 }, "minecraft:spruce_sign": { "bedrock_identifier": "minecraft:spruce_sign", "bedrock_data": 0, "firstBlockRuntimeId": 4334, "lastBlockRuntimeId": 4365 }, "minecraft:birch_sign": { "bedrock_identifier": "minecraft:birch_sign", "bedrock_data": 0, "firstBlockRuntimeId": 4366, "lastBlockRuntimeId": 4397 }, "minecraft:jungle_sign": { "bedrock_identifier": "minecraft:jungle_sign", "bedrock_data": 0, "firstBlockRuntimeId": 4462, "lastBlockRuntimeId": 4493 }, "minecraft:acacia_sign": { "bedrock_identifier": "minecraft:acacia_sign", "bedrock_data": 0, "firstBlockRuntimeId": 4398, "lastBlockRuntimeId": 4429 }, "minecraft:cherry_sign": { "bedrock_identifier": "minecraft:cherry_sign", "bedrock_data": 0, "firstBlockRuntimeId": 4430, "lastBlockRuntimeId": 4461 }, "minecraft:dark_oak_sign": { "bedrock_identifier": "minecraft:dark_oak_sign", "bedrock_data": 0, "firstBlockRuntimeId": 4494, "lastBlockRuntimeId": 4525 }, "minecraft:mangrove_sign": { "bedrock_identifier": "minecraft:mangrove_sign", "bedrock_data": 0, "firstBlockRuntimeId": 4526, "lastBlockRuntimeId": 4557 }, "minecraft:bamboo_sign": { "bedrock_identifier": "minecraft:bamboo_sign", "bedrock_data": 0, "firstBlockRuntimeId": 4558, "lastBlockRuntimeId": 4589 }, "minecraft:crimson_sign": { "bedrock_identifier": "minecraft:crimson_sign", "bedrock_data": 0, "firstBlockRuntimeId": 19276, "lastBlockRuntimeId": 19307 }, "minecraft:warped_sign": { "bedrock_identifier": "minecraft:warped_sign", "bedrock_data": 0, "firstBlockRuntimeId": 19308, "lastBlockRuntimeId": 19339 }, "minecraft:oak_hanging_sign": { "bedrock_identifier": "minecraft:oak_hanging_sign", "bedrock_data": 0, "firstBlockRuntimeId": 4834, "lastBlockRuntimeId": 4897 }, "minecraft:spruce_hanging_sign": { "bedrock_identifier": "minecraft:spruce_hanging_sign", "bedrock_data": 0, "firstBlockRuntimeId": 4898, "lastBlockRuntimeId": 4961 }, "minecraft:birch_hanging_sign": { "bedrock_identifier": "minecraft:birch_hanging_sign", "bedrock_data": 0, "firstBlockRuntimeId": 4962, "lastBlockRuntimeId": 5025 }, "minecraft:jungle_hanging_sign": { "bedrock_identifier": "minecraft:jungle_hanging_sign", "bedrock_data": 0, "firstBlockRuntimeId": 5154, "lastBlockRuntimeId": 5217 }, "minecraft:acacia_hanging_sign": { "bedrock_identifier": "minecraft:acacia_hanging_sign", "bedrock_data": 0, "firstBlockRuntimeId": 5026, "lastBlockRuntimeId": 5089 }, "minecraft:cherry_hanging_sign": { "bedrock_identifier": "minecraft:cherry_hanging_sign", "bedrock_data": 0, "firstBlockRuntimeId": 5090, "lastBlockRuntimeId": 5153 }, "minecraft:dark_oak_hanging_sign": { "bedrock_identifier": "minecraft:dark_oak_hanging_sign", "bedrock_data": 0, "firstBlockRuntimeId": 5218, "lastBlockRuntimeId": 5281 }, "minecraft:mangrove_hanging_sign": { "bedrock_identifier": "minecraft:mangrove_hanging_sign", "bedrock_data": 0, "firstBlockRuntimeId": 5410, "lastBlockRuntimeId": 5473 }, "minecraft:bamboo_hanging_sign": { "bedrock_identifier": "minecraft:bamboo_hanging_sign", "bedrock_data": 0, "firstBlockRuntimeId": 5474, "lastBlockRuntimeId": 5537 }, "minecraft:crimson_hanging_sign": { "bedrock_identifier": "minecraft:crimson_hanging_sign", "bedrock_data": 0, "firstBlockRuntimeId": 5282, "lastBlockRuntimeId": 5345 }, "minecraft:warped_hanging_sign": { "bedrock_identifier": "minecraft:warped_hanging_sign", "bedrock_data": 0, "firstBlockRuntimeId": 5346, "lastBlockRuntimeId": 5409 }, "minecraft:bucket": { "bedrock_identifier": "minecraft:bucket", "bedrock_data": 0 }, "minecraft:water_bucket": { "bedrock_identifier": "minecraft:water_bucket", "bedrock_data": 0 }, "minecraft:lava_bucket": { "bedrock_identifier": "minecraft:lava_bucket", "bedrock_data": 0 }, "minecraft:powder_snow_bucket": { "bedrock_identifier": "minecraft:powder_snow_bucket", "bedrock_data": 0, "firstBlockRuntimeId": 22318 }, "minecraft:snowball": { "bedrock_identifier": "minecraft:snowball", "bedrock_data": 0 }, "minecraft:leather": { "bedrock_identifier": "minecraft:leather", "bedrock_data": 0 }, "minecraft:milk_bucket": { "bedrock_identifier": "minecraft:milk_bucket", "bedrock_data": 0 }, "minecraft:pufferfish_bucket": { "bedrock_identifier": "minecraft:pufferfish_bucket", "bedrock_data": 0 }, "minecraft:salmon_bucket": { "bedrock_identifier": "minecraft:salmon_bucket", "bedrock_data": 0 }, "minecraft:cod_bucket": { "bedrock_identifier": "minecraft:cod_bucket", "bedrock_data": 0 }, "minecraft:tropical_fish_bucket": { "bedrock_identifier": "minecraft:tropical_fish_bucket", "bedrock_data": 0 }, "minecraft:axolotl_bucket": { "bedrock_identifier": "minecraft:axolotl_bucket", "bedrock_data": 0 }, "minecraft:tadpole_bucket": { "bedrock_identifier": "minecraft:tadpole_bucket", "bedrock_data": 0 }, "minecraft:brick": { "bedrock_identifier": "minecraft:brick", "bedrock_data": 0 }, "minecraft:clay_ball": { "bedrock_identifier": "minecraft:clay_ball", "bedrock_data": 0 }, "minecraft:dried_kelp_block": { "bedrock_identifier": "minecraft:dried_kelp_block", "bedrock_data": 0, "firstBlockRuntimeId": 12787 }, "minecraft:paper": { "bedrock_identifier": "minecraft:paper", "bedrock_data": 0 }, "minecraft:book": { "bedrock_identifier": "minecraft:book", "bedrock_data": 0 }, "minecraft:slime_ball": { "bedrock_identifier": "minecraft:slime_ball", "bedrock_data": 0 }, "minecraft:egg": { "bedrock_identifier": "minecraft:egg", "bedrock_data": 0 }, "minecraft:compass": { "bedrock_identifier": "minecraft:compass", "bedrock_data": 0 }, "minecraft:recovery_compass": { "bedrock_identifier": "minecraft:recovery_compass", "bedrock_data": 0 }, "minecraft:bundle": { "bedrock_identifier": "minecraft:shulker_shell", "bedrock_data": 0 }, "minecraft:fishing_rod": { "bedrock_identifier": "minecraft:fishing_rod", "bedrock_data": 0 }, "minecraft:clock": { "bedrock_identifier": "minecraft:clock", "bedrock_data": 0 }, "minecraft:spyglass": { "bedrock_identifier": "minecraft:spyglass", "bedrock_data": 0 }, "minecraft:glowstone_dust": { "bedrock_identifier": "minecraft:glowstone_dust", "bedrock_data": 0 }, "minecraft:cod": { "bedrock_identifier": "minecraft:cod", "bedrock_data": 0, "is_edible": true }, "minecraft:salmon": { "bedrock_identifier": "minecraft:salmon", "bedrock_data": 0, "is_edible": true }, "minecraft:tropical_fish": { "bedrock_identifier": "minecraft:tropical_fish", "bedrock_data": 0, "is_edible": true }, "minecraft:pufferfish": { "bedrock_identifier": "minecraft:pufferfish", "bedrock_data": 0, "is_edible": true }, "minecraft:cooked_cod": { "bedrock_identifier": "minecraft:cooked_cod", "bedrock_data": 0, "is_edible": true }, "minecraft:cooked_salmon": { "bedrock_identifier": "minecraft:cooked_salmon", "bedrock_data": 0, "is_edible": true }, "minecraft:ink_sac": { "bedrock_identifier": "minecraft:ink_sac", "bedrock_data": 0 }, "minecraft:glow_ink_sac": { "bedrock_identifier": "minecraft:glow_ink_sac", "bedrock_data": 0 }, "minecraft:cocoa_beans": { "bedrock_identifier": "minecraft:cocoa_beans", "bedrock_data": 3, "firstBlockRuntimeId": 7419, "lastBlockRuntimeId": 7430 }, "minecraft:white_dye": { "bedrock_identifier": "minecraft:white_dye", "bedrock_data": 0 }, "minecraft:orange_dye": { "bedrock_identifier": "minecraft:orange_dye", "bedrock_data": 0 }, "minecraft:magenta_dye": { "bedrock_identifier": "minecraft:magenta_dye", "bedrock_data": 0 }, "minecraft:light_blue_dye": { "bedrock_identifier": "minecraft:light_blue_dye", "bedrock_data": 0 }, "minecraft:yellow_dye": { "bedrock_identifier": "minecraft:yellow_dye", "bedrock_data": 0 }, "minecraft:lime_dye": { "bedrock_identifier": "minecraft:lime_dye", "bedrock_data": 0 }, "minecraft:pink_dye": { "bedrock_identifier": "minecraft:pink_dye", "bedrock_data": 0 }, "minecraft:gray_dye": { "bedrock_identifier": "minecraft:gray_dye", "bedrock_data": 0 }, "minecraft:light_gray_dye": { "bedrock_identifier": "minecraft:light_gray_dye", "bedrock_data": 0 }, "minecraft:cyan_dye": { "bedrock_identifier": "minecraft:cyan_dye", "bedrock_data": 0 }, "minecraft:purple_dye": { "bedrock_identifier": "minecraft:purple_dye", "bedrock_data": 0 }, "minecraft:blue_dye": { "bedrock_identifier": "minecraft:blue_dye", "bedrock_data": 0 }, "minecraft:brown_dye": { "bedrock_identifier": "minecraft:brown_dye", "bedrock_data": 0 }, "minecraft:green_dye": { "bedrock_identifier": "minecraft:green_dye", "bedrock_data": 0 }, "minecraft:red_dye": { "bedrock_identifier": "minecraft:red_dye", "bedrock_data": 0 }, "minecraft:black_dye": { "bedrock_identifier": "minecraft:black_dye", "bedrock_data": 0 }, "minecraft:bone_meal": { "bedrock_identifier": "minecraft:bone_meal", "bedrock_data": 0 }, "minecraft:bone": { "bedrock_identifier": "minecraft:bone", "bedrock_data": 0 }, "minecraft:sugar": { "bedrock_identifier": "minecraft:sugar", "bedrock_data": 0 }, "minecraft:cake": { "bedrock_identifier": "minecraft:cake", "bedrock_data": 0, "firstBlockRuntimeId": 5874, "lastBlockRuntimeId": 5880 }, "minecraft:white_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 0, "firstBlockRuntimeId": 1688, "lastBlockRuntimeId": 1703 }, "minecraft:orange_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 1, "firstBlockRuntimeId": 1704, "lastBlockRuntimeId": 1719 }, "minecraft:magenta_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 2, "firstBlockRuntimeId": 1720, "lastBlockRuntimeId": 1735 }, "minecraft:light_blue_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 3, "firstBlockRuntimeId": 1736, "lastBlockRuntimeId": 1751 }, "minecraft:yellow_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 4, "firstBlockRuntimeId": 1752, "lastBlockRuntimeId": 1767 }, "minecraft:lime_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 5, "firstBlockRuntimeId": 1768, "lastBlockRuntimeId": 1783 }, "minecraft:pink_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 6, "firstBlockRuntimeId": 1784, "lastBlockRuntimeId": 1799 }, "minecraft:gray_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 7, "firstBlockRuntimeId": 1800, "lastBlockRuntimeId": 1815 }, "minecraft:light_gray_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 8, "firstBlockRuntimeId": 1816, "lastBlockRuntimeId": 1831 }, "minecraft:cyan_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 9, "firstBlockRuntimeId": 1832, "lastBlockRuntimeId": 1847 }, "minecraft:purple_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 10, "firstBlockRuntimeId": 1848, "lastBlockRuntimeId": 1863 }, "minecraft:blue_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 11, "firstBlockRuntimeId": 1864, "lastBlockRuntimeId": 1879 }, "minecraft:brown_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 12, "firstBlockRuntimeId": 1880, "lastBlockRuntimeId": 1895 }, "minecraft:green_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 13, "firstBlockRuntimeId": 1896, "lastBlockRuntimeId": 1911 }, "minecraft:red_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 14, "firstBlockRuntimeId": 1912, "lastBlockRuntimeId": 1927 }, "minecraft:black_bed": { "bedrock_identifier": "minecraft:bed", "bedrock_data": 15, "firstBlockRuntimeId": 1928, "lastBlockRuntimeId": 1943 }, "minecraft:cookie": { "bedrock_identifier": "minecraft:cookie", "bedrock_data": 0, "is_edible": true }, "minecraft:crafter": { "bedrock_identifier": "minecraft:crafter", "bedrock_data": 0, "firstBlockRuntimeId": 26590, "lastBlockRuntimeId": 26637 }, "minecraft:filled_map": { "bedrock_identifier": "minecraft:filled_map", "bedrock_data": 0 }, "minecraft:shears": { "bedrock_identifier": "minecraft:shears", "bedrock_data": 0, "tool_type": "shears" }, "minecraft:melon_slice": { "bedrock_identifier": "minecraft:melon_slice", "bedrock_data": 0, "is_edible": true }, "minecraft:dried_kelp": { "bedrock_identifier": "minecraft:dried_kelp", "bedrock_data": 0, "is_edible": true }, "minecraft:pumpkin_seeds": { "bedrock_identifier": "minecraft:pumpkin_seeds", "bedrock_data": 0, "firstBlockRuntimeId": 6821, "lastBlockRuntimeId": 6828 }, "minecraft:melon_seeds": { "bedrock_identifier": "minecraft:melon_seeds", "bedrock_data": 0, "firstBlockRuntimeId": 6829, "lastBlockRuntimeId": 6836 }, "minecraft:beef": { "bedrock_identifier": "minecraft:beef", "bedrock_data": 0, "is_edible": true }, "minecraft:cooked_beef": { "bedrock_identifier": "minecraft:cooked_beef", "bedrock_data": 0, "is_edible": true }, "minecraft:chicken": { "bedrock_identifier": "minecraft:chicken", "bedrock_data": 0, "is_edible": true }, "minecraft:cooked_chicken": { "bedrock_identifier": "minecraft:cooked_chicken", "bedrock_data": 0, "is_edible": true }, "minecraft:rotten_flesh": { "bedrock_identifier": "minecraft:rotten_flesh", "bedrock_data": 0, "is_edible": true }, "minecraft:ender_pearl": { "bedrock_identifier": "minecraft:ender_pearl", "bedrock_data": 0 }, "minecraft:blaze_rod": { "bedrock_identifier": "minecraft:blaze_rod", "bedrock_data": 0 }, "minecraft:ghast_tear": { "bedrock_identifier": "minecraft:ghast_tear", "bedrock_data": 0 }, "minecraft:gold_nugget": { "bedrock_identifier": "minecraft:gold_nugget", "bedrock_data": 0 }, "minecraft:nether_wart": { "bedrock_identifier": "minecraft:nether_wart", "bedrock_data": 0, "firstBlockRuntimeId": 7385, "lastBlockRuntimeId": 7388 }, "minecraft:potion": { "bedrock_identifier": "minecraft:potion", "bedrock_data": 0 }, "minecraft:glass_bottle": { "bedrock_identifier": "minecraft:glass_bottle", "bedrock_data": 0 }, "minecraft:spider_eye": { "bedrock_identifier": "minecraft:spider_eye", "bedrock_data": 0, "is_edible": true }, "minecraft:fermented_spider_eye": { "bedrock_identifier": "minecraft:fermented_spider_eye", "bedrock_data": 0 }, "minecraft:blaze_powder": { "bedrock_identifier": "minecraft:blaze_powder", "bedrock_data": 0 }, "minecraft:magma_cream": { "bedrock_identifier": "minecraft:magma_cream", "bedrock_data": 0 }, "minecraft:brewing_stand": { "bedrock_identifier": "minecraft:brewing_stand", "bedrock_data": 0, "firstBlockRuntimeId": 7390, "lastBlockRuntimeId": 7397 }, "minecraft:cauldron": { "bedrock_identifier": "minecraft:cauldron", "bedrock_data": 0, "firstBlockRuntimeId": 7398 }, "minecraft:ender_eye": { "bedrock_identifier": "minecraft:ender_eye", "bedrock_data": 0 }, "minecraft:glistering_melon_slice": { "bedrock_identifier": "minecraft:glistering_melon_slice", "bedrock_data": 0 }, "minecraft:armadillo_spawn_egg": { "bedrock_identifier": "minecraft:armadillo_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:allay_spawn_egg": { "bedrock_identifier": "minecraft:allay_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:axolotl_spawn_egg": { "bedrock_identifier": "minecraft:axolotl_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:bat_spawn_egg": { "bedrock_identifier": "minecraft:bat_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:bee_spawn_egg": { "bedrock_identifier": "minecraft:bee_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:blaze_spawn_egg": { "bedrock_identifier": "minecraft:blaze_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:bogged_spawn_egg": { "bedrock_identifier": "minecraft:bogged_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:breeze_spawn_egg": { "bedrock_identifier": "minecraft:breeze_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:cat_spawn_egg": { "bedrock_identifier": "minecraft:cat_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:camel_spawn_egg": { "bedrock_identifier": "minecraft:camel_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:cave_spider_spawn_egg": { "bedrock_identifier": "minecraft:cave_spider_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:chicken_spawn_egg": { "bedrock_identifier": "minecraft:chicken_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:cod_spawn_egg": { "bedrock_identifier": "minecraft:cod_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:cow_spawn_egg": { "bedrock_identifier": "minecraft:cow_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:creeper_spawn_egg": { "bedrock_identifier": "minecraft:creeper_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:dolphin_spawn_egg": { "bedrock_identifier": "minecraft:dolphin_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:donkey_spawn_egg": { "bedrock_identifier": "minecraft:donkey_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:drowned_spawn_egg": { "bedrock_identifier": "minecraft:drowned_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:elder_guardian_spawn_egg": { "bedrock_identifier": "minecraft:elder_guardian_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:ender_dragon_spawn_egg": { "bedrock_identifier": "minecraft:ender_dragon_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:enderman_spawn_egg": { "bedrock_identifier": "minecraft:enderman_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:endermite_spawn_egg": { "bedrock_identifier": "minecraft:endermite_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:evoker_spawn_egg": { "bedrock_identifier": "minecraft:evoker_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:fox_spawn_egg": { "bedrock_identifier": "minecraft:fox_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:frog_spawn_egg": { "bedrock_identifier": "minecraft:frog_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:ghast_spawn_egg": { "bedrock_identifier": "minecraft:ghast_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:glow_squid_spawn_egg": { "bedrock_identifier": "minecraft:glow_squid_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:goat_spawn_egg": { "bedrock_identifier": "minecraft:goat_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:guardian_spawn_egg": { "bedrock_identifier": "minecraft:guardian_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:hoglin_spawn_egg": { "bedrock_identifier": "minecraft:hoglin_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:horse_spawn_egg": { "bedrock_identifier": "minecraft:horse_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:husk_spawn_egg": { "bedrock_identifier": "minecraft:husk_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:iron_golem_spawn_egg": { "bedrock_identifier": "minecraft:iron_golem_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:llama_spawn_egg": { "bedrock_identifier": "minecraft:llama_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:magma_cube_spawn_egg": { "bedrock_identifier": "minecraft:magma_cube_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:mooshroom_spawn_egg": { "bedrock_identifier": "minecraft:mooshroom_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:mule_spawn_egg": { "bedrock_identifier": "minecraft:mule_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:ocelot_spawn_egg": { "bedrock_identifier": "minecraft:ocelot_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:panda_spawn_egg": { "bedrock_identifier": "minecraft:panda_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:parrot_spawn_egg": { "bedrock_identifier": "minecraft:parrot_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:phantom_spawn_egg": { "bedrock_identifier": "minecraft:phantom_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:pig_spawn_egg": { "bedrock_identifier": "minecraft:pig_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:piglin_spawn_egg": { "bedrock_identifier": "minecraft:piglin_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:piglin_brute_spawn_egg": { "bedrock_identifier": "minecraft:piglin_brute_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:pillager_spawn_egg": { "bedrock_identifier": "minecraft:pillager_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:polar_bear_spawn_egg": { "bedrock_identifier": "minecraft:polar_bear_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:pufferfish_spawn_egg": { "bedrock_identifier": "minecraft:pufferfish_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:rabbit_spawn_egg": { "bedrock_identifier": "minecraft:rabbit_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:ravager_spawn_egg": { "bedrock_identifier": "minecraft:ravager_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:salmon_spawn_egg": { "bedrock_identifier": "minecraft:salmon_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:sheep_spawn_egg": { "bedrock_identifier": "minecraft:sheep_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:shulker_spawn_egg": { "bedrock_identifier": "minecraft:shulker_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:silverfish_spawn_egg": { "bedrock_identifier": "minecraft:silverfish_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:skeleton_spawn_egg": { "bedrock_identifier": "minecraft:skeleton_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:skeleton_horse_spawn_egg": { "bedrock_identifier": "minecraft:skeleton_horse_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:slime_spawn_egg": { "bedrock_identifier": "minecraft:slime_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:sniffer_spawn_egg": { "bedrock_identifier": "minecraft:sniffer_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:snow_golem_spawn_egg": { "bedrock_identifier": "minecraft:snow_golem_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:spider_spawn_egg": { "bedrock_identifier": "minecraft:spider_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:squid_spawn_egg": { "bedrock_identifier": "minecraft:squid_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:stray_spawn_egg": { "bedrock_identifier": "minecraft:stray_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:strider_spawn_egg": { "bedrock_identifier": "minecraft:strider_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:tadpole_spawn_egg": { "bedrock_identifier": "minecraft:tadpole_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:trader_llama_spawn_egg": { "bedrock_identifier": "minecraft:trader_llama_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:tropical_fish_spawn_egg": { "bedrock_identifier": "minecraft:tropical_fish_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:turtle_spawn_egg": { "bedrock_identifier": "minecraft:turtle_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:vex_spawn_egg": { "bedrock_identifier": "minecraft:vex_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:villager_spawn_egg": { "bedrock_identifier": "minecraft:villager_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:vindicator_spawn_egg": { "bedrock_identifier": "minecraft:vindicator_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:wandering_trader_spawn_egg": { "bedrock_identifier": "minecraft:wandering_trader_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:warden_spawn_egg": { "bedrock_identifier": "minecraft:warden_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:witch_spawn_egg": { "bedrock_identifier": "minecraft:witch_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:wither_spawn_egg": { "bedrock_identifier": "minecraft:wither_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:wither_skeleton_spawn_egg": { "bedrock_identifier": "minecraft:wither_skeleton_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:wolf_spawn_egg": { "bedrock_identifier": "minecraft:wolf_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:zoglin_spawn_egg": { "bedrock_identifier": "minecraft:zoglin_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:zombie_spawn_egg": { "bedrock_identifier": "minecraft:zombie_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:zombie_horse_spawn_egg": { "bedrock_identifier": "minecraft:zombie_horse_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:zombie_villager_spawn_egg": { "bedrock_identifier": "minecraft:zombie_villager_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:zombified_piglin_spawn_egg": { "bedrock_identifier": "minecraft:zombie_pigman_spawn_egg", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:experience_bottle": { "bedrock_identifier": "minecraft:experience_bottle", "bedrock_data": 0 }, "minecraft:fire_charge": { "bedrock_identifier": "minecraft:fire_charge", "bedrock_data": 0 }, "minecraft:wind_charge": { "bedrock_identifier": "minecraft:wind_charge", "bedrock_data": 0 }, "minecraft:writable_book": { "bedrock_identifier": "minecraft:writable_book", "bedrock_data": 0 }, "minecraft:written_book": { "bedrock_identifier": "minecraft:written_book", "bedrock_data": 0 }, "minecraft:mace": { "bedrock_identifier": "minecraft:mace", "bedrock_data": 0 }, "minecraft:item_frame": { "bedrock_identifier": "minecraft:frame", "bedrock_data": 0 }, "minecraft:glow_item_frame": { "bedrock_identifier": "minecraft:glow_frame", "bedrock_data": 0 }, "minecraft:flower_pot": { "bedrock_identifier": "minecraft:flower_pot", "bedrock_data": 0, "firstBlockRuntimeId": 8567 }, "minecraft:carrot": { "bedrock_identifier": "minecraft:carrot", "bedrock_data": 0, "firstBlockRuntimeId": 8595, "lastBlockRuntimeId": 8602, "is_edible": true }, "minecraft:potato": { "bedrock_identifier": "minecraft:potato", "bedrock_data": 0, "firstBlockRuntimeId": 8603, "lastBlockRuntimeId": 8610, "is_edible": true }, "minecraft:baked_potato": { "bedrock_identifier": "minecraft:baked_potato", "bedrock_data": 0, "is_edible": true }, "minecraft:poisonous_potato": { "bedrock_identifier": "minecraft:poisonous_potato", "bedrock_data": 0, "is_edible": true }, "minecraft:map": { "bedrock_identifier": "minecraft:empty_map", "bedrock_data": 0 }, "minecraft:golden_carrot": { "bedrock_identifier": "minecraft:golden_carrot", "bedrock_data": 0, "is_edible": true }, "minecraft:skeleton_skull": { "bedrock_identifier": "minecraft:skull", "bedrock_data": 0, "firstBlockRuntimeId": 8827, "lastBlockRuntimeId": 8858 }, "minecraft:wither_skeleton_skull": { "bedrock_identifier": "minecraft:skull", "bedrock_data": 1, "firstBlockRuntimeId": 8867, "lastBlockRuntimeId": 8898 }, "minecraft:player_head": { "bedrock_identifier": "minecraft:skull", "bedrock_data": 3, "firstBlockRuntimeId": 8947, "lastBlockRuntimeId": 8978 }, "minecraft:zombie_head": { "bedrock_identifier": "minecraft:skull", "bedrock_data": 2, "firstBlockRuntimeId": 8907, "lastBlockRuntimeId": 8938 }, "minecraft:creeper_head": { "bedrock_identifier": "minecraft:skull", "bedrock_data": 4, "firstBlockRuntimeId": 8987, "lastBlockRuntimeId": 9018 }, "minecraft:dragon_head": { "bedrock_identifier": "minecraft:skull", "bedrock_data": 5, "firstBlockRuntimeId": 9027, "lastBlockRuntimeId": 9058 }, "minecraft:piglin_head": { "bedrock_identifier": "minecraft:skull", "bedrock_data": 6, "firstBlockRuntimeId": 9067, "lastBlockRuntimeId": 9098 }, "minecraft:nether_star": { "bedrock_identifier": "minecraft:nether_star", "bedrock_data": 0 }, "minecraft:pumpkin_pie": { "bedrock_identifier": "minecraft:pumpkin_pie", "bedrock_data": 0, "is_edible": true }, "minecraft:firework_rocket": { "bedrock_identifier": "minecraft:firework_rocket", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:firework_star": { "bedrock_identifier": "minecraft:firework_star", "bedrock_data": 0 }, "minecraft:enchanted_book": { "bedrock_identifier": "minecraft:enchanted_book", "bedrock_data": 0 }, "minecraft:nether_brick": { "bedrock_identifier": "minecraft:netherbrick", "bedrock_data": 0 }, "minecraft:prismarine_shard": { "bedrock_identifier": "minecraft:prismarine_shard", "bedrock_data": 0 }, "minecraft:prismarine_crystals": { "bedrock_identifier": "minecraft:prismarine_crystals", "bedrock_data": 0 }, "minecraft:rabbit": { "bedrock_identifier": "minecraft:rabbit", "bedrock_data": 0, "is_edible": true }, "minecraft:cooked_rabbit": { "bedrock_identifier": "minecraft:cooked_rabbit", "bedrock_data": 0, "is_edible": true }, "minecraft:rabbit_stew": { "bedrock_identifier": "minecraft:rabbit_stew", "bedrock_data": 0, "is_edible": true }, "minecraft:rabbit_foot": { "bedrock_identifier": "minecraft:rabbit_foot", "bedrock_data": 0 }, "minecraft:rabbit_hide": { "bedrock_identifier": "minecraft:rabbit_hide", "bedrock_data": 0 }, "minecraft:armor_stand": { "bedrock_identifier": "minecraft:armor_stand", "bedrock_data": 0 }, "minecraft:iron_horse_armor": { "bedrock_identifier": "minecraft:iron_horse_armor", "bedrock_data": 0 }, "minecraft:golden_horse_armor": { "bedrock_identifier": "minecraft:golden_horse_armor", "bedrock_data": 0 }, "minecraft:diamond_horse_armor": { "bedrock_identifier": "minecraft:diamond_horse_armor", "bedrock_data": 0 }, "minecraft:leather_horse_armor": { "bedrock_identifier": "minecraft:leather_horse_armor", "bedrock_data": 0 }, "minecraft:lead": { "bedrock_identifier": "minecraft:lead", "bedrock_data": 0 }, "minecraft:name_tag": { "bedrock_identifier": "minecraft:name_tag", "bedrock_data": 0 }, "minecraft:command_block_minecart": { "bedrock_identifier": "minecraft:command_block_minecart", "bedrock_data": 0, "is_entity_placer": true }, "minecraft:mutton": { "bedrock_identifier": "minecraft:mutton", "bedrock_data": 0, "is_edible": true }, "minecraft:cooked_mutton": { "bedrock_identifier": "minecraft:cooked_mutton", "bedrock_data": 0, "is_edible": true }, "minecraft:white_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 15, "firstBlockRuntimeId": 10759, "lastBlockRuntimeId": 10774 }, "minecraft:orange_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 14, "firstBlockRuntimeId": 10775, "lastBlockRuntimeId": 10790 }, "minecraft:magenta_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 13, "firstBlockRuntimeId": 10791, "lastBlockRuntimeId": 10806 }, "minecraft:light_blue_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 12, "firstBlockRuntimeId": 10807, "lastBlockRuntimeId": 10822 }, "minecraft:yellow_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 11, "firstBlockRuntimeId": 10823, "lastBlockRuntimeId": 10838 }, "minecraft:lime_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 10, "firstBlockRuntimeId": 10839, "lastBlockRuntimeId": 10854 }, "minecraft:pink_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 9, "firstBlockRuntimeId": 10855, "lastBlockRuntimeId": 10870 }, "minecraft:gray_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 8, "firstBlockRuntimeId": 10871, "lastBlockRuntimeId": 10886 }, "minecraft:light_gray_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 7, "firstBlockRuntimeId": 10887, "lastBlockRuntimeId": 10902 }, "minecraft:cyan_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 6, "firstBlockRuntimeId": 10903, "lastBlockRuntimeId": 10918 }, "minecraft:purple_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 5, "firstBlockRuntimeId": 10919, "lastBlockRuntimeId": 10934 }, "minecraft:blue_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 4, "firstBlockRuntimeId": 10935, "lastBlockRuntimeId": 10950 }, "minecraft:brown_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 3, "firstBlockRuntimeId": 10951, "lastBlockRuntimeId": 10966 }, "minecraft:green_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 2, "firstBlockRuntimeId": 10967, "lastBlockRuntimeId": 10982 }, "minecraft:red_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 1, "firstBlockRuntimeId": 10983, "lastBlockRuntimeId": 10998 }, "minecraft:black_banner": { "bedrock_identifier": "minecraft:banner", "bedrock_data": 0, "firstBlockRuntimeId": 10999, "lastBlockRuntimeId": 11014 }, "minecraft:end_crystal": { "bedrock_identifier": "minecraft:end_crystal", "bedrock_data": 0 }, "minecraft:chorus_fruit": { "bedrock_identifier": "minecraft:chorus_fruit", "bedrock_data": 0, "is_edible": true }, "minecraft:popped_chorus_fruit": { "bedrock_identifier": "minecraft:popped_chorus_fruit", "bedrock_data": 0 }, "minecraft:torchflower_seeds": { "bedrock_identifier": "minecraft:torchflower_seeds", "bedrock_data": 0, "firstBlockRuntimeId": 12495, "lastBlockRuntimeId": 12496 }, "minecraft:pitcher_pod": { "bedrock_identifier": "minecraft:pitcher_pod", "bedrock_data": 0, "firstBlockRuntimeId": 12497, "lastBlockRuntimeId": 12506 }, "minecraft:beetroot": { "bedrock_identifier": "minecraft:beetroot", "bedrock_data": 0, "is_edible": true }, "minecraft:beetroot_seeds": { "bedrock_identifier": "minecraft:beetroot_seeds", "bedrock_data": 0, "firstBlockRuntimeId": 12509, "lastBlockRuntimeId": 12512 }, "minecraft:beetroot_soup": { "bedrock_identifier": "minecraft:beetroot_soup", "bedrock_data": 0, "is_edible": true }, "minecraft:dragon_breath": { "bedrock_identifier": "minecraft:dragon_breath", "bedrock_data": 0 }, "minecraft:splash_potion": { "bedrock_identifier": "minecraft:splash_potion", "bedrock_data": 0 }, "minecraft:spectral_arrow": { "bedrock_identifier": "minecraft:arrow", "bedrock_data": 0 }, "minecraft:tipped_arrow": { "bedrock_identifier": "minecraft:arrow", "bedrock_data": 0 }, "minecraft:lingering_potion": { "bedrock_identifier": "minecraft:lingering_potion", "bedrock_data": 0 }, "minecraft:shield": { "bedrock_identifier": "minecraft:shield", "bedrock_data": 0, "repair_materials": [ "minecraft:oak_planks", "minecraft:spruce_planks", "minecraft:birch_planks", "minecraft:jungle_planks", "minecraft:acacia_planks", "minecraft:cherry_planks", "minecraft:dark_oak_planks", "minecraft:mangrove_planks", "minecraft:bamboo_planks", "minecraft:crimson_planks", "minecraft:warped_planks" ] }, "minecraft:totem_of_undying": { "bedrock_identifier": "minecraft:totem_of_undying", "bedrock_data": 0 }, "minecraft:shulker_shell": { "bedrock_identifier": "minecraft:shulker_shell", "bedrock_data": 0 }, "minecraft:iron_nugget": { "bedrock_identifier": "minecraft:iron_nugget", "bedrock_data": 0 }, "minecraft:knowledge_book": { "bedrock_identifier": "minecraft:book", "bedrock_data": 0 }, "minecraft:debug_stick": { "bedrock_identifier": "minecraft:stick", "bedrock_data": 0 }, "minecraft:music_disc_13": { "bedrock_identifier": "minecraft:music_disc_13", "bedrock_data": 0 }, "minecraft:music_disc_cat": { "bedrock_identifier": "minecraft:music_disc_cat", "bedrock_data": 0 }, "minecraft:music_disc_blocks": { "bedrock_identifier": "minecraft:music_disc_blocks", "bedrock_data": 0 }, "minecraft:music_disc_chirp": { "bedrock_identifier": "minecraft:music_disc_chirp", "bedrock_data": 0 }, "minecraft:music_disc_creator": { "bedrock_identifier": "minecraft:music_disc_creator", "bedrock_data": 0 }, "minecraft:music_disc_creator_music_box": { "bedrock_identifier": "minecraft:music_disc_creator_music_box", "bedrock_data": 0 }, "minecraft:music_disc_far": { "bedrock_identifier": "minecraft:music_disc_far", "bedrock_data": 0 }, "minecraft:music_disc_mall": { "bedrock_identifier": "minecraft:music_disc_mall", "bedrock_data": 0 }, "minecraft:music_disc_mellohi": { "bedrock_identifier": "minecraft:music_disc_mellohi", "bedrock_data": 0 }, "minecraft:music_disc_stal": { "bedrock_identifier": "minecraft:music_disc_stal", "bedrock_data": 0 }, "minecraft:music_disc_strad": { "bedrock_identifier": "minecraft:music_disc_strad", "bedrock_data": 0 }, "minecraft:music_disc_ward": { "bedrock_identifier": "minecraft:music_disc_ward", "bedrock_data": 0 }, "minecraft:music_disc_11": { "bedrock_identifier": "minecraft:music_disc_11", "bedrock_data": 0 }, "minecraft:music_disc_wait": { "bedrock_identifier": "minecraft:music_disc_wait", "bedrock_data": 0 }, "minecraft:music_disc_otherside": { "bedrock_identifier": "minecraft:music_disc_otherside", "bedrock_data": 0 }, "minecraft:music_disc_relic": { "bedrock_identifier": "minecraft:music_disc_relic", "bedrock_data": 0 }, "minecraft:music_disc_5": { "bedrock_identifier": "minecraft:music_disc_5", "bedrock_data": 0 }, "minecraft:music_disc_pigstep": { "bedrock_identifier": "minecraft:music_disc_pigstep", "bedrock_data": 0 }, "minecraft:music_disc_precipice": { "bedrock_identifier": "minecraft:music_disc_precipice", "bedrock_data": 0 }, "minecraft:disc_fragment_5": { "bedrock_identifier": "minecraft:disc_fragment_5", "bedrock_data": 0 }, "minecraft:trident": { "bedrock_identifier": "minecraft:trident", "bedrock_data": 0 }, "minecraft:phantom_membrane": { "bedrock_identifier": "minecraft:phantom_membrane", "bedrock_data": 0 }, "minecraft:nautilus_shell": { "bedrock_identifier": "minecraft:nautilus_shell", "bedrock_data": 0 }, "minecraft:heart_of_the_sea": { "bedrock_identifier": "minecraft:heart_of_the_sea", "bedrock_data": 0 }, "minecraft:crossbow": { "bedrock_identifier": "minecraft:crossbow", "bedrock_data": 0 }, "minecraft:suspicious_stew": { "bedrock_identifier": "minecraft:suspicious_stew", "bedrock_data": 0, "is_edible": true }, "minecraft:loom": { "bedrock_identifier": "minecraft:loom", "bedrock_data": 0, "firstBlockRuntimeId": 18404, "lastBlockRuntimeId": 18407 }, "minecraft:flower_banner_pattern": { "bedrock_identifier": "minecraft:flower_banner_pattern", "bedrock_data": 0 }, "minecraft:creeper_banner_pattern": { "bedrock_identifier": "minecraft:creeper_banner_pattern", "bedrock_data": 0 }, "minecraft:skull_banner_pattern": { "bedrock_identifier": "minecraft:skull_banner_pattern", "bedrock_data": 0 }, "minecraft:mojang_banner_pattern": { "bedrock_identifier": "minecraft:mojang_banner_pattern", "bedrock_data": 0 }, "minecraft:globe_banner_pattern": { "bedrock_identifier": "minecraft:globe_banner_pattern", "bedrock_data": 0 }, "minecraft:piglin_banner_pattern": { "bedrock_identifier": "minecraft:piglin_banner_pattern", "bedrock_data": 0 }, "minecraft:flow_banner_pattern": { "bedrock_identifier": "minecraft:flow_banner_pattern", "bedrock_data": 0 }, "minecraft:guster_banner_pattern": { "bedrock_identifier": "minecraft:guster_banner_pattern", "bedrock_data": 0 }, "minecraft:goat_horn": { "bedrock_identifier": "minecraft:goat_horn", "bedrock_data": 0 }, "minecraft:composter": { "bedrock_identifier": "minecraft:composter", "bedrock_data": 0, "firstBlockRuntimeId": 19372, "lastBlockRuntimeId": 19380 }, "minecraft:barrel": { "bedrock_identifier": "minecraft:barrel", "bedrock_data": 0, "firstBlockRuntimeId": 18408, "lastBlockRuntimeId": 18419 }, "minecraft:smoker": { "bedrock_identifier": "minecraft:smoker", "bedrock_data": 0, "firstBlockRuntimeId": 18420, "lastBlockRuntimeId": 18427 }, "minecraft:blast_furnace": { "bedrock_identifier": "minecraft:blast_furnace", "bedrock_data": 0, "firstBlockRuntimeId": 18428, "lastBlockRuntimeId": 18435 }, "minecraft:cartography_table": { "bedrock_identifier": "minecraft:cartography_table", "bedrock_data": 0, "firstBlockRuntimeId": 18436 }, "minecraft:fletching_table": { "bedrock_identifier": "minecraft:fletching_table", "bedrock_data": 0, "firstBlockRuntimeId": 18437 }, "minecraft:grindstone": { "bedrock_identifier": "minecraft:grindstone", "bedrock_data": 0, "firstBlockRuntimeId": 18438, "lastBlockRuntimeId": 18449 }, "minecraft:smithing_table": { "bedrock_identifier": "minecraft:smithing_table", "bedrock_data": 0, "firstBlockRuntimeId": 18466 }, "minecraft:stonecutter": { "bedrock_identifier": "minecraft:stonecutter_block", "bedrock_data": 0, "firstBlockRuntimeId": 18467, "lastBlockRuntimeId": 18470 }, "minecraft:bell": { "bedrock_identifier": "minecraft:bell", "bedrock_data": 0, "firstBlockRuntimeId": 18471, "lastBlockRuntimeId": 18502 }, "minecraft:lantern": { "bedrock_identifier": "minecraft:lantern", "bedrock_data": 0, "firstBlockRuntimeId": 18503, "lastBlockRuntimeId": 18506 }, "minecraft:soul_lantern": { "bedrock_identifier": "minecraft:soul_lantern", "bedrock_data": 0, "firstBlockRuntimeId": 18507, "lastBlockRuntimeId": 18510 }, "minecraft:sweet_berries": { "bedrock_identifier": "minecraft:sweet_berries", "bedrock_data": 0, "firstBlockRuntimeId": 18575, "lastBlockRuntimeId": 18578, "is_edible": true }, "minecraft:glow_berries": { "bedrock_identifier": "minecraft:glow_berries", "bedrock_data": 0, "firstBlockRuntimeId": 24769, "lastBlockRuntimeId": 24820, "is_edible": true }, "minecraft:campfire": { "bedrock_identifier": "minecraft:campfire", "bedrock_data": 0, "firstBlockRuntimeId": 18511, "lastBlockRuntimeId": 18542 }, "minecraft:soul_campfire": { "bedrock_identifier": "minecraft:soul_campfire", "bedrock_data": 0, "firstBlockRuntimeId": 18543, "lastBlockRuntimeId": 18574 }, "minecraft:shroomlight": { "bedrock_identifier": "minecraft:shroomlight", "bedrock_data": 0, "firstBlockRuntimeId": 18610 }, "minecraft:honeycomb": { "bedrock_identifier": "minecraft:honeycomb", "bedrock_data": 0 }, "minecraft:bee_nest": { "bedrock_identifier": "minecraft:bee_nest", "bedrock_data": 0, "firstBlockRuntimeId": 19397, "lastBlockRuntimeId": 19420 }, "minecraft:beehive": { "bedrock_identifier": "minecraft:beehive", "bedrock_data": 0, "firstBlockRuntimeId": 19421, "lastBlockRuntimeId": 19444 }, "minecraft:honey_bottle": { "bedrock_identifier": "minecraft:honey_bottle", "bedrock_data": 0, "is_edible": true }, "minecraft:honeycomb_block": { "bedrock_identifier": "minecraft:honeycomb_block", "bedrock_data": 0, "firstBlockRuntimeId": 19446 }, "minecraft:lodestone": { "bedrock_identifier": "minecraft:lodestone", "bedrock_data": 0, "firstBlockRuntimeId": 19459 }, "minecraft:crying_obsidian": { "bedrock_identifier": "minecraft:crying_obsidian", "bedrock_data": 0, "firstBlockRuntimeId": 19449 }, "minecraft:blackstone": { "bedrock_identifier": "minecraft:blackstone", "bedrock_data": 0, "firstBlockRuntimeId": 19460 }, "minecraft:blackstone_slab": { "bedrock_identifier": "minecraft:blackstone_slab", "bedrock_data": 0, "firstBlockRuntimeId": 19865, "lastBlockRuntimeId": 19870 }, "minecraft:blackstone_stairs": { "bedrock_identifier": "minecraft:blackstone_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 19461, "lastBlockRuntimeId": 19540 }, "minecraft:gilded_blackstone": { "bedrock_identifier": "minecraft:gilded_blackstone", "bedrock_data": 0, "firstBlockRuntimeId": 20285 }, "minecraft:polished_blackstone": { "bedrock_identifier": "minecraft:polished_blackstone", "bedrock_data": 0, "firstBlockRuntimeId": 19871 }, "minecraft:polished_blackstone_slab": { "bedrock_identifier": "minecraft:polished_blackstone_slab", "bedrock_data": 0, "firstBlockRuntimeId": 20366, "lastBlockRuntimeId": 20371 }, "minecraft:polished_blackstone_stairs": { "bedrock_identifier": "minecraft:polished_blackstone_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 20286, "lastBlockRuntimeId": 20365 }, "minecraft:chiseled_polished_blackstone": { "bedrock_identifier": "minecraft:chiseled_polished_blackstone", "bedrock_data": 0, "firstBlockRuntimeId": 19874 }, "minecraft:polished_blackstone_bricks": { "bedrock_identifier": "minecraft:polished_blackstone_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 19872 }, "minecraft:polished_blackstone_brick_slab": { "bedrock_identifier": "minecraft:polished_blackstone_brick_slab", "bedrock_data": 0, "firstBlockRuntimeId": 19875, "lastBlockRuntimeId": 19880 }, "minecraft:polished_blackstone_brick_stairs": { "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", "bedrock_data": 0, "firstBlockRuntimeId": 19881, "lastBlockRuntimeId": 19960 }, "minecraft:cracked_polished_blackstone_bricks": { "bedrock_identifier": "minecraft:cracked_polished_blackstone_bricks", "bedrock_data": 0, "firstBlockRuntimeId": 19873 }, "minecraft:respawn_anchor": { "bedrock_identifier": "minecraft:respawn_anchor", "bedrock_data": 0, "firstBlockRuntimeId": 19450, "lastBlockRuntimeId": 19454 }, "minecraft:candle": { "bedrock_identifier": "minecraft:candle", "bedrock_data": 0, "firstBlockRuntimeId": 20725, "lastBlockRuntimeId": 20740 }, "minecraft:white_candle": { "bedrock_identifier": "minecraft:white_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20741, "lastBlockRuntimeId": 20756 }, "minecraft:orange_candle": { "bedrock_identifier": "minecraft:orange_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20757, "lastBlockRuntimeId": 20772 }, "minecraft:magenta_candle": { "bedrock_identifier": "minecraft:magenta_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20773, "lastBlockRuntimeId": 20788 }, "minecraft:light_blue_candle": { "bedrock_identifier": "minecraft:light_blue_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20789, "lastBlockRuntimeId": 20804 }, "minecraft:yellow_candle": { "bedrock_identifier": "minecraft:yellow_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20805, "lastBlockRuntimeId": 20820 }, "minecraft:lime_candle": { "bedrock_identifier": "minecraft:lime_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20821, "lastBlockRuntimeId": 20836 }, "minecraft:pink_candle": { "bedrock_identifier": "minecraft:pink_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20837, "lastBlockRuntimeId": 20852 }, "minecraft:gray_candle": { "bedrock_identifier": "minecraft:gray_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20853, "lastBlockRuntimeId": 20868 }, "minecraft:light_gray_candle": { "bedrock_identifier": "minecraft:light_gray_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20869, "lastBlockRuntimeId": 20884 }, "minecraft:cyan_candle": { "bedrock_identifier": "minecraft:cyan_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20885, "lastBlockRuntimeId": 20900 }, "minecraft:purple_candle": { "bedrock_identifier": "minecraft:purple_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20901, "lastBlockRuntimeId": 20916 }, "minecraft:blue_candle": { "bedrock_identifier": "minecraft:blue_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20917, "lastBlockRuntimeId": 20932 }, "minecraft:brown_candle": { "bedrock_identifier": "minecraft:brown_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20933, "lastBlockRuntimeId": 20948 }, "minecraft:green_candle": { "bedrock_identifier": "minecraft:green_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20949, "lastBlockRuntimeId": 20964 }, "minecraft:red_candle": { "bedrock_identifier": "minecraft:red_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20965, "lastBlockRuntimeId": 20980 }, "minecraft:black_candle": { "bedrock_identifier": "minecraft:black_candle", "bedrock_data": 0, "firstBlockRuntimeId": 20981, "lastBlockRuntimeId": 20996 }, "minecraft:small_amethyst_bud": { "bedrock_identifier": "minecraft:small_amethyst_bud", "bedrock_data": 0, "firstBlockRuntimeId": 21069, "lastBlockRuntimeId": 21080 }, "minecraft:medium_amethyst_bud": { "bedrock_identifier": "minecraft:medium_amethyst_bud", "bedrock_data": 0, "firstBlockRuntimeId": 21057, "lastBlockRuntimeId": 21068 }, "minecraft:large_amethyst_bud": { "bedrock_identifier": "minecraft:large_amethyst_bud", "bedrock_data": 0, "firstBlockRuntimeId": 21045, "lastBlockRuntimeId": 21056 }, "minecraft:amethyst_cluster": { "bedrock_identifier": "minecraft:amethyst_cluster", "bedrock_data": 0, "firstBlockRuntimeId": 21033, "lastBlockRuntimeId": 21044 }, "minecraft:pointed_dripstone": { "bedrock_identifier": "minecraft:pointed_dripstone", "bedrock_data": 0, "firstBlockRuntimeId": 24748, "lastBlockRuntimeId": 24767 }, "minecraft:ochre_froglight": { "bedrock_identifier": "minecraft:ochre_froglight", "bedrock_data": 0, "firstBlockRuntimeId": 26563, "lastBlockRuntimeId": 26565 }, "minecraft:verdant_froglight": { "bedrock_identifier": "minecraft:verdant_froglight", "bedrock_data": 0, "firstBlockRuntimeId": 26566, "lastBlockRuntimeId": 26568 }, "minecraft:pearlescent_froglight": { "bedrock_identifier": "minecraft:pearlescent_froglight", "bedrock_data": 0, "firstBlockRuntimeId": 26569, "lastBlockRuntimeId": 26571 }, "minecraft:frogspawn": { "bedrock_identifier": "minecraft:frog_spawn", "bedrock_data": 0, "firstBlockRuntimeId": 26572 }, "minecraft:echo_shard": { "bedrock_identifier": "minecraft:echo_shard", "bedrock_data": 0 }, "minecraft:brush": { "bedrock_identifier": "minecraft:brush", "bedrock_data": 0 }, "minecraft:netherite_upgrade_smithing_template": { "bedrock_identifier": "minecraft:netherite_upgrade_smithing_template", "bedrock_data": 0 }, "minecraft:sentry_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:sentry_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:dune_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:dune_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:coast_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:coast_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:wild_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:wild_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:ward_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:ward_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:eye_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:eye_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:vex_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:vex_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:tide_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:tide_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:snout_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:snout_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:rib_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:rib_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:spire_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:spire_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:wayfinder_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:wayfinder_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:shaper_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:shaper_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:silence_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:silence_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:raiser_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:raiser_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:host_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:host_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:flow_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:flow_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:bolt_armor_trim_smithing_template": { "bedrock_identifier": "minecraft:bolt_armor_trim_smithing_template", "bedrock_data": 0 }, "minecraft:angler_pottery_sherd": { "bedrock_identifier": "minecraft:angler_pottery_sherd", "bedrock_data": 0 }, "minecraft:archer_pottery_sherd": { "bedrock_identifier": "minecraft:archer_pottery_sherd", "bedrock_data": 0 }, "minecraft:arms_up_pottery_sherd": { "bedrock_identifier": "minecraft:arms_up_pottery_sherd", "bedrock_data": 0 }, "minecraft:blade_pottery_sherd": { "bedrock_identifier": "minecraft:blade_pottery_sherd", "bedrock_data": 0 }, "minecraft:brewer_pottery_sherd": { "bedrock_identifier": "minecraft:brewer_pottery_sherd", "bedrock_data": 0 }, "minecraft:burn_pottery_sherd": { "bedrock_identifier": "minecraft:burn_pottery_sherd", "bedrock_data": 0 }, "minecraft:danger_pottery_sherd": { "bedrock_identifier": "minecraft:danger_pottery_sherd", "bedrock_data": 0 }, "minecraft:explorer_pottery_sherd": { "bedrock_identifier": "minecraft:explorer_pottery_sherd", "bedrock_data": 0 }, "minecraft:flow_pottery_sherd": { "bedrock_identifier": "minecraft:flow_pottery_sherd", "bedrock_data": 0 }, "minecraft:friend_pottery_sherd": { "bedrock_identifier": "minecraft:friend_pottery_sherd", "bedrock_data": 0 }, "minecraft:guster_pottery_sherd": { "bedrock_identifier": "minecraft:guster_pottery_sherd", "bedrock_data": 0 }, "minecraft:heart_pottery_sherd": { "bedrock_identifier": "minecraft:heart_pottery_sherd", "bedrock_data": 0 }, "minecraft:heartbreak_pottery_sherd": { "bedrock_identifier": "minecraft:heartbreak_pottery_sherd", "bedrock_data": 0 }, "minecraft:howl_pottery_sherd": { "bedrock_identifier": "minecraft:howl_pottery_sherd", "bedrock_data": 0 }, "minecraft:miner_pottery_sherd": { "bedrock_identifier": "minecraft:miner_pottery_sherd", "bedrock_data": 0 }, "minecraft:mourner_pottery_sherd": { "bedrock_identifier": "minecraft:mourner_pottery_sherd", "bedrock_data": 0 }, "minecraft:plenty_pottery_sherd": { "bedrock_identifier": "minecraft:plenty_pottery_sherd", "bedrock_data": 0 }, "minecraft:prize_pottery_sherd": { "bedrock_identifier": "minecraft:prize_pottery_sherd", "bedrock_data": 0 }, "minecraft:scrape_pottery_sherd": { "bedrock_identifier": "minecraft:scrape_pottery_sherd", "bedrock_data": 0 }, "minecraft:sheaf_pottery_sherd": { "bedrock_identifier": "minecraft:sheaf_pottery_sherd", "bedrock_data": 0 }, "minecraft:shelter_pottery_sherd": { "bedrock_identifier": "minecraft:shelter_pottery_sherd", "bedrock_data": 0 }, "minecraft:skull_pottery_sherd": { "bedrock_identifier": "minecraft:skull_pottery_sherd", "bedrock_data": 0 }, "minecraft:snort_pottery_sherd": { "bedrock_identifier": "minecraft:snort_pottery_sherd", "bedrock_data": 0 }, "minecraft:copper_grate": { "bedrock_identifier": "minecraft:copper_grate", "bedrock_data": 0, "firstBlockRuntimeId": 24676, "lastBlockRuntimeId": 24677 }, "minecraft:exposed_copper_grate": { "bedrock_identifier": "minecraft:exposed_copper_grate", "bedrock_data": 0, "firstBlockRuntimeId": 24678, "lastBlockRuntimeId": 24679 }, "minecraft:weathered_copper_grate": { "bedrock_identifier": "minecraft:weathered_copper_grate", "bedrock_data": 0, "firstBlockRuntimeId": 24680, "lastBlockRuntimeId": 24681 }, "minecraft:oxidized_copper_grate": { "bedrock_identifier": "minecraft:oxidized_copper_grate", "bedrock_data": 0, "firstBlockRuntimeId": 24682, "lastBlockRuntimeId": 24683 }, "minecraft:waxed_copper_grate": { "bedrock_identifier": "minecraft:waxed_copper_grate", "bedrock_data": 0, "firstBlockRuntimeId": 24684, "lastBlockRuntimeId": 24685 }, "minecraft:waxed_exposed_copper_grate": { "bedrock_identifier": "minecraft:waxed_exposed_copper_grate", "bedrock_data": 0, "firstBlockRuntimeId": 24686, "lastBlockRuntimeId": 24687 }, "minecraft:waxed_weathered_copper_grate": { "bedrock_identifier": "minecraft:waxed_weathered_copper_grate", "bedrock_data": 0, "firstBlockRuntimeId": 24688, "lastBlockRuntimeId": 24689 }, "minecraft:waxed_oxidized_copper_grate": { "bedrock_identifier": "minecraft:waxed_oxidized_copper_grate", "bedrock_data": 0, "firstBlockRuntimeId": 24690, "lastBlockRuntimeId": 24691 }, "minecraft:copper_bulb": { "bedrock_identifier": "minecraft:copper_bulb", "bedrock_data": 0, "firstBlockRuntimeId": 24692, "lastBlockRuntimeId": 24695 }, "minecraft:exposed_copper_bulb": { "bedrock_identifier": "minecraft:exposed_copper_bulb", "bedrock_data": 0, "firstBlockRuntimeId": 24696, "lastBlockRuntimeId": 24699 }, "minecraft:weathered_copper_bulb": { "bedrock_identifier": "minecraft:weathered_copper_bulb", "bedrock_data": 0, "firstBlockRuntimeId": 24700, "lastBlockRuntimeId": 24703 }, "minecraft:oxidized_copper_bulb": { "bedrock_identifier": "minecraft:oxidized_copper_bulb", "bedrock_data": 0, "firstBlockRuntimeId": 24704, "lastBlockRuntimeId": 24707 }, "minecraft:waxed_copper_bulb": { "bedrock_identifier": "minecraft:waxed_copper_bulb", "bedrock_data": 0, "firstBlockRuntimeId": 24708, "lastBlockRuntimeId": 24711 }, "minecraft:waxed_exposed_copper_bulb": { "bedrock_identifier": "minecraft:waxed_exposed_copper_bulb", "bedrock_data": 0, "firstBlockRuntimeId": 24712, "lastBlockRuntimeId": 24715 }, "minecraft:waxed_weathered_copper_bulb": { "bedrock_identifier": "minecraft:waxed_weathered_copper_bulb", "bedrock_data": 0, "firstBlockRuntimeId": 24716, "lastBlockRuntimeId": 24719 }, "minecraft:waxed_oxidized_copper_bulb": { "bedrock_identifier": "minecraft:waxed_oxidized_copper_bulb", "bedrock_data": 0, "firstBlockRuntimeId": 24720, "lastBlockRuntimeId": 24723 }, "minecraft:trial_spawner": { "bedrock_identifier": "minecraft:trial_spawner", "bedrock_data": 0, "firstBlockRuntimeId": 26638, "lastBlockRuntimeId": 26649 }, "minecraft:trial_key": { "bedrock_identifier": "minecraft:trial_key", "bedrock_data": 0 }, "minecraft:ominous_trial_key": { "bedrock_identifier": "minecraft:ominous_trial_key", "bedrock_data": 0 }, "minecraft:vault": { "bedrock_identifier": "minecraft:vault", "bedrock_data": 0, "firstBlockRuntimeId": 26650, "lastBlockRuntimeId": 26681 }, "minecraft:ominous_bottle": { "bedrock_identifier": "minecraft:ominous_bottle", "bedrock_data": 0, "is_edible": true }, "minecraft:breeze_rod": { "bedrock_identifier": "minecraft:breeze_rod", "bedrock_data": 0 } } \ No newline at end of file diff --git a/platforms/allay/src/main/resources/plugin.json b/platforms/allay/src/main/resources/plugin.json index b82f10b9e..74244e4c1 100644 --- a/platforms/allay/src/main/resources/plugin.json +++ b/platforms/allay/src/main/resources/plugin.json @@ -4,6 +4,5 @@ "authors": [ "daoge_cmd" ], - "version": "1.0.1", - "order": "START_UP" + "version": "1.0.1" } \ No newline at end of file From 6261f0849c5983ac334b83ebc7b0b4b3f9a965a5 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 11:23:27 +0800 Subject: [PATCH 093/136] feat: remove java version declaration in allay platform as all platforms are in java 21 now --- platforms/allay/build.gradle.kts | 8 +------- platforms/mixin-lifecycle/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/platforms/allay/build.gradle.kts b/platforms/allay/build.gradle.kts index 097e5042b..b7c8ea6a2 100644 --- a/platforms/allay/build.gradle.kts +++ b/platforms/allay/build.gradle.kts @@ -10,13 +10,7 @@ dependencies { implementation("com.google.code.gson", "gson", "2.11.0") compileOnly("org.projectlombok:lombok:1.18.32") - compileOnly(group = "org.allaymc.allay", name = "api", version = "master-SNAPSHOT") + compileOnly("org.allaymc.allay:api:master-SNAPSHOT") annotationProcessor("org.projectlombok:lombok:1.18.32") } - -tasks { - compileJava { - options.release.set(21) - } -} diff --git a/platforms/mixin-lifecycle/build.gradle.kts b/platforms/mixin-lifecycle/build.gradle.kts index 416764871..b7d209b7f 100644 --- a/platforms/mixin-lifecycle/build.gradle.kts +++ b/platforms/mixin-lifecycle/build.gradle.kts @@ -38,4 +38,4 @@ tasks { architectury { common("fabric") minecraft = Versions.Mod.minecraft -} +} \ No newline at end of file From 0ca7171baed3297971d33b08ce830b468de493b8 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 11:23:59 +0800 Subject: [PATCH 094/136] docs: add README.md to allay platform --- README.md | 9 +-------- platforms/allay/README.md | 8 ++++++++ 2 files changed, 9 insertions(+), 8 deletions(-) create mode 100644 platforms/allay/README.md diff --git a/README.md b/README.md index fe06daf5b..c0f9414b7 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,6 @@ Terra Logo -# Terra (Allay Platform) - -This fork adds support for allay, and if you want to build it, here are some files you may need: - -- `mapping/biomes_JE_1_21_to_BE_1_21_30.json` from GeyserMC/mappings -- `mapping/items_JE_1_21_to_BE_1_21_30.json` from GeyserMC/mappings -- `mapping/blocks_JE_1_21_to_BE_1_21_30.json` you should generate it using GeyserMC/mappings-generator, and it's origin name is `generator_blocks.json` -- `je_block_default_states_1_21.json` converted from https://zh.minecraft.wiki/w/Module:Block_state_values currently +# Terra Terra is a modern world generation modding platform, primarily for Minecraft. Terra allows complete customization of world generation with an advanced API, diff --git a/platforms/allay/README.md b/platforms/allay/README.md new file mode 100644 index 000000000..3314f3e0f --- /dev/null +++ b/platforms/allay/README.md @@ -0,0 +1,8 @@ +# Allay platform + +## Resource files + +- `mapping/biomes_JE_1_21_to_BE_1_21_30.json` obtain from GeyserMC/mappings. +- `mapping/items_JE_1_21_to_BE_1_21_30.json` obtain from GeyserMC/mappings. +- `mapping/blocks_JE_1_21_to_BE_1_21_30.json` generated by using GeyserMC/mappings-generator, and it's origin name is `generator_blocks.json`. +- `je_block_default_states_1_21.json` converted from https://zh.minecraft.wiki/w/Module:Block_state_values. \ No newline at end of file From a01f700653f2c3373c6427193d0a5b1c826ae65b Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 11:24:54 +0800 Subject: [PATCH 095/136] build: rollback github action file changes --- .github/workflows/gradle-build.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index 746083e5c..2117c7eee 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -7,7 +7,7 @@ name: Gradle Build -on: [ push, pull_request ] +on: [ pull_request ] jobs: build: @@ -44,11 +44,4 @@ jobs: # Properties are passed as -Pname=value properties: | kotlin.js.compiler=ir - kotlin.parallel.tasks.in.project=true - # Upload Allay-Server - - name: Upload Terra-Allay - uses: actions/upload-artifact@v4 - if: success() && contains(github.ref_name, 'allay') - with: - name: Terra-Allay - path: platforms/allay/build/libs/*-shaded.jar + kotlin.parallel.tasks.in.project=true \ No newline at end of file From ece5213a87eabf0e0f3103c57f9ce0c48fa80f81 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 11:33:40 +0800 Subject: [PATCH 096/136] feat: use macro in plugin.json and update author list --- platforms/allay/src/main/resources/plugin.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/platforms/allay/src/main/resources/plugin.json b/platforms/allay/src/main/resources/plugin.json index 74244e4c1..284639c27 100644 --- a/platforms/allay/src/main/resources/plugin.json +++ b/platforms/allay/src/main/resources/plugin.json @@ -1,8 +1,8 @@ { - "entrance": "org.allaymc.terra.allay.TerraAllayPlugin", - "name": "Terra", - "authors": [ - "daoge_cmd" - ], - "version": "1.0.1" + "entrance": "org.allaymc.terra.allay.TerraAllayPlugin", + "name": "Terra", + "authors": ["daoge_cmd", "dfsek", "duplexsystem", "Astrash", "solonovamax", "Sancires", "Aureus", "RogueShade"], + "version": "@VERSION@", + "description": "@DESCRIPTION@", + "website": "@WIKI@" } \ No newline at end of file From cc14c716bfd99d8222170dc03ccf60743271aeb4 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 20:36:40 +0800 Subject: [PATCH 097/136] build: move repo declaration to DependencyConfig.kt --- buildSrc/src/main/kotlin/DependencyConfig.kt | 9 +++++++++ platforms/allay/build.gradle.kts | 7 ------- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/buildSrc/src/main/kotlin/DependencyConfig.kt b/buildSrc/src/main/kotlin/DependencyConfig.kt index 0df8e29f2..193a9a49a 100644 --- a/buildSrc/src/main/kotlin/DependencyConfig.kt +++ b/buildSrc/src/main/kotlin/DependencyConfig.kt @@ -51,6 +51,15 @@ fun Project.configureDependencies() { maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") { name = "Sonatype Snapshots" } + maven("https://repo.opencollab.dev/maven-releases/") { + name = "OpenCollab Releases" + } + maven("https://repo.opencollab.dev/maven-snapshots/") { + name = "OpenCollab Snapshots" + } + maven("https://storehouse.okaeri.eu/repository/maven-public/") { + name = "Okaeri" + } } dependencies { diff --git a/platforms/allay/build.gradle.kts b/platforms/allay/build.gradle.kts index b7c8ea6a2..a4c04285c 100644 --- a/platforms/allay/build.gradle.kts +++ b/platforms/allay/build.gradle.kts @@ -1,10 +1,3 @@ -repositories { - maven("https://repo.opencollab.dev/maven-releases/") - maven("https://repo.opencollab.dev/maven-snapshots/") - maven("https://storehouse.okaeri.eu/repository/maven-public/") - maven("https://jitpack.io/") -} - dependencies { shadedApi(project(":common:implementation:base")) implementation("com.google.code.gson", "gson", "2.11.0") From 8a6ad9594799cb4c40764b39ee793fba27efe193 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 20:55:11 +0800 Subject: [PATCH 098/136] refactor: delombok and move version info to Versions.kt --- buildSrc/src/main/kotlin/Versions.kt | 5 +++ platforms/allay/build.gradle.kts | 8 +--- .../java/org/allaymc/terra/allay/Mapping.java | 20 +++++----- .../allaymc/terra/allay/TerraAllayPlugin.java | 12 +++--- .../generator/AllayGeneratorWrapper.java | 37 ++++++++++++------- 5 files changed, 45 insertions(+), 37 deletions(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 1e48e716a..388875eb6 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -75,4 +75,9 @@ object Versions { const val nbt = "6.1" const val logback = "1.5.8" } + + object Allay { + const val api = "master-SNAPSHOT" + + } } \ No newline at end of file diff --git a/platforms/allay/build.gradle.kts b/platforms/allay/build.gradle.kts index a4c04285c..d20a23e8d 100644 --- a/platforms/allay/build.gradle.kts +++ b/platforms/allay/build.gradle.kts @@ -1,9 +1,5 @@ dependencies { shadedApi(project(":common:implementation:base")) - implementation("com.google.code.gson", "gson", "2.11.0") - compileOnly("org.projectlombok:lombok:1.18.32") - compileOnly("org.allaymc.allay:api:master-SNAPSHOT") - - annotationProcessor("org.projectlombok:lombok:1.18.32") -} + compileOnly("org.allaymc.allay", "api", Versions.Allay.api) +} \ No newline at end of file diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java index 1bc9920b0..967035506 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java @@ -4,7 +4,6 @@ import com.google.gson.reflect.TypeToken; import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap; import it.unimi.dsi.fastutil.objects.Object2ObjectOpenHashMap; -import lombok.extern.slf4j.Slf4j; import org.allaymc.api.block.type.BlockState; import org.allaymc.api.block.type.BlockStateSafeGetter; import org.allaymc.api.block.type.BlockTypes; @@ -21,7 +20,6 @@ import java.util.TreeMap; /** * @author daoge_cmd */ -@Slf4j public final class Mapping { private static final Map> JE_BLOCK_DEFAULT_PROPERTIES = new Object2ObjectOpenHashMap<>(); @@ -45,7 +43,7 @@ public final class Mapping { public static BlockState blockStateJeToBe(JeBlockState jeBlockState) { var result = BLOCK_STATE_JE_HASH_TO_BE.get(jeBlockState.getHash()); if(result == null) { - log.warn("Failed to find be block state for {}", jeBlockState); + TerraAllayPlugin.INSTANCE.getPluginLogger().warn("Failed to find be block state for {}", jeBlockState); return BE_AIR_STATE; } return result; @@ -72,7 +70,7 @@ public final class Mapping { public static Map getJeBlockDefaultProperties(String jeBlockIdentifier) { var defaultProperties = JE_BLOCK_DEFAULT_PROPERTIES.get(jeBlockIdentifier); if( defaultProperties == null) { - log.warn("Failed to find default properties for {}", jeBlockIdentifier); + TerraAllayPlugin.INSTANCE.getPluginLogger().warn("Failed to find default properties for {}", jeBlockIdentifier); return Map.of(); } return defaultProperties; @@ -85,7 +83,7 @@ public final class Mapping { private static boolean initBiomeMapping() { try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/biomes_JE_1_21_to_BE_1_21_30.json")) { if (stream == null) { - log.error("biomes mapping not found"); + TerraAllayPlugin.INSTANCE.getPluginLogger().error("biomes mapping not found"); return false; } var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); @@ -93,7 +91,7 @@ public final class Mapping { BIOME_ID_JE_TO_BE.put(mapping.getKey(), mapping.getValue().get("bedrock_id")); } } catch(IOException e) { - log.error("Failed to load biomes mapping", e); + TerraAllayPlugin.INSTANCE.getPluginLogger().error("Failed to load biomes mapping", e); return false; } return true; @@ -102,7 +100,7 @@ public final class Mapping { private static boolean initItemMapping() { try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/items_JE_1_21_to_BE_1_21_30.json")) { if (stream == null) { - log.error("items mapping not found"); + TerraAllayPlugin.INSTANCE.getPluginLogger().error("items mapping not found"); return false; } var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); @@ -115,7 +113,7 @@ public final class Mapping { ITEM_ID_JE_TO_BE.put(mapping.getKey(), item); } } catch(IOException e) { - log.error("Failed to load items mapping", e); + TerraAllayPlugin.INSTANCE.getPluginLogger().error("Failed to load items mapping", e); } return true; } @@ -123,7 +121,7 @@ public final class Mapping { private static boolean initBlockStateMapping() { try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/blocks_JE_1_21_to_BE_1_21_30.json")) { if (stream == null) { - log.error("blocks mapping not found"); + TerraAllayPlugin.INSTANCE.getPluginLogger().error("blocks mapping not found"); return false; } // noinspection unchecked @@ -135,7 +133,7 @@ public final class Mapping { BLOCK_STATE_JE_HASH_TO_BE.put(jeState.getHash(), beState); } } catch(IOException e) { - log.error("Failed to load blocks mapping", e); + TerraAllayPlugin.INSTANCE.getPluginLogger().error("Failed to load blocks mapping", e); } return true; } @@ -143,7 +141,7 @@ public final class Mapping { private static boolean initJeBlockDefaultProperties() { try (var stream = Mapping.class.getClassLoader().getResourceAsStream("je_block_default_states_1_21.json")) { if (stream == null) { - log.error("je_block_default_states.json not found"); + TerraAllayPlugin.INSTANCE.getPluginLogger().error("je_block_default_states.json not found"); return false; } var states = JSONUtils.from(stream, new TypeToken>>(){}); diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java index 960bccede..da55ab464 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java @@ -1,6 +1,5 @@ package org.allaymc.terra.allay; -import lombok.extern.slf4j.Slf4j; import org.allaymc.api.plugin.Plugin; import org.allaymc.api.registry.Registries; import org.allaymc.terra.allay.generator.AllayGeneratorWrapper; @@ -10,7 +9,6 @@ import com.dfsek.terra.api.event.events.platform.PlatformInitializationEvent; /** * @author daoge_cmd */ -@Slf4j public class TerraAllayPlugin extends Plugin { public static TerraAllayPlugin INSTANCE; @@ -23,18 +21,18 @@ public class TerraAllayPlugin extends Plugin { // TODO: Adapt command manager @Override public void onLoad() { - log.info("Starting Terra..."); + pluginLogger.info("Starting Terra..."); - log.info("Loading mapping..."); + pluginLogger.info("Loading mapping..."); Mapping.init(); - log.info("Initializing allay platform..."); + pluginLogger.info("Initializing allay platform..."); PLATFORM = new AllayPlatform(); PLATFORM.getEventManager().callEvent(new PlatformInitializationEvent()); - log.info("Registering generator..."); + pluginLogger.info("Registering generator..."); Registries.WORLD_GENERATOR_FACTORIES.register("TERRA", preset -> new AllayGeneratorWrapper(preset).getAllayWorldGenerator()); - log.info("Terra started"); + pluginLogger.info("Terra started"); } } diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java index 153180abc..bd54cc745 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java @@ -1,7 +1,5 @@ package org.allaymc.terra.allay.generator; -import lombok.Getter; -import lombok.extern.slf4j.Slf4j; import org.allaymc.api.utils.AllayStringUtils; import org.allaymc.api.world.biome.BiomeType; import org.allaymc.api.world.generator.WorldGenerator; @@ -22,24 +20,20 @@ import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; import com.dfsek.terra.api.world.chunk.generation.util.GeneratorWrapper; import com.dfsek.terra.api.world.info.WorldProperties; + /** * @author daoge_cmd */ -@Slf4j public class AllayGeneratorWrapper implements GeneratorWrapper { protected static final String DEFAULT_PACK_NAME = "overworld"; protected static final String OPTION_PACK_NAME = "pack"; protected static final String OPTION_SEED = "seed"; - @Getter protected final BiomeProvider biomeProvider; - @Getter protected final ConfigPack configPack; protected final ChunkGenerator chunkGenerator; - @Getter protected final long seed; - @Getter protected final WorldGenerator allayWorldGenerator; protected WorldProperties worldProperties; protected AllayServerWorld allayServerWorld; @@ -101,9 +95,9 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { ); var minHeight = context.getDimensionInfo().minHeight(); var maxHeight = context.getDimensionInfo().maxHeight(); - for (int x = 0; x < 16; x++) { - for (int y = minHeight; y < maxHeight; y++) { - for (int z = 0; z < 16; z++) { + for(int x = 0; x < 16; x++) { + for(int y = minHeight; y < maxHeight; y++) { + for(int z = 0; z < 16; z++) { chunk.setBiome( x, y, z, (BiomeType) biomeProvider.getBiome(chunkX * 16 + x, y, chunkZ * 16 + z, seed).getPlatformBiome().getHandle() @@ -120,17 +114,18 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { } } + public class AllayPopulator implements Populator { @Override public boolean apply(PopulateContext context) { var tmp = new AllayProtoWorld(allayServerWorld, context); try { - for (var generationStage : configPack.getStages()) { + for(var generationStage : configPack.getStages()) { generationStage.populate(tmp); } - } catch (Exception e) { - log.error("Error while populating chunk", e); + } catch(Exception e) { + TerraAllayPlugin.INSTANCE.getPluginLogger().error("Error while populating chunk", e); } return true; } @@ -157,4 +152,20 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { public ChunkGenerator getHandle() { return chunkGenerator; } + + public BiomeProvider getBiomeProvider() { + return this.biomeProvider; + } + + public ConfigPack getConfigPack() { + return this.configPack; + } + + public long getSeed() { + return this.seed; + } + + public WorldGenerator getAllayWorldGenerator() { + return this.allayWorldGenerator; + } } From f5de88215c97067edeb6691fcad2471cb03ea3d3 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 21:00:15 +0800 Subject: [PATCH 099/136] build: use fixed allay api version --- buildSrc/src/main/kotlin/Versions.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 388875eb6..afd86c9ca 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -77,7 +77,6 @@ object Versions { } object Allay { - const val api = "master-SNAPSHOT" - + const val api = "1cb3bb69c6" } } \ No newline at end of file From f2c5c156504a912d63f20334f347b6ae7c94f6cf Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 21:02:07 +0800 Subject: [PATCH 100/136] refactor: use com.dfsek as the new package name --- .../dfsek}/terra/allay/AllayPlatform.java | 8 ++++---- .../dfsek}/terra/allay/JeBlockState.java | 2 +- .../allaymc => com/dfsek}/terra/allay/Mapping.java | 2 +- .../dfsek}/terra/allay/TerraAllayPlugin.java | 4 ++-- .../dfsek}/terra/allay/delegate/AllayBiome.java | 2 +- .../dfsek}/terra/allay/delegate/AllayBlockState.java | 4 ++-- .../dfsek}/terra/allay/delegate/AllayBlockType.java | 4 ++-- .../dfsek}/terra/allay/delegate/AllayChunk.java | 4 ++-- .../dfsek}/terra/allay/delegate/AllayEnchantment.java | 4 ++-- .../dfsek}/terra/allay/delegate/AllayFakeEntity.java | 2 +- .../dfsek}/terra/allay/delegate/AllayItemMeta.java | 2 +- .../dfsek}/terra/allay/delegate/AllayItemStack.java | 2 +- .../dfsek}/terra/allay/delegate/AllayItemType.java | 2 +- .../dfsek}/terra/allay/delegate/AllayProtoChunk.java | 4 ++-- .../dfsek}/terra/allay/delegate/AllayProtoWorld.java | 4 ++-- .../dfsek}/terra/allay/delegate/AllayServerWorld.java | 6 +++--- .../terra/allay/generator/AllayGeneratorWrapper.java | 10 +++++----- .../dfsek}/terra/allay/handle/AllayItemHandle.java | 8 ++++---- .../dfsek}/terra/allay/handle/AllayWorldHandle.java | 8 ++++---- 19 files changed, 41 insertions(+), 41 deletions(-) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/AllayPlatform.java (91%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/JeBlockState.java (98%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/Mapping.java (99%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/TerraAllayPlugin.java (91%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/delegate/AllayBiome.java (87%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/delegate/AllayBlockState.java (96%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/delegate/AllayBlockType.java (90%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/delegate/AllayChunk.java (95%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/delegate/AllayEnchantment.java (92%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/delegate/AllayFakeEntity.java (95%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/delegate/AllayItemMeta.java (96%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/delegate/AllayItemStack.java (96%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/delegate/AllayItemType.java (95%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/delegate/AllayProtoChunk.java (94%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/delegate/AllayProtoWorld.java (97%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/delegate/AllayServerWorld.java (94%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/generator/AllayGeneratorWrapper.java (95%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/handle/AllayItemHandle.java (82%) rename platforms/allay/src/main/java/{org/allaymc => com/dfsek}/terra/allay/handle/AllayWorldHandle.java (83%) diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/AllayPlatform.java similarity index 91% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/AllayPlatform.java index 3014da100..fe3fa31e0 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/AllayPlatform.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/AllayPlatform.java @@ -1,13 +1,13 @@ -package org.allaymc.terra.allay; +package com.dfsek.terra.allay; import com.dfsek.tectonic.api.TypeRegistry; import com.dfsek.tectonic.api.depth.DepthTracker; import com.dfsek.tectonic.api.exception.LoadException; import org.allaymc.api.server.Server; import org.allaymc.api.world.biome.BiomeId; -import org.allaymc.terra.allay.delegate.AllayBiome; -import org.allaymc.terra.allay.handle.AllayItemHandle; -import org.allaymc.terra.allay.handle.AllayWorldHandle; +import com.dfsek.terra.allay.delegate.AllayBiome; +import com.dfsek.terra.allay.handle.AllayItemHandle; +import com.dfsek.terra.allay.handle.AllayWorldHandle; import org.jetbrains.annotations.NotNull; import java.io.File; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/JeBlockState.java similarity index 98% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/JeBlockState.java index fde2c0469..677557835 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/JeBlockState.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/JeBlockState.java @@ -1,4 +1,4 @@ -package org.allaymc.terra.allay; +package com.dfsek.terra.allay; import org.allaymc.api.utils.HashUtils; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/Mapping.java similarity index 99% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/Mapping.java index 967035506..5fee8e120 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/Mapping.java @@ -1,4 +1,4 @@ -package org.allaymc.terra.allay; +package com.dfsek.terra.allay; import com.google.gson.reflect.TypeToken; import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java similarity index 91% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java index da55ab464..137553d5d 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java @@ -1,8 +1,8 @@ -package org.allaymc.terra.allay; +package com.dfsek.terra.allay; import org.allaymc.api.plugin.Plugin; import org.allaymc.api.registry.Registries; -import org.allaymc.terra.allay.generator.AllayGeneratorWrapper; +import com.dfsek.terra.allay.generator.AllayGeneratorWrapper; import com.dfsek.terra.api.event.events.platform.PlatformInitializationEvent; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBiome.java similarity index 87% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBiome.java index 46cf92695..d9607fcb7 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBiome.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBiome.java @@ -1,4 +1,4 @@ -package org.allaymc.terra.allay.delegate; +package com.dfsek.terra.allay.delegate; import org.allaymc.api.world.biome.BiomeType; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java similarity index 96% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java index 99decead0..d67440997 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockState.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java @@ -1,8 +1,8 @@ -package org.allaymc.terra.allay.delegate; +package com.dfsek.terra.allay.delegate; import org.allaymc.api.block.type.BlockState; import org.allaymc.api.block.type.BlockTypes; -import org.allaymc.terra.allay.JeBlockState; +import com.dfsek.terra.allay.JeBlockState; import com.dfsek.terra.api.block.BlockType; import com.dfsek.terra.api.block.state.properties.Property; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockType.java similarity index 90% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockType.java index c76677dc9..a88d8d235 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayBlockType.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockType.java @@ -1,8 +1,8 @@ -package org.allaymc.terra.allay.delegate; +package com.dfsek.terra.allay.delegate; import org.allaymc.api.block.tag.BlockTags; import org.allaymc.api.block.type.BlockType; -import org.allaymc.terra.allay.Mapping; +import com.dfsek.terra.allay.Mapping; import com.dfsek.terra.api.block.state.BlockState; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayChunk.java similarity index 95% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayChunk.java index 88bef7484..aa234a7f9 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayChunk.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayChunk.java @@ -1,10 +1,10 @@ -package org.allaymc.terra.allay.delegate; +package com.dfsek.terra.allay.delegate; import org.allaymc.api.block.property.type.BlockPropertyTypes; import org.allaymc.api.block.tag.BlockTags; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.world.chunk.Chunk; -import org.allaymc.terra.allay.Mapping; +import com.dfsek.terra.allay.Mapping; import org.jetbrains.annotations.NotNull; import com.dfsek.terra.api.block.state.BlockState; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayEnchantment.java similarity index 92% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayEnchantment.java index 71e3bfa0c..461a3490d 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayEnchantment.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayEnchantment.java @@ -1,7 +1,7 @@ -package org.allaymc.terra.allay.delegate; +package com.dfsek.terra.allay.delegate; import org.allaymc.api.item.enchantment.EnchantmentType; -import org.allaymc.terra.allay.Mapping; +import com.dfsek.terra.allay.Mapping; import com.dfsek.terra.api.inventory.ItemStack; import com.dfsek.terra.api.inventory.item.Enchantment; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayFakeEntity.java similarity index 95% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayFakeEntity.java index 6fcda2d2e..912b4d00e 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayFakeEntity.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayFakeEntity.java @@ -1,4 +1,4 @@ -package org.allaymc.terra.allay.delegate; +package com.dfsek.terra.allay.delegate; import com.dfsek.terra.api.entity.Entity; import com.dfsek.terra.api.util.vector.Vector3; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemMeta.java similarity index 96% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemMeta.java index ed1e58516..9d8fb6590 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemMeta.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemMeta.java @@ -1,4 +1,4 @@ -package org.allaymc.terra.allay.delegate; +package com.dfsek.terra.allay.delegate; import org.allaymc.api.item.ItemStack; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemStack.java similarity index 96% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemStack.java index 3d6f6953c..f7535f0b0 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemStack.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemStack.java @@ -1,4 +1,4 @@ -package org.allaymc.terra.allay.delegate; +package com.dfsek.terra.allay.delegate; import org.allaymc.api.item.ItemStack; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemType.java similarity index 95% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemType.java index 4329aa3ee..114951545 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayItemType.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemType.java @@ -1,4 +1,4 @@ -package org.allaymc.terra.allay.delegate; +package com.dfsek.terra.allay.delegate; import org.allaymc.api.item.data.ItemId; import org.allaymc.api.item.type.ItemType; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoChunk.java similarity index 94% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoChunk.java index db8737400..d3ceedb8f 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoChunk.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoChunk.java @@ -1,10 +1,10 @@ -package org.allaymc.terra.allay.delegate; +package com.dfsek.terra.allay.delegate; import org.allaymc.api.block.property.type.BlockPropertyTypes; import org.allaymc.api.block.tag.BlockTags; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.world.chunk.UnsafeChunk; -import org.allaymc.terra.allay.Mapping; +import com.dfsek.terra.allay.Mapping; import org.jetbrains.annotations.NotNull; import com.dfsek.terra.api.block.state.BlockState; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java similarity index 97% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java index e580e2a4a..88f1a241e 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java @@ -1,10 +1,10 @@ -package org.allaymc.terra.allay.delegate; +package com.dfsek.terra.allay.delegate; import org.allaymc.api.block.property.type.BlockPropertyTypes; import org.allaymc.api.block.tag.BlockTags; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.world.generator.context.OtherChunkAccessibleContext; -import org.allaymc.terra.allay.Mapping; +import com.dfsek.terra.allay.Mapping; import com.dfsek.terra.api.block.entity.BlockEntity; import com.dfsek.terra.api.block.state.BlockState; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java similarity index 94% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java index 5a45bdf02..1ab9b9970 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/delegate/AllayServerWorld.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java @@ -1,10 +1,10 @@ -package org.allaymc.terra.allay.delegate; +package com.dfsek.terra.allay.delegate; import org.allaymc.api.block.property.type.BlockPropertyTypes; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.world.Dimension; -import org.allaymc.terra.allay.Mapping; -import org.allaymc.terra.allay.generator.AllayGeneratorWrapper; +import com.dfsek.terra.allay.Mapping; +import com.dfsek.terra.allay.generator.AllayGeneratorWrapper; import com.dfsek.terra.api.block.entity.BlockEntity; import com.dfsek.terra.api.block.state.BlockState; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java similarity index 95% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java index bd54cc745..a37685167 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java @@ -1,4 +1,4 @@ -package org.allaymc.terra.allay.generator; +package com.dfsek.terra.allay.generator; import org.allaymc.api.utils.AllayStringUtils; import org.allaymc.api.world.biome.BiomeType; @@ -7,10 +7,10 @@ import org.allaymc.api.world.generator.context.NoiseContext; import org.allaymc.api.world.generator.context.PopulateContext; import org.allaymc.api.world.generator.function.Noiser; import org.allaymc.api.world.generator.function.Populator; -import org.allaymc.terra.allay.TerraAllayPlugin; -import org.allaymc.terra.allay.delegate.AllayProtoChunk; -import org.allaymc.terra.allay.delegate.AllayProtoWorld; -import org.allaymc.terra.allay.delegate.AllayServerWorld; +import com.dfsek.terra.allay.TerraAllayPlugin; +import com.dfsek.terra.allay.delegate.AllayProtoChunk; +import com.dfsek.terra.allay.delegate.AllayProtoWorld; +import com.dfsek.terra.allay.delegate.AllayServerWorld; import java.util.Locale; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayItemHandle.java similarity index 82% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayItemHandle.java index a8981dd20..f0529d3a5 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayItemHandle.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayItemHandle.java @@ -1,10 +1,10 @@ -package org.allaymc.terra.allay.handle; +package com.dfsek.terra.allay.handle; import org.allaymc.api.registry.Registries; import org.allaymc.api.utils.Identifier; -import org.allaymc.terra.allay.Mapping; -import org.allaymc.terra.allay.delegate.AllayEnchantment; -import org.allaymc.terra.allay.delegate.AllayItemType; +import com.dfsek.terra.allay.Mapping; +import com.dfsek.terra.allay.delegate.AllayEnchantment; +import com.dfsek.terra.allay.delegate.AllayItemType; import java.util.Set; import java.util.stream.Collectors; diff --git a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayWorldHandle.java similarity index 83% rename from platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java rename to platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayWorldHandle.java index 17b505728..72be17470 100644 --- a/platforms/allay/src/main/java/org/allaymc/terra/allay/handle/AllayWorldHandle.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayWorldHandle.java @@ -1,8 +1,8 @@ -package org.allaymc.terra.allay.handle; +package com.dfsek.terra.allay.handle; -import org.allaymc.terra.allay.JeBlockState; -import org.allaymc.terra.allay.Mapping; -import org.allaymc.terra.allay.delegate.AllayBlockState; +import com.dfsek.terra.allay.JeBlockState; +import com.dfsek.terra.allay.Mapping; +import com.dfsek.terra.allay.delegate.AllayBlockState; import org.jetbrains.annotations.NotNull; import com.dfsek.terra.api.block.state.BlockState; From b0bc37c34d973a76e16fa1e9d5b4c9139c0d7ae0 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 21:05:06 +0800 Subject: [PATCH 101/136] refactor: remove version info in mapping files --- platforms/allay/README.md | 10 ++++++---- .../src/main/java/com/dfsek/terra/allay/Mapping.java | 8 ++++---- ...t_states_1_21.json => je_block_default_states.json} | 0 .../{biomes_JE_1_21_to_BE_1_21_30.json => biomes.json} | 0 .../{blocks_JE_1_21_to_BE_1_21_30.json => blocks.json} | 0 .../{items_JE_1_21_to_BE_1_21_30.json => items.json} | 0 6 files changed, 10 insertions(+), 8 deletions(-) rename platforms/allay/src/main/resources/{je_block_default_states_1_21.json => je_block_default_states.json} (100%) rename platforms/allay/src/main/resources/mapping/{biomes_JE_1_21_to_BE_1_21_30.json => biomes.json} (100%) rename platforms/allay/src/main/resources/mapping/{blocks_JE_1_21_to_BE_1_21_30.json => blocks.json} (100%) rename platforms/allay/src/main/resources/mapping/{items_JE_1_21_to_BE_1_21_30.json => items.json} (100%) diff --git a/platforms/allay/README.md b/platforms/allay/README.md index 3314f3e0f..2ffbbce19 100644 --- a/platforms/allay/README.md +++ b/platforms/allay/README.md @@ -2,7 +2,9 @@ ## Resource files -- `mapping/biomes_JE_1_21_to_BE_1_21_30.json` obtain from GeyserMC/mappings. -- `mapping/items_JE_1_21_to_BE_1_21_30.json` obtain from GeyserMC/mappings. -- `mapping/blocks_JE_1_21_to_BE_1_21_30.json` generated by using GeyserMC/mappings-generator, and it's origin name is `generator_blocks.json`. -- `je_block_default_states_1_21.json` converted from https://zh.minecraft.wiki/w/Module:Block_state_values. \ No newline at end of file +Current mapping version: je 1.21 to be 1.21.30 + +- `mapping/biomes.json` obtain from GeyserMC/mappings. +- `mapping/items_.json` obtain from GeyserMC/mappings. +- `mapping/blocks.json` generated by using GeyserMC/mappings-generator, and it's origin name is `generator_blocks.json`. +- `je_block_default_states.json` converted from https://zh.minecraft.wiki/w/Module:Block_state_values. \ No newline at end of file diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/Mapping.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/Mapping.java index 5fee8e120..59d6974cb 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/Mapping.java @@ -81,7 +81,7 @@ public final class Mapping { } private static boolean initBiomeMapping() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/biomes_JE_1_21_to_BE_1_21_30.json")) { + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/biomes.json")) { if (stream == null) { TerraAllayPlugin.INSTANCE.getPluginLogger().error("biomes mapping not found"); return false; @@ -98,7 +98,7 @@ public final class Mapping { } private static boolean initItemMapping() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/items_JE_1_21_to_BE_1_21_30.json")) { + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/items.json")) { if (stream == null) { TerraAllayPlugin.INSTANCE.getPluginLogger().error("items mapping not found"); return false; @@ -119,7 +119,7 @@ public final class Mapping { } private static boolean initBlockStateMapping() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/blocks_JE_1_21_to_BE_1_21_30.json")) { + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/blocks.json")) { if (stream == null) { TerraAllayPlugin.INSTANCE.getPluginLogger().error("blocks mapping not found"); return false; @@ -139,7 +139,7 @@ public final class Mapping { } private static boolean initJeBlockDefaultProperties() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("je_block_default_states_1_21.json")) { + try (var stream = Mapping.class.getClassLoader().getResourceAsStream("je_block_default_states.json")) { if (stream == null) { TerraAllayPlugin.INSTANCE.getPluginLogger().error("je_block_default_states.json not found"); return false; diff --git a/platforms/allay/src/main/resources/je_block_default_states_1_21.json b/platforms/allay/src/main/resources/je_block_default_states.json similarity index 100% rename from platforms/allay/src/main/resources/je_block_default_states_1_21.json rename to platforms/allay/src/main/resources/je_block_default_states.json diff --git a/platforms/allay/src/main/resources/mapping/biomes_JE_1_21_to_BE_1_21_30.json b/platforms/allay/src/main/resources/mapping/biomes.json similarity index 100% rename from platforms/allay/src/main/resources/mapping/biomes_JE_1_21_to_BE_1_21_30.json rename to platforms/allay/src/main/resources/mapping/biomes.json diff --git a/platforms/allay/src/main/resources/mapping/blocks_JE_1_21_to_BE_1_21_30.json b/platforms/allay/src/main/resources/mapping/blocks.json similarity index 100% rename from platforms/allay/src/main/resources/mapping/blocks_JE_1_21_to_BE_1_21_30.json rename to platforms/allay/src/main/resources/mapping/blocks.json diff --git a/platforms/allay/src/main/resources/mapping/items_JE_1_21_to_BE_1_21_30.json b/platforms/allay/src/main/resources/mapping/items.json similarity index 100% rename from platforms/allay/src/main/resources/mapping/items_JE_1_21_to_BE_1_21_30.json rename to platforms/allay/src/main/resources/mapping/items.json From 8d63c40e2f1fb68d40271bfa63e63eca63cbcfca Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 21:13:00 +0800 Subject: [PATCH 102/136] refactor: replace 'var' with explicit type --- .../com/dfsek/terra/allay/JeBlockState.java | 17 +++--- .../java/com/dfsek/terra/allay/Mapping.java | 57 ++++++++++--------- .../terra/allay/delegate/AllayBlockState.java | 2 +- .../terra/allay/delegate/AllayChunk.java | 6 +- .../terra/allay/delegate/AllayItemMeta.java | 8 ++- .../terra/allay/delegate/AllayItemStack.java | 7 ++- .../terra/allay/delegate/AllayProtoChunk.java | 6 +- .../terra/allay/delegate/AllayProtoWorld.java | 6 +- .../allay/delegate/AllayServerWorld.java | 2 +- .../generator/AllayGeneratorWrapper.java | 25 ++++---- .../terra/allay/handle/AllayWorldHandle.java | 2 +- 11 files changed, 75 insertions(+), 63 deletions(-) diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/JeBlockState.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/JeBlockState.java index 677557835..60583f22c 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/JeBlockState.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/JeBlockState.java @@ -2,6 +2,7 @@ package com.dfsek.terra.allay; import org.allaymc.api.utils.HashUtils; +import java.util.Map; import java.util.TreeMap; @@ -22,13 +23,13 @@ public class JeBlockState { } private JeBlockState(String data) { - var strings = data.replace("[", ",").replace("]", ",").replace(" ", "").split(","); + String[] strings = data.replace("[", ",").replace("]", ",").replace(" ", "").split(","); this.identifier = strings[0]; this.properties = new TreeMap<>(); if (strings.length > 1) { for (int i = 1; i < strings.length; i++) { - final var tmp = strings[i]; - final var index = tmp.indexOf("="); + final String tmp = strings[i]; + final int index = tmp.indexOf("="); properties.put(tmp.substring(0, index), tmp.substring(index + 1)); } } @@ -40,14 +41,12 @@ public class JeBlockState { } private void completeMissingProperties() { - var defaultProperties = Mapping.getJeBlockDefaultProperties(identifier); + Map defaultProperties = Mapping.getJeBlockDefaultProperties(identifier); if(properties.size() == defaultProperties.size()) { return; } - for (var entry : defaultProperties.entrySet()) { - if (properties.containsKey(entry.getKey())) continue; - properties.put(entry.getKey(), entry.getValue()); - } + defaultProperties.entrySet().stream().filter(entry -> !properties.containsKey(entry.getKey())).forEach( + entry -> properties.put(entry.getKey(), entry.getValue())); } private JeBlockState(String identifier, TreeMap properties) { @@ -59,7 +58,7 @@ public class JeBlockState { if(!includeProperties) return identifier; StringBuilder builder = new StringBuilder(identifier).append(";"); properties.forEach((k, v) -> builder.append(k).append("=").append(v).append(";")); - var str = builder.toString(); + String str = builder.toString(); if (hash == Integer.MAX_VALUE) { hash = HashUtils.fnv1a_32(str.getBytes()); } diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/Mapping.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/Mapping.java index 59d6974cb..c0aab82f9 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/Mapping.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/Mapping.java @@ -6,14 +6,18 @@ import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap; import it.unimi.dsi.fastutil.objects.Object2ObjectOpenHashMap; import org.allaymc.api.block.type.BlockState; import org.allaymc.api.block.type.BlockStateSafeGetter; +import org.allaymc.api.block.type.BlockStateSafeGetter.Getter; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.item.type.ItemType; import org.allaymc.api.item.type.ItemTypeSafeGetter; import org.allaymc.api.utils.JSONUtils; import java.io.IOException; +import java.io.InputStream; import java.util.List; import java.util.Map; +import java.util.Map.Entry; +import java.util.Set; import java.util.TreeMap; @@ -41,7 +45,7 @@ public final class Mapping { } public static BlockState blockStateJeToBe(JeBlockState jeBlockState) { - var result = BLOCK_STATE_JE_HASH_TO_BE.get(jeBlockState.getHash()); + BlockState result = BLOCK_STATE_JE_HASH_TO_BE.get(jeBlockState.getHash()); if(result == null) { TerraAllayPlugin.INSTANCE.getPluginLogger().warn("Failed to find be block state for {}", jeBlockState); return BE_AIR_STATE; @@ -68,7 +72,7 @@ public final class Mapping { } public static Map getJeBlockDefaultProperties(String jeBlockIdentifier) { - var defaultProperties = JE_BLOCK_DEFAULT_PROPERTIES.get(jeBlockIdentifier); + Map defaultProperties = JE_BLOCK_DEFAULT_PROPERTIES.get(jeBlockIdentifier); if( defaultProperties == null) { TerraAllayPlugin.INSTANCE.getPluginLogger().warn("Failed to find default properties for {}", jeBlockIdentifier); return Map.of(); @@ -81,15 +85,13 @@ public final class Mapping { } private static boolean initBiomeMapping() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/biomes.json")) { + try (InputStream stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/biomes.json")) { if (stream == null) { TerraAllayPlugin.INSTANCE.getPluginLogger().error("biomes mapping not found"); return false; } - var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); - for(var mapping : mappings) { - BIOME_ID_JE_TO_BE.put(mapping.getKey(), mapping.getValue().get("bedrock_id")); - } + Set>> mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); + mappings.forEach(mapping -> BIOME_ID_JE_TO_BE.put(mapping.getKey(), mapping.getValue().get("bedrock_id"))); } catch(IOException e) { TerraAllayPlugin.INSTANCE.getPluginLogger().error("Failed to load biomes mapping", e); return false; @@ -98,20 +100,20 @@ public final class Mapping { } private static boolean initItemMapping() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/items.json")) { + try (InputStream stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/items.json")) { if (stream == null) { TerraAllayPlugin.INSTANCE.getPluginLogger().error("items mapping not found"); return false; } - var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); - for(var mapping : mappings) { - var item = ItemTypeSafeGetter + Set>> mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); + mappings.forEach(mapping -> { + ItemType item = ItemTypeSafeGetter .name((String) mapping.getValue().get("bedrock_identifier")) // NOTICE: should be cast to double .meta(((Double) mapping.getValue().get("bedrock_data")).intValue()) .itemType(); ITEM_ID_JE_TO_BE.put(mapping.getKey(), item); - } + }); } catch(IOException e) { TerraAllayPlugin.INSTANCE.getPluginLogger().error("Failed to load items mapping", e); } @@ -119,19 +121,19 @@ public final class Mapping { } private static boolean initBlockStateMapping() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/blocks.json")) { + try (InputStream stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/blocks.json")) { if (stream == null) { TerraAllayPlugin.INSTANCE.getPluginLogger().error("blocks mapping not found"); return false; } // noinspection unchecked - var mappings = (List>>) JSONUtils.from(stream, new TypeToken>(){}).get("mappings"); - for(var mapping : mappings) { - var jeState = createJeBlockState(mapping.get("java_state")); - var beState = createBeBlockState(mapping.get("bedrock_state")); + List>> mappings = (List>>) JSONUtils.from(stream, new TypeToken>(){}).get("mappings"); + mappings.forEach(mapping -> { + JeBlockState jeState = createJeBlockState(mapping.get("java_state")); + BlockState beState = createBeBlockState(mapping.get("bedrock_state")); BLOCK_STATE_BE_TO_JE.put(beState, jeState); BLOCK_STATE_JE_HASH_TO_BE.put(jeState.getHash(), beState); - } + }); } catch(IOException e) { TerraAllayPlugin.INSTANCE.getPluginLogger().error("Failed to load blocks mapping", e); } @@ -139,15 +141,15 @@ public final class Mapping { } private static boolean initJeBlockDefaultProperties() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("je_block_default_states.json")) { + try (InputStream stream = Mapping.class.getClassLoader().getResourceAsStream("je_block_default_states.json")) { if (stream == null) { TerraAllayPlugin.INSTANCE.getPluginLogger().error("je_block_default_states.json not found"); return false; } - var states = JSONUtils.from(stream, new TypeToken>>(){}); - for(var entry : states.entrySet()) { - var identifier = entry.getKey(); - var properties = entry.getValue(); + Map> states = JSONUtils.from(stream, new TypeToken>>(){}); + for(Entry> entry : states.entrySet()) { + String identifier = entry.getKey(); + Map properties = entry.getValue(); JE_BLOCK_DEFAULT_PROPERTIES.put(identifier, properties); } } catch(IOException e) { @@ -157,7 +159,7 @@ public final class Mapping { } private static BlockState createBeBlockState(Map data) { - var getter = BlockStateSafeGetter + Getter getter = BlockStateSafeGetter .name("minecraft:" + data.get("bedrock_identifier")); if (data.containsKey("state")) { // noinspection unchecked @@ -167,8 +169,8 @@ public final class Mapping { } private static Map convertValueType(Map data) { - var result = new TreeMap(); - for (var entry : data.entrySet()) { + TreeMap result = new TreeMap<>(); + for (Entry entry : data.entrySet()) { if (entry.getValue() instanceof Number number) { // Convert double to int because the number in json is double result.put(entry.getKey(), number.intValue()); @@ -180,8 +182,7 @@ public final class Mapping { } private static JeBlockState createJeBlockState(Map data) { - var identifier = (String) data.get("Name"); // noinspection unchecked - return JeBlockState.create(identifier, new TreeMap<>((Map) data.getOrDefault("Properties", Map.of()))); + return JeBlockState.create((String) data.get("Name"), new TreeMap<>((Map) data.getOrDefault("Properties", Map.of()))); } } diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java index d67440997..fe64840fe 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java @@ -27,7 +27,7 @@ public final class AllayBlockState implements com.dfsek.terra.api.block.state.Bl @Override public boolean matches(com.dfsek.terra.api.block.state.BlockState o) { - var other = ((AllayBlockState) o); + AllayBlockState other = ((AllayBlockState) o); return other.allayBlockState == this.allayBlockState && other.containsWater == this.containsWater; } diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayChunk.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayChunk.java index aa234a7f9..56e767b2f 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayChunk.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayChunk.java @@ -19,9 +19,9 @@ public record AllayChunk(ServerWorld world, Chunk allayChunk) implements com.dfs @Override public void setBlock(int x, int y, int z, BlockState data, boolean physics) { - var allayBlockState = (AllayBlockState) data; + AllayBlockState allayBlockState = (AllayBlockState) data; allayChunk.setBlockState(x, y, z, allayBlockState.allayBlockState()); - var containsWater = allayBlockState.containsWater() || allayChunk.getBlockState(x, y, z).getBlockType().hasBlockTag(BlockTags.WATER); + boolean containsWater = allayBlockState.containsWater() || allayChunk.getBlockState(x, y, z).getBlockType().hasBlockTag(BlockTags.WATER); if (containsWater) { allayChunk.setBlockState(x, y, z, WATER, 1); } @@ -29,7 +29,7 @@ public record AllayChunk(ServerWorld world, Chunk allayChunk) implements com.dfs @Override public @NotNull BlockState getBlock(int x, int y, int z) { - var blockState = allayChunk.getBlockState(x, y, z); + org.allaymc.api.block.type.BlockState blockState = allayChunk.getBlockState(x, y, z); return new AllayBlockState(blockState, Mapping.blockStateBeToJe(blockState)); } diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemMeta.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemMeta.java index 9d8fb6590..6935e5908 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemMeta.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemMeta.java @@ -8,20 +8,24 @@ import java.util.Map; import com.dfsek.terra.api.inventory.item.Enchantment; import com.dfsek.terra.api.inventory.item.ItemMeta; +import org.allaymc.api.item.enchantment.EnchantmentInstance; +import org.allaymc.api.item.enchantment.EnchantmentType; + + /** * @author daoge_cmd */ public record AllayItemMeta(ItemStack allayItemStack) implements ItemMeta { @Override public void addEnchantment(Enchantment enchantment, int level) { - var allayEnchantment = ((AllayEnchantment) enchantment).allayEnchantment(); + EnchantmentType allayEnchantment = ((AllayEnchantment) enchantment).allayEnchantment(); allayItemStack.addEnchantment(allayEnchantment, (short) level); } @Override public Map getEnchantments() { Map results = new HashMap<>(); - for (var allayEnchantmentInstance : allayItemStack.getEnchantments()) { + for (EnchantmentInstance allayEnchantmentInstance : allayItemStack.getEnchantments()) { results.put(new AllayEnchantment(allayEnchantmentInstance.getType()), allayEnchantmentInstance.getLevel()); } return results; diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemStack.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemStack.java index f7535f0b0..857aa13ac 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemStack.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemStack.java @@ -5,6 +5,9 @@ import org.allaymc.api.item.ItemStack; import com.dfsek.terra.api.inventory.Item; import com.dfsek.terra.api.inventory.item.ItemMeta; +import org.allaymc.api.item.enchantment.EnchantmentInstance; + + /** * @author daoge_cmd */ @@ -31,9 +34,9 @@ public record AllayItemStack(ItemStack allayItemStack) implements com.dfsek.terr @Override public void setItemMeta(ItemMeta meta) { - var targetItem = ((AllayItemMeta) meta).allayItemStack(); + ItemStack targetItem = ((AllayItemMeta) meta).allayItemStack(); allayItemStack.removeAllEnchantments(); - for (var enchantment : targetItem.getEnchantments()) { + for (EnchantmentInstance enchantment : targetItem.getEnchantments()) { allayItemStack.addEnchantment(enchantment.getType(), enchantment.getLevel()); } allayItemStack.setLore(targetItem.getLore()); diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoChunk.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoChunk.java index d3ceedb8f..51baf43a0 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoChunk.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoChunk.java @@ -24,9 +24,9 @@ public record AllayProtoChunk(UnsafeChunk allayChunk) implements ProtoChunk { @Override public void setBlock(int x, int y, int z, @NotNull BlockState blockState) { - var allayBlockState = (AllayBlockState) blockState; + AllayBlockState allayBlockState = (AllayBlockState) blockState; allayChunk.setBlockState(x, y, z, allayBlockState.allayBlockState()); - var containsWater = allayBlockState.containsWater() || allayChunk.getBlockState(x, y, z).getBlockType().hasBlockTag(BlockTags.WATER); + boolean containsWater = allayBlockState.containsWater() || allayChunk.getBlockState(x, y, z).getBlockType().hasBlockTag(BlockTags.WATER); if (containsWater) { allayChunk.setBlockState(x, y, z, WATER, 1); } @@ -34,7 +34,7 @@ public record AllayProtoChunk(UnsafeChunk allayChunk) implements ProtoChunk { @Override public @NotNull BlockState getBlock(int x, int y, int z) { - var blockState = allayChunk.getBlockState(x, y, z); + org.allaymc.api.block.type.BlockState blockState = allayChunk.getBlockState(x, y, z); return new AllayBlockState(blockState, Mapping.blockStateBeToJe(blockState)); } diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java index 88f1a241e..79250cb1c 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java @@ -41,15 +41,15 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, OtherChunkAcces @Override public void setBlockState(int x, int y, int z, BlockState data, boolean physics) { - var allayBlockState = (AllayBlockState)data; - var containsWater = allayBlockState.containsWater() || context.getBlockState(x, y, z).getBlockType().hasBlockTag(BlockTags.WATER); + AllayBlockState allayBlockState = (AllayBlockState)data; + boolean containsWater = allayBlockState.containsWater() || context.getBlockState(x, y, z).getBlockType().hasBlockTag(BlockTags.WATER); context.setBlockState(x, y, z, allayBlockState.allayBlockState()); if (containsWater) context.setBlockState(x, y, z, WATER, 1); } @Override public BlockState getBlockState(int x, int y, int z) { - var blockState = context.getBlockState(x, y, z); + org.allaymc.api.block.type.BlockState blockState = context.getBlockState(x, y, z); return new AllayBlockState(blockState, Mapping.blockStateBeToJe(blockState)); } diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java index 1ab9b9970..f59d66fb1 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java @@ -42,7 +42,7 @@ public record AllayServerWorld(AllayGeneratorWrapper allayGeneratorWrapper, Dime @Override public BlockState getBlockState(int x, int y, int z) { - var allayBlockState = allayDimension.getBlockState(x, y, z); + org.allaymc.api.block.type.BlockState allayBlockState = allayDimension.getBlockState(x, y, z); return new AllayBlockState(allayBlockState, Mapping.blockStateBeToJe(allayBlockState)); } diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java index a37685167..e1f71ba88 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java @@ -1,7 +1,10 @@ package com.dfsek.terra.allay.generator; +import com.dfsek.terra.api.world.chunk.generation.stage.GenerationStage; + import org.allaymc.api.utils.AllayStringUtils; import org.allaymc.api.world.biome.BiomeType; +import org.allaymc.api.world.chunk.UnsafeChunk; import org.allaymc.api.world.generator.WorldGenerator; import org.allaymc.api.world.generator.context.NoiseContext; import org.allaymc.api.world.generator.context.PopulateContext; @@ -13,6 +16,8 @@ import com.dfsek.terra.allay.delegate.AllayProtoWorld; import com.dfsek.terra.allay.delegate.AllayServerWorld; import java.util.Locale; +import java.util.Map; +import java.util.Optional; import com.dfsek.terra.api.config.ConfigPack; import com.dfsek.terra.api.world.biome.generation.BiomeProvider; @@ -39,8 +44,8 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { protected AllayServerWorld allayServerWorld; public AllayGeneratorWrapper(String preset) { - var options = AllayStringUtils.parseOptions(preset); - var packName = options.getOrDefault(OPTION_PACK_NAME, DEFAULT_PACK_NAME); + Map options = AllayStringUtils.parseOptions(preset); + String packName = options.getOrDefault(OPTION_PACK_NAME, DEFAULT_PACK_NAME); this.seed = Long.parseLong(options.getOrDefault(OPTION_SEED, "0")); this.configPack = createConfigPack(packName); this.chunkGenerator = createGenerator(this.configPack); @@ -85,16 +90,16 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { @Override public boolean apply(NoiseContext context) { - var chunk = context.getCurrentChunk(); - var chunkX = chunk.getX(); - var chunkZ = chunk.getZ(); + UnsafeChunk chunk = context.getCurrentChunk(); + int chunkX = chunk.getX(); + int chunkZ = chunk.getZ(); chunkGenerator.generateChunkData( new AllayProtoChunk(chunk), worldProperties, biomeProvider, chunkX, chunkZ ); - var minHeight = context.getDimensionInfo().minHeight(); - var maxHeight = context.getDimensionInfo().maxHeight(); + int minHeight = context.getDimensionInfo().minHeight(); + int maxHeight = context.getDimensionInfo().maxHeight(); for(int x = 0; x < 16; x++) { for(int y = minHeight; y < maxHeight; y++) { for(int z = 0; z < 16; z++) { @@ -119,9 +124,9 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { @Override public boolean apply(PopulateContext context) { - var tmp = new AllayProtoWorld(allayServerWorld, context); + AllayProtoWorld tmp = new AllayProtoWorld(allayServerWorld, context); try { - for(var generationStage : configPack.getStages()) { + for(GenerationStage generationStage : configPack.getStages()) { generationStage.populate(tmp); } } catch(Exception e) { @@ -137,7 +142,7 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { } protected static ConfigPack createConfigPack(String packName) { - var byId = TerraAllayPlugin.PLATFORM.getConfigRegistry().getByID(packName); + Optional byId = TerraAllayPlugin.PLATFORM.getConfigRegistry().getByID(packName); return byId.orElseGet( () -> TerraAllayPlugin.PLATFORM.getConfigRegistry().getByID(packName.toUpperCase(Locale.ENGLISH)) .orElseThrow(() -> new IllegalArgumentException("Cant find terra config pack named " + packName)) diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayWorldHandle.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayWorldHandle.java index 72be17470..d0a48fbb3 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayWorldHandle.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayWorldHandle.java @@ -16,7 +16,7 @@ public class AllayWorldHandle implements WorldHandle { @Override public @NotNull BlockState createBlockState(@NotNull String data) { - var jeBlockState = JeBlockState.fromString(data); + JeBlockState jeBlockState = JeBlockState.fromString(data); return new AllayBlockState(Mapping.blockStateJeToBe(jeBlockState), jeBlockState); } From 67fc2ba4dcacb3a13e071aa230f5a547de5df442 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 21:21:54 +0800 Subject: [PATCH 103/136] docs: remove useless TODOs --- .../src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java | 2 +- .../java/com/dfsek/terra/allay/delegate/AllayBlockState.java | 3 --- .../java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java | 1 - .../java/com/dfsek/terra/allay/delegate/AllayServerWorld.java | 1 - 4 files changed, 1 insertion(+), 6 deletions(-) diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java index 137553d5d..cf0997e1b 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java @@ -18,7 +18,6 @@ public class TerraAllayPlugin extends Plugin { INSTANCE = this; } - // TODO: Adapt command manager @Override public void onLoad() { pluginLogger.info("Starting Terra..."); @@ -29,6 +28,7 @@ public class TerraAllayPlugin extends Plugin { pluginLogger.info("Initializing allay platform..."); PLATFORM = new AllayPlatform(); PLATFORM.getEventManager().callEvent(new PlatformInitializationEvent()); + // TODO: adapt command manager pluginLogger.info("Registering generator..."); Registries.WORLD_GENERATOR_FACTORIES.register("TERRA", preset -> new AllayGeneratorWrapper(preset).getAllayWorldGenerator()); diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java index fe64840fe..57be8b8f6 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java @@ -33,19 +33,16 @@ public final class AllayBlockState implements com.dfsek.terra.api.block.state.Bl @Override public > boolean has(Property property) { - // TODO return false; } @Override public > T get(Property property) { - // TODO return null; } @Override public > com.dfsek.terra.api.block.state.BlockState set(Property property, T value) { - // TODO return null; } diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java index 79250cb1c..2cee6ff4e 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java @@ -60,7 +60,6 @@ public record AllayProtoWorld(AllayServerWorld allayServerWorld, OtherChunkAcces @Override public BlockEntity getBlockEntity(int x, int y, int z) { - // TODO return null; } diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java index f59d66fb1..e5d860487 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java @@ -48,7 +48,6 @@ public record AllayServerWorld(AllayGeneratorWrapper allayGeneratorWrapper, Dime @Override public BlockEntity getBlockEntity(int x, int y, int z) { - // TODO return null; } From 84fe8792d6b5e7d120b1e5a8062d256f9bc61b07 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 21:33:59 +0800 Subject: [PATCH 104/136] fix: fix entrance in plugin.json --- platforms/allay/src/main/resources/plugin.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/allay/src/main/resources/plugin.json b/platforms/allay/src/main/resources/plugin.json index 284639c27..8edc610c4 100644 --- a/platforms/allay/src/main/resources/plugin.json +++ b/platforms/allay/src/main/resources/plugin.json @@ -1,5 +1,5 @@ { - "entrance": "org.allaymc.terra.allay.TerraAllayPlugin", + "entrance": "com.dfsek.terra.allay.TerraAllayPlugin", "name": "Terra", "authors": ["daoge_cmd", "dfsek", "duplexsystem", "Astrash", "solonovamax", "Sancires", "Aureus", "RogueShade"], "version": "@VERSION@", From f0d03d4538d951dbe0aa7d5c0eb45274606175ea Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 21:34:23 +0800 Subject: [PATCH 105/136] feat: fallback to FLAT generator if config pack name is missing --- .../dfsek/terra/allay/TerraAllayPlugin.java | 2 +- .../generator/AllayGeneratorWrapper.java | 20 ++++++++++++++++--- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java index cf0997e1b..615b168be 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java @@ -31,7 +31,7 @@ public class TerraAllayPlugin extends Plugin { // TODO: adapt command manager pluginLogger.info("Registering generator..."); - Registries.WORLD_GENERATOR_FACTORIES.register("TERRA", preset -> new AllayGeneratorWrapper(preset).getAllayWorldGenerator()); + Registries.WORLD_GENERATOR_FACTORIES.register("TERRA", AllayGeneratorWrapper::createWorldGenerator); pluginLogger.info("Terra started"); } diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java index e1f71ba88..127c904b6 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java @@ -2,6 +2,7 @@ package com.dfsek.terra.allay.generator; import com.dfsek.terra.api.world.chunk.generation.stage.GenerationStage; +import org.allaymc.api.registry.Registries; import org.allaymc.api.utils.AllayStringUtils; import org.allaymc.api.world.biome.BiomeType; import org.allaymc.api.world.chunk.UnsafeChunk; @@ -31,7 +32,6 @@ import com.dfsek.terra.api.world.info.WorldProperties; */ public class AllayGeneratorWrapper implements GeneratorWrapper { - protected static final String DEFAULT_PACK_NAME = "overworld"; protected static final String OPTION_PACK_NAME = "pack"; protected static final String OPTION_SEED = "seed"; @@ -43,9 +43,23 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { protected WorldProperties worldProperties; protected AllayServerWorld allayServerWorld; - public AllayGeneratorWrapper(String preset) { + public static WorldGenerator createWorldGenerator(String preset) { + try { + AllayGeneratorWrapper wrapper = new AllayGeneratorWrapper(preset); + return wrapper.getAllayWorldGenerator(); + } catch (IllegalArgumentException e) { + TerraAllayPlugin.INSTANCE.getPluginLogger().error("Fail to create world generator with preset: {}", preset); + TerraAllayPlugin.INSTANCE.getPluginLogger().error("Reason: {}", e.getMessage()); + return Registries.WORLD_GENERATOR_FACTORIES.get("FLAT").apply(""); + } + } + + protected AllayGeneratorWrapper(String preset) { Map options = AllayStringUtils.parseOptions(preset); - String packName = options.getOrDefault(OPTION_PACK_NAME, DEFAULT_PACK_NAME); + String packName = options.get(OPTION_PACK_NAME); + if(packName == null) { + throw new IllegalArgumentException("Missing config pack name"); + } this.seed = Long.parseLong(options.getOrDefault(OPTION_SEED, "0")); this.configPack = createConfigPack(packName); this.chunkGenerator = createGenerator(this.configPack); From df3e623530acbfbf07ed5d5a375ede2c2f6b9335 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 22:13:54 +0800 Subject: [PATCH 106/136] feat: implement config pack reloading --- .../com/dfsek/terra/allay/AllayPlatform.java | 29 +++++-- .../dfsek/terra/allay/TerraAllayPlugin.java | 28 ++++++- .../terra/allay/delegate/AllayBlockState.java | 2 +- .../terra/allay/delegate/AllayBlockType.java | 2 +- .../terra/allay/delegate/AllayChunk.java | 2 +- .../allay/delegate/AllayEnchantment.java | 2 +- .../terra/allay/delegate/AllayItemMeta.java | 6 +- .../terra/allay/delegate/AllayItemStack.java | 4 +- .../terra/allay/delegate/AllayProtoChunk.java | 2 +- .../terra/allay/delegate/AllayProtoWorld.java | 2 +- .../allay/delegate/AllayServerWorld.java | 2 +- .../generator/AllayGeneratorWrapper.java | 83 ++++++++----------- .../terra/allay/handle/AllayItemHandle.java | 6 +- .../terra/allay/handle/AllayWorldHandle.java | 4 +- 14 files changed, 100 insertions(+), 74 deletions(-) diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/AllayPlatform.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/AllayPlatform.java index fe3fa31e0..e40d88f69 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/AllayPlatform.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/AllayPlatform.java @@ -5,25 +5,29 @@ import com.dfsek.tectonic.api.depth.DepthTracker; import com.dfsek.tectonic.api.exception.LoadException; import org.allaymc.api.server.Server; import org.allaymc.api.world.biome.BiomeId; -import com.dfsek.terra.allay.delegate.AllayBiome; -import com.dfsek.terra.allay.handle.AllayItemHandle; -import com.dfsek.terra.allay.handle.AllayWorldHandle; import org.jetbrains.annotations.NotNull; import java.io.File; +import java.util.HashSet; +import java.util.Set; import com.dfsek.terra.AbstractPlatform; +import com.dfsek.terra.allay.delegate.AllayBiome; +import com.dfsek.terra.allay.generator.AllayGeneratorWrapper; +import com.dfsek.terra.allay.handle.AllayItemHandle; +import com.dfsek.terra.allay.handle.AllayWorldHandle; import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.handle.ItemHandle; import com.dfsek.terra.api.handle.WorldHandle; import com.dfsek.terra.api.world.biome.PlatformBiome; - /** * @author daoge_cmd */ public class AllayPlatform extends AbstractPlatform { + public static final Set GENERATOR_WRAPPERS = new HashSet<>(); + protected static final AllayWorldHandle ALLAY_WORLD_HANDLE = new AllayWorldHandle(); protected static final AllayItemHandle ALLAY_ITEM_HANDLE = new AllayItemHandle(); @@ -33,8 +37,21 @@ public class AllayPlatform extends AbstractPlatform { @Override public boolean reload() { - // TODO: implement reload - return false; + getTerraConfig().load(this); + getRawConfigRegistry().clear(); + boolean succeed = getRawConfigRegistry().loadAll(this); + + GENERATOR_WRAPPERS.forEach(wrapper -> { + getConfigRegistry().get(wrapper.getConfigPack().getRegistryKey()).ifPresent(pack -> { + wrapper.setConfigPack(pack); + var dimension = wrapper.getAllayWorldGenerator().getDimension(); + TerraAllayPlugin.INSTANCE.getPluginLogger().info( + "Replaced pack in chunk generator for world {}", + dimension.getWorld().getWorldData().getName() + ":" + dimension.getDimensionInfo().dimensionId() + ); + }); + }); + return succeed; } @Override diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java index 615b168be..330d6c377 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java @@ -2,8 +2,8 @@ package com.dfsek.terra.allay; import org.allaymc.api.plugin.Plugin; import org.allaymc.api.registry.Registries; -import com.dfsek.terra.allay.generator.AllayGeneratorWrapper; +import com.dfsek.terra.allay.generator.AllayGeneratorWrapper; import com.dfsek.terra.api.event.events.platform.PlatformInitializationEvent; /** @@ -31,8 +31,32 @@ public class TerraAllayPlugin extends Plugin { // TODO: adapt command manager pluginLogger.info("Registering generator..."); - Registries.WORLD_GENERATOR_FACTORIES.register("TERRA", AllayGeneratorWrapper::createWorldGenerator); + Registries.WORLD_GENERATOR_FACTORIES.register("TERRA", preset -> { + try { + AllayGeneratorWrapper wrapper = new AllayGeneratorWrapper(preset); + AllayPlatform.GENERATOR_WRAPPERS.add(wrapper); + return wrapper.getAllayWorldGenerator(); + } catch (IllegalArgumentException e) { + TerraAllayPlugin.INSTANCE.getPluginLogger().error("Fail to create world generator with preset: {}", preset); + TerraAllayPlugin.INSTANCE.getPluginLogger().error("Reason: {}", e.getMessage()); + return Registries.WORLD_GENERATOR_FACTORIES.get("FLAT").apply(""); + } + }); pluginLogger.info("Terra started"); } + + @Override + public boolean isReloadable() { + return true; + } + + @Override + public void reload() { + if(PLATFORM.reload()) { + pluginLogger.info("Terra reloaded successfully."); + } else { + pluginLogger.error("Terra failed to reload."); + } + } } diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java index 57be8b8f6..be8988400 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockState.java @@ -2,8 +2,8 @@ package com.dfsek.terra.allay.delegate; import org.allaymc.api.block.type.BlockState; import org.allaymc.api.block.type.BlockTypes; -import com.dfsek.terra.allay.JeBlockState; +import com.dfsek.terra.allay.JeBlockState; import com.dfsek.terra.api.block.BlockType; import com.dfsek.terra.api.block.state.properties.Property; diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockType.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockType.java index a88d8d235..ab394eaab 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockType.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayBlockType.java @@ -2,8 +2,8 @@ package com.dfsek.terra.allay.delegate; import org.allaymc.api.block.tag.BlockTags; import org.allaymc.api.block.type.BlockType; -import com.dfsek.terra.allay.Mapping; +import com.dfsek.terra.allay.Mapping; import com.dfsek.terra.api.block.state.BlockState; /** diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayChunk.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayChunk.java index 56e767b2f..7c515acd4 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayChunk.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayChunk.java @@ -4,9 +4,9 @@ import org.allaymc.api.block.property.type.BlockPropertyTypes; import org.allaymc.api.block.tag.BlockTags; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.world.chunk.Chunk; -import com.dfsek.terra.allay.Mapping; import org.jetbrains.annotations.NotNull; +import com.dfsek.terra.allay.Mapping; import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.world.ServerWorld; diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayEnchantment.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayEnchantment.java index 461a3490d..b41fa7b75 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayEnchantment.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayEnchantment.java @@ -1,8 +1,8 @@ package com.dfsek.terra.allay.delegate; import org.allaymc.api.item.enchantment.EnchantmentType; -import com.dfsek.terra.allay.Mapping; +import com.dfsek.terra.allay.Mapping; import com.dfsek.terra.api.inventory.ItemStack; import com.dfsek.terra.api.inventory.item.Enchantment; diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemMeta.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemMeta.java index 6935e5908..857f0af6d 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemMeta.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemMeta.java @@ -1,6 +1,8 @@ package com.dfsek.terra.allay.delegate; import org.allaymc.api.item.ItemStack; +import org.allaymc.api.item.enchantment.EnchantmentInstance; +import org.allaymc.api.item.enchantment.EnchantmentType; import java.util.HashMap; import java.util.Map; @@ -8,10 +10,6 @@ import java.util.Map; import com.dfsek.terra.api.inventory.item.Enchantment; import com.dfsek.terra.api.inventory.item.ItemMeta; -import org.allaymc.api.item.enchantment.EnchantmentInstance; -import org.allaymc.api.item.enchantment.EnchantmentType; - - /** * @author daoge_cmd */ diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemStack.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemStack.java index 857aa13ac..8c6b03e35 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemStack.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayItemStack.java @@ -1,13 +1,11 @@ package com.dfsek.terra.allay.delegate; import org.allaymc.api.item.ItemStack; +import org.allaymc.api.item.enchantment.EnchantmentInstance; import com.dfsek.terra.api.inventory.Item; import com.dfsek.terra.api.inventory.item.ItemMeta; -import org.allaymc.api.item.enchantment.EnchantmentInstance; - - /** * @author daoge_cmd */ diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoChunk.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoChunk.java index 51baf43a0..47c11f4ac 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoChunk.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoChunk.java @@ -4,9 +4,9 @@ import org.allaymc.api.block.property.type.BlockPropertyTypes; import org.allaymc.api.block.tag.BlockTags; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.world.chunk.UnsafeChunk; -import com.dfsek.terra.allay.Mapping; import org.jetbrains.annotations.NotNull; +import com.dfsek.terra.allay.Mapping; import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.world.chunk.generation.ProtoChunk; diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java index 2cee6ff4e..9bce80d7e 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayProtoWorld.java @@ -4,8 +4,8 @@ import org.allaymc.api.block.property.type.BlockPropertyTypes; import org.allaymc.api.block.tag.BlockTags; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.world.generator.context.OtherChunkAccessibleContext; -import com.dfsek.terra.allay.Mapping; +import com.dfsek.terra.allay.Mapping; import com.dfsek.terra.api.block.entity.BlockEntity; import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.config.ConfigPack; diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java index e5d860487..170159eb3 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/delegate/AllayServerWorld.java @@ -3,9 +3,9 @@ package com.dfsek.terra.allay.delegate; import org.allaymc.api.block.property.type.BlockPropertyTypes; import org.allaymc.api.block.type.BlockTypes; import org.allaymc.api.world.Dimension; + import com.dfsek.terra.allay.Mapping; import com.dfsek.terra.allay.generator.AllayGeneratorWrapper; - import com.dfsek.terra.api.block.entity.BlockEntity; import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.config.ConfigPack; diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java index 127c904b6..270e61b28 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java @@ -1,8 +1,5 @@ package com.dfsek.terra.allay.generator; -import com.dfsek.terra.api.world.chunk.generation.stage.GenerationStage; - -import org.allaymc.api.registry.Registries; import org.allaymc.api.utils.AllayStringUtils; import org.allaymc.api.world.biome.BiomeType; import org.allaymc.api.world.chunk.UnsafeChunk; @@ -11,22 +8,22 @@ import org.allaymc.api.world.generator.context.NoiseContext; import org.allaymc.api.world.generator.context.PopulateContext; import org.allaymc.api.world.generator.function.Noiser; import org.allaymc.api.world.generator.function.Populator; -import com.dfsek.terra.allay.TerraAllayPlugin; -import com.dfsek.terra.allay.delegate.AllayProtoChunk; -import com.dfsek.terra.allay.delegate.AllayProtoWorld; -import com.dfsek.terra.allay.delegate.AllayServerWorld; import java.util.Locale; import java.util.Map; import java.util.Optional; +import com.dfsek.terra.allay.TerraAllayPlugin; +import com.dfsek.terra.allay.delegate.AllayProtoChunk; +import com.dfsek.terra.allay.delegate.AllayProtoWorld; +import com.dfsek.terra.allay.delegate.AllayServerWorld; import com.dfsek.terra.api.config.ConfigPack; import com.dfsek.terra.api.world.biome.generation.BiomeProvider; import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator; +import com.dfsek.terra.api.world.chunk.generation.stage.GenerationStage; import com.dfsek.terra.api.world.chunk.generation.util.GeneratorWrapper; import com.dfsek.terra.api.world.info.WorldProperties; - /** * @author daoge_cmd */ @@ -36,32 +33,21 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { protected static final String OPTION_SEED = "seed"; protected final BiomeProvider biomeProvider; - protected final ConfigPack configPack; protected final ChunkGenerator chunkGenerator; protected final long seed; protected final WorldGenerator allayWorldGenerator; + protected ConfigPack configPack; protected WorldProperties worldProperties; protected AllayServerWorld allayServerWorld; - public static WorldGenerator createWorldGenerator(String preset) { - try { - AllayGeneratorWrapper wrapper = new AllayGeneratorWrapper(preset); - return wrapper.getAllayWorldGenerator(); - } catch (IllegalArgumentException e) { - TerraAllayPlugin.INSTANCE.getPluginLogger().error("Fail to create world generator with preset: {}", preset); - TerraAllayPlugin.INSTANCE.getPluginLogger().error("Reason: {}", e.getMessage()); - return Registries.WORLD_GENERATOR_FACTORIES.get("FLAT").apply(""); - } - } - - protected AllayGeneratorWrapper(String preset) { + public AllayGeneratorWrapper(String preset) { Map options = AllayStringUtils.parseOptions(preset); String packName = options.get(OPTION_PACK_NAME); if(packName == null) { throw new IllegalArgumentException("Missing config pack name"); } this.seed = Long.parseLong(options.getOrDefault(OPTION_SEED, "0")); - this.configPack = createConfigPack(packName); + this.configPack = getConfigPack(packName); this.chunkGenerator = createGenerator(this.configPack); this.biomeProvider = this.configPack.getBiomeProvider(); this.allayWorldGenerator = WorldGenerator @@ -100,7 +86,32 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { .build(); } - public class AllayNoiser implements Noiser { + @Override + public ChunkGenerator getHandle() { + return chunkGenerator; + } + + public BiomeProvider getBiomeProvider() { + return this.biomeProvider; + } + + public ConfigPack getConfigPack() { + return this.configPack; + } + + public void setConfigPack(ConfigPack configPack) { + this.configPack = configPack; + } + + public long getSeed() { + return this.seed; + } + + public WorldGenerator getAllayWorldGenerator() { + return this.allayWorldGenerator; + } + + protected class AllayNoiser implements Noiser { @Override public boolean apply(NoiseContext context) { @@ -133,8 +144,7 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { } } - - public class AllayPopulator implements Populator { + protected class AllayPopulator implements Populator { @Override public boolean apply(PopulateContext context) { @@ -155,7 +165,7 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { } } - protected static ConfigPack createConfigPack(String packName) { + protected static ConfigPack getConfigPack(String packName) { Optional byId = TerraAllayPlugin.PLATFORM.getConfigRegistry().getByID(packName); return byId.orElseGet( () -> TerraAllayPlugin.PLATFORM.getConfigRegistry().getByID(packName.toUpperCase(Locale.ENGLISH)) @@ -166,25 +176,4 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { protected static ChunkGenerator createGenerator(ConfigPack configPack) { return configPack.getGeneratorProvider().newInstance(configPack); } - - @Override - public ChunkGenerator getHandle() { - return chunkGenerator; - } - - public BiomeProvider getBiomeProvider() { - return this.biomeProvider; - } - - public ConfigPack getConfigPack() { - return this.configPack; - } - - public long getSeed() { - return this.seed; - } - - public WorldGenerator getAllayWorldGenerator() { - return this.allayWorldGenerator; - } } diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayItemHandle.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayItemHandle.java index f0529d3a5..f85f001bb 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayItemHandle.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayItemHandle.java @@ -2,13 +2,13 @@ package com.dfsek.terra.allay.handle; import org.allaymc.api.registry.Registries; import org.allaymc.api.utils.Identifier; -import com.dfsek.terra.allay.Mapping; -import com.dfsek.terra.allay.delegate.AllayEnchantment; -import com.dfsek.terra.allay.delegate.AllayItemType; import java.util.Set; import java.util.stream.Collectors; +import com.dfsek.terra.allay.Mapping; +import com.dfsek.terra.allay.delegate.AllayEnchantment; +import com.dfsek.terra.allay.delegate.AllayItemType; import com.dfsek.terra.api.handle.ItemHandle; import com.dfsek.terra.api.inventory.Item; import com.dfsek.terra.api.inventory.item.Enchantment; diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayWorldHandle.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayWorldHandle.java index d0a48fbb3..37e84425f 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayWorldHandle.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/handle/AllayWorldHandle.java @@ -1,10 +1,10 @@ package com.dfsek.terra.allay.handle; +import org.jetbrains.annotations.NotNull; + import com.dfsek.terra.allay.JeBlockState; import com.dfsek.terra.allay.Mapping; import com.dfsek.terra.allay.delegate.AllayBlockState; -import org.jetbrains.annotations.NotNull; - import com.dfsek.terra.api.block.state.BlockState; import com.dfsek.terra.api.entity.EntityType; import com.dfsek.terra.api.handle.WorldHandle; From d2107fd258c2e394e36053b13a780a0a49a8e021 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 14 Oct 2024 22:37:09 +0800 Subject: [PATCH 107/136] fix: chunkGenerator should be overwritten after reloading --- .../com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java index 270e61b28..20422b831 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/generator/AllayGeneratorWrapper.java @@ -33,9 +33,9 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { protected static final String OPTION_SEED = "seed"; protected final BiomeProvider biomeProvider; - protected final ChunkGenerator chunkGenerator; protected final long seed; protected final WorldGenerator allayWorldGenerator; + protected ChunkGenerator chunkGenerator; protected ConfigPack configPack; protected WorldProperties worldProperties; protected AllayServerWorld allayServerWorld; @@ -101,6 +101,7 @@ public class AllayGeneratorWrapper implements GeneratorWrapper { public void setConfigPack(ConfigPack configPack) { this.configPack = configPack; + this.chunkGenerator = createGenerator(this.configPack); } public long getSeed() { From 071f9d39af701bf3e7129e12165e87dfe35fcc15 Mon Sep 17 00:00:00 2001 From: daoge <3523206925@qq.com> Date: Tue, 15 Oct 2024 10:03:54 +0800 Subject: [PATCH 108/136] docs: fix a typo in README.md --- platforms/allay/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platforms/allay/README.md b/platforms/allay/README.md index 2ffbbce19..f9cc91584 100644 --- a/platforms/allay/README.md +++ b/platforms/allay/README.md @@ -5,6 +5,6 @@ Current mapping version: je 1.21 to be 1.21.30 - `mapping/biomes.json` obtain from GeyserMC/mappings. -- `mapping/items_.json` obtain from GeyserMC/mappings. +- `mapping/items.json` obtain from GeyserMC/mappings. - `mapping/blocks.json` generated by using GeyserMC/mappings-generator, and it's origin name is `generator_blocks.json`. -- `je_block_default_states.json` converted from https://zh.minecraft.wiki/w/Module:Block_state_values. \ No newline at end of file +- `je_block_default_states.json` converted from https://zh.minecraft.wiki/w/Module:Block_state_values. From e756953828fa49b36b3b2e3992cad70b3f359e59 Mon Sep 17 00:00:00 2001 From: Astrash Date: Fri, 18 Oct 2024 17:49:07 +1100 Subject: [PATCH 109/136] Use singleton impl for map based probability collections --- .../terra/config/loaders/ProbabilityCollectionLoader.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common/implementation/base/src/main/java/com/dfsek/terra/config/loaders/ProbabilityCollectionLoader.java b/common/implementation/base/src/main/java/com/dfsek/terra/config/loaders/ProbabilityCollectionLoader.java index 6a9e10bd0..13b44b6bc 100644 --- a/common/implementation/base/src/main/java/com/dfsek/terra/config/loaders/ProbabilityCollectionLoader.java +++ b/common/implementation/base/src/main/java/com/dfsek/terra/config/loaders/ProbabilityCollectionLoader.java @@ -43,6 +43,10 @@ public class ProbabilityCollectionLoader implements TypeLoader map = (Map) o; + if (map.size() == 1) { + Object onlyKey = map.keySet().iterator().next(); + return new ProbabilityCollection.Singleton<>(configLoader.loadType(generic, onlyKey, depthTracker)); + } for(Map.Entry entry : map.entrySet()) { collection.add(configLoader.loadType(generic, entry.getKey(), depthTracker.entry((String) entry.getKey())), configLoader.loadType(Integer.class, entry.getValue(), depthTracker.entry((String) entry.getKey()))); @@ -50,7 +54,7 @@ public class ProbabilityCollectionLoader implements TypeLoader> map = (List>) o; if(map.size() == 1) { - Map entry = map.get(0); + Map entry = map.getFirst(); if(entry.size() == 1) { for(Object value : entry.keySet()) { return new ProbabilityCollection.Singleton<>(configLoader.loadType(generic, value, depthTracker)); From c190485dbe9cd45d2a9294b7885c76ebf52734e3 Mon Sep 17 00:00:00 2001 From: Astrash Date: Fri, 18 Oct 2024 17:50:41 +1100 Subject: [PATCH 110/136] Use more appropriate names in probability collection loader --- .../loaders/ProbabilityCollectionLoader.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/common/implementation/base/src/main/java/com/dfsek/terra/config/loaders/ProbabilityCollectionLoader.java b/common/implementation/base/src/main/java/com/dfsek/terra/config/loaders/ProbabilityCollectionLoader.java index 13b44b6bc..0c0406bf3 100644 --- a/common/implementation/base/src/main/java/com/dfsek/terra/config/loaders/ProbabilityCollectionLoader.java +++ b/common/implementation/base/src/main/java/com/dfsek/terra/config/loaders/ProbabilityCollectionLoader.java @@ -52,18 +52,18 @@ public class ProbabilityCollectionLoader implements TypeLoader> map = (List>) o; - if(map.size() == 1) { - Map entry = map.getFirst(); - if(entry.size() == 1) { - for(Object value : entry.keySet()) { + List> list = (List>) o; + if(list.size() == 1) { + Map map = list.getFirst(); + if(map.size() == 1) { + for(Object value : map.keySet()) { return new ProbabilityCollection.Singleton<>(configLoader.loadType(generic, value, depthTracker)); } } } - for(int i = 0; i < map.size(); i++) { - Map l = map.get(i); - for(Entry entry : l.entrySet()) { + for(int i = 0; i < list.size(); i++) { + Map map = list.get(i); + for(Entry entry : map.entrySet()) { if(entry.getValue() == null) throw new LoadException("No probability defined for entry \"" + entry.getKey() + "\"", depthTracker); Object val = configLoader.loadType(generic, entry.getKey(), depthTracker.index(i).entry((String) entry.getKey())); From b75e9c152eb07aaa0150184fe54743adbd5dac0e Mon Sep 17 00:00:00 2001 From: Astrash Date: Fri, 18 Oct 2024 19:29:48 +1100 Subject: [PATCH 111/136] Refactor palette addon --- .../terra/addons/palette/PaletteFactory.java | 7 +-- .../terra/addons/palette/PaletteTemplate.java | 6 +- .../addons/palette/palette/PaletteImpl.java | 62 +++++-------------- 3 files changed, 21 insertions(+), 54 deletions(-) diff --git a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteFactory.java b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteFactory.java index 4349ae661..1deb75c93 100644 --- a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteFactory.java +++ b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteFactory.java @@ -8,7 +8,6 @@ package com.dfsek.terra.addons.palette; import com.dfsek.terra.addons.palette.palette.PaletteImpl; -import com.dfsek.terra.addons.palette.palette.PaletteLayerHolder; import com.dfsek.terra.api.Platform; import com.dfsek.terra.api.config.ConfigFactory; import com.dfsek.terra.api.world.chunk.generation.util.Palette; @@ -17,10 +16,6 @@ import com.dfsek.terra.api.world.chunk.generation.util.Palette; public class PaletteFactory implements ConfigFactory { @Override public Palette build(PaletteTemplate config, Platform platform) { - PaletteImpl palette = new PaletteImpl(config.getNoise()); - for(PaletteLayerHolder layer : config.getPalette()) { - palette.add(layer.getLayer(), layer.getSize(), layer.getSampler()); - } - return palette; + return new PaletteImpl(config.getPalette(), config.getDefaultSampler()); } } diff --git a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteTemplate.java b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteTemplate.java index eb5f219bc..d2c966320 100644 --- a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteTemplate.java +++ b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/PaletteTemplate.java @@ -23,7 +23,7 @@ import com.dfsek.terra.api.noise.NoiseSampler; public class PaletteTemplate implements AbstractableTemplate { @Value("sampler") @Default - private @Meta NoiseSampler noise = NoiseSampler.zero(); + private @Meta NoiseSampler defaultSampler = NoiseSampler.zero(); @Value("id") @Final @@ -40,7 +40,7 @@ public class PaletteTemplate implements AbstractableTemplate { return palette; } - public NoiseSampler getNoise() { - return noise; + public NoiseSampler getDefaultSampler() { + return defaultSampler; } } diff --git a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteImpl.java b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteImpl.java index 96186f3d4..1eeaff73d 100644 --- a/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteImpl.java +++ b/common/addons/config-palette/src/main/java/com/dfsek/terra/addons/palette/palette/PaletteImpl.java @@ -15,73 +15,45 @@ import com.dfsek.terra.api.noise.NoiseSampler; import com.dfsek.terra.api.util.collection.ProbabilityCollection; import com.dfsek.terra.api.world.chunk.generation.util.Palette; - /** * A class representation of a "slice" of the world. * Used to get a section of blocks, based on the depth at which they are found. */ public class PaletteImpl implements Palette { - private final List pallet = new ArrayList<>(); - private final NoiseSampler sampler; + private final PaletteLayer[] layers; - public PaletteImpl(NoiseSampler sampler) { - this.sampler = sampler; - } + public PaletteImpl(List layers, NoiseSampler defaultSampler) { + List layerArray = new ArrayList<>(); - public Palette add(ProbabilityCollection m, int layers, NoiseSampler sampler) { - for(int i = 0; i < layers; i++) { - pallet.add(new PaletteLayer(m, sampler)); + for (PaletteLayerHolder holder : layers) { + PaletteLayer layer; + ProbabilityCollection materials = holder.getLayer(); + NoiseSampler sampler = holder.getSampler() == null ? defaultSampler : holder.getSampler(); + layer = new PaletteLayer(materials, sampler); + for (int i = 0; i < holder.getSize(); i++) + layerArray.add(layer); } - return this; + + this.layers = layerArray.toArray(new PaletteLayer[0]); } @Override public BlockState get(int layer, double x, double y, double z, long seed) { - PaletteLayer paletteLayer; - if(layer > this.getSize()) paletteLayer = this.getLayers().get(this.getLayers().size() - 1); - else { - List pl = getLayers(); - if(layer >= pl.size()) paletteLayer = pl.get(pl.size() - 1); - else paletteLayer = pl.get(layer); - } - NoiseSampler paletteSampler = paletteLayer.getSampler(); - return paletteLayer.get(paletteSampler == null ? sampler : paletteSampler, x, y, z, seed); + int idx = layer < layers.length ? layer : layers.length - 1; + return layers[idx].get(x, y, z, seed); } - - public int getSize() { - return pallet.size(); - } - - public List getLayers() { - return pallet; - } - - /** - * Class representation of a layer of a BlockPalette. - */ - public static class PaletteLayer { + static class PaletteLayer { private final NoiseSampler sampler; private final ProbabilityCollection collection; - /** - * Constructs a PaletteLayerHolder with a ProbabilityCollection of materials and a number of layers. - * - * @param type The collection of materials to choose from. - * @param sampler Noise sampler to use - */ public PaletteLayer(ProbabilityCollection type, NoiseSampler sampler) { this.sampler = sampler; this.collection = type; } - public BlockState get(NoiseSampler random, double x, double y, double z, long seed) { - return this.collection.get(random, x, y, z, seed); + public BlockState get(double x, double y, double z, long seed) { + return this.collection.get(sampler, x, y, z, seed); } - - public NoiseSampler getSampler() { - return sampler; - } - } } From 62756d27843abbac7a87239513bc624ef51195b0 Mon Sep 17 00:00:00 2001 From: OakLoaf Date: Fri, 25 Oct 2024 19:36:18 +0100 Subject: [PATCH 112/136] Updated Bukkit to support 1.21.3 --- buildSrc/src/main/kotlin/Versions.kt | 4 ++-- .../terra/bukkit/nms/v1_21/AwfulBukkitHacks.java | 9 ++++----- .../terra/bukkit/nms/v1_21/NMSBiomeInjector.java | 2 +- .../terra/bukkit/nms/v1_21/NMSBiomeProvider.java | 4 ++-- .../nms/v1_21/NMSChunkGeneratorDelegate.java | 3 +-- .../terra/bukkit/nms/v1_21/NMSInjectListener.java | 5 +++-- .../terra/bukkit/nms/v1_21/NMSWorldProperties.java | 4 ++-- .../dfsek/terra/bukkit/nms/v1_21/Reflection.java | 14 ++++++++++++++ .../terra/bukkit/nms/v1_21/RegistryFetcher.java | 4 +++- 9 files changed, 32 insertions(+), 17 deletions(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index e507febd5..25021e9c1 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -56,8 +56,8 @@ object Versions { // } object Bukkit { - const val minecraft = "1.21.1" - const val paperBuild = "$minecraft-R0.1-20240917.151311-80" + const val minecraft = "1.21.3" + const val paperBuild = "$minecraft-R0.1-20241025.163321-1" const val paper = paperBuild const val paperLib = "1.0.8" const val reflectionRemapper = "0.1.1" diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/AwfulBukkitHacks.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/AwfulBukkitHacks.java index 42d683394..2523e534e 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/AwfulBukkitHacks.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/AwfulBukkitHacks.java @@ -19,7 +19,6 @@ import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; -import java.util.Objects; import com.dfsek.terra.bukkit.world.BukkitPlatformBiome; import com.dfsek.terra.registry.master.ConfigRegistry; @@ -43,7 +42,7 @@ public class AwfulBukkitHacks { NamespacedKey vanillaBukkitKey = platformBiome.getHandle().getKey(); ResourceLocation vanillaMinecraftKey = ResourceLocation.fromNamespaceAndPath(vanillaBukkitKey.getNamespace(), vanillaBukkitKey.getKey()); - Biome platform = NMSBiomeInjector.createBiome(biome, Objects.requireNonNull(biomeRegistry.get(vanillaMinecraftKey))); + Biome platform = NMSBiomeInjector.createBiome(biome, biomeRegistry.get(vanillaMinecraftKey).orElseThrow().value()); ResourceKey delegateKey = ResourceKey.create( Registries.BIOME, @@ -70,7 +69,7 @@ public class AwfulBukkitHacks { .getTags() // streamKeysAndEntries .collect(HashMap::new, (map, pair) -> - map.put(pair.getFirst(), new ArrayList<>(pair.getSecond().stream().toList())), + map.put(pair.key(), new ArrayList<>(Reflection.HOLDER_SET.invokeContents(pair).stream().toList())), HashMap::putAll); terraBiomeMap @@ -91,8 +90,8 @@ public class AwfulBukkitHacks { () -> LOGGER.error("No such biome: {}", tb))), () -> LOGGER.error("No vanilla biome: {}", vb))); - biomeRegistry.resetTags(); - biomeRegistry.bindTags(ImmutableMap.copyOf(collect)); + ((MappedRegistry) biomeRegistry).bindAllTagsToEmpty(); + ImmutableMap.copyOf(collect).forEach(biomeRegistry::bindTag); } catch(SecurityException | IllegalArgumentException exception) { throw new RuntimeException(exception); diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java index e6d1f7869..8dea43a32 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java @@ -19,7 +19,7 @@ public class NMSBiomeInjector { public static Optional> getEntry(Registry registry, ResourceLocation identifier) { return registry.getOptional(identifier) .flatMap(registry::getResourceKey) - .flatMap(registry::getHolder); + .flatMap(registry::get); } public static Biome createBiome(com.dfsek.terra.api.world.biome.Biome biome, Biome vanilla) diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeProvider.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeProvider.java index 8abe26a51..ca2b0e8da 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeProvider.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeProvider.java @@ -29,7 +29,7 @@ public class NMSBiomeProvider extends BiomeSource { protected Stream> collectPossibleBiomes() { return delegate.stream() .map(biome -> RegistryFetcher.biomeRegistry() - .getHolderOrThrow(((BukkitPlatformBiome) biome.getPlatformBiome()).getContext() + .getOrThrow(((BukkitPlatformBiome) biome.getPlatformBiome()).getContext() .get(NMSBiomeInfo.class) .biomeKey())); } @@ -45,7 +45,7 @@ public class NMSBiomeProvider extends BiomeSource { @Override public @NotNull Holder getNoiseBiome(int x, int y, int z, @NotNull Sampler sampler) { - return biomeRegistry.getHolderOrThrow(((BukkitPlatformBiome) delegate.getBiome(x << 2, y << 2, z << 2, seed) + return biomeRegistry.getOrThrow(((BukkitPlatformBiome) delegate.getBiome(x << 2, y << 2, z << 2, seed) .getPlatformBiome()).getContext() .get(NMSBiomeInfo.class) .biomeKey()); diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSChunkGeneratorDelegate.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSChunkGeneratorDelegate.java index 16097df27..fe4fa6a59 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSChunkGeneratorDelegate.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSChunkGeneratorDelegate.java @@ -15,7 +15,6 @@ import net.minecraft.world.level.chunk.ChunkAccess; import net.minecraft.world.level.chunk.ChunkGenerator; import net.minecraft.world.level.levelgen.Beardifier; import net.minecraft.world.level.levelgen.DensityFunction.SinglePointContext; -import net.minecraft.world.level.levelgen.GenerationStep.Carving; import net.minecraft.world.level.levelgen.Heightmap.Types; import net.minecraft.world.level.levelgen.RandomState; import net.minecraft.world.level.levelgen.blending.Blender; @@ -59,7 +58,7 @@ public class NMSChunkGeneratorDelegate extends ChunkGenerator { @Override public void applyCarvers(@NotNull WorldGenRegion chunkRegion, long seed, @NotNull RandomState noiseConfig, @NotNull BiomeManager world, - @NotNull StructureManager structureAccessor, @NotNull ChunkAccess chunk, @NotNull Carving carverStep) { + @NotNull StructureManager structureAccessor, @NotNull ChunkAccess chunk) { // no-op } diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSInjectListener.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSInjectListener.java index a25638594..9d73a9e98 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSInjectListener.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSInjectListener.java @@ -41,13 +41,14 @@ public class NMSInjectListener implements Listener { ChunkGenerator vanilla = serverWorld.getChunkSource().getGenerator(); NMSBiomeProvider provider = new NMSBiomeProvider(pack.getBiomeProvider(), craftWorld.getSeed()); ChunkMap chunkMap = serverWorld.getChunkSource().chunkMap; - WorldGenContext worldGenContext = chunkMap.worldGenContext; + WorldGenContext worldGenContext = Reflection.CHUNKMAP.getWorldGenContext(chunkMap); Reflection.CHUNKMAP.setWorldGenContext(chunkMap, new WorldGenContext( worldGenContext.level(), new NMSChunkGeneratorDelegate(vanilla, pack, provider, craftWorld.getSeed()), worldGenContext.structureManager(), worldGenContext.lightEngine(), - worldGenContext.mainThreadMailBox() + worldGenContext.mainThreadExecutor(), + worldGenContext.unsavedListener() )); LOGGER.info("Successfully injected into world."); diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSWorldProperties.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSWorldProperties.java index 7860cf530..f0651cc54 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSWorldProperties.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSWorldProperties.java @@ -26,11 +26,11 @@ public class NMSWorldProperties implements WorldProperties { @Override public int getMaxHeight() { - return height.getMaxBuildHeight(); + return height.getMaxY(); } @Override public int getMinHeight() { - return height.getMinBuildHeight(); + return height.getMinY(); } } diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/Reflection.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/Reflection.java index a6f4ea9ba..13078e94d 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/Reflection.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/Reflection.java @@ -2,6 +2,7 @@ package com.dfsek.terra.bukkit.nms.v1_21; import net.minecraft.core.Holder; import net.minecraft.core.Holder.Reference; +import net.minecraft.core.HolderSet; import net.minecraft.core.MappedRegistry; import net.minecraft.server.level.ChunkMap; import net.minecraft.world.level.LevelAccessor; @@ -14,6 +15,8 @@ import xyz.jpenilla.reflectionremapper.proxy.annotation.FieldSetter; import xyz.jpenilla.reflectionremapper.proxy.annotation.MethodName; import xyz.jpenilla.reflectionremapper.proxy.annotation.Proxies; +import java.util.List; + public class Reflection { public static final MappedRegistryProxy MAPPED_REGISTRY; @@ -22,6 +25,7 @@ public class Reflection { public static final ReferenceProxy REFERENCE; public static final ChunkMapProxy CHUNKMAP; + public static final HolderSetProxy HOLDER_SET; static { ReflectionRemapper reflectionRemapper = ReflectionRemapper.forReobfMappingsInPaperJar(); @@ -32,6 +36,7 @@ public class Reflection { STRUCTURE_MANAGER = reflectionProxyFactory.reflectionProxy(StructureManagerProxy.class); REFERENCE = reflectionProxyFactory.reflectionProxy(ReferenceProxy.class); CHUNKMAP = reflectionProxyFactory.reflectionProxy(ChunkMapProxy.class); + HOLDER_SET = reflectionProxyFactory.reflectionProxy(HolderSetProxy.class); } @@ -57,7 +62,16 @@ public class Reflection { @Proxies(ChunkMap.class) public interface ChunkMapProxy { + @FieldGetter("worldGenContext") + WorldGenContext getWorldGenContext(ChunkMap instance); + @FieldSetter("worldGenContext") void setWorldGenContext(ChunkMap instance, WorldGenContext worldGenContext); } + + @Proxies(HolderSet.class) + public interface HolderSetProxy { + @MethodName("contents") + List> invokeContents(HolderSet instance); + } } diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/RegistryFetcher.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/RegistryFetcher.java index 0377eea0f..eecc28047 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/RegistryFetcher.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/RegistryFetcher.java @@ -15,7 +15,9 @@ public class RegistryFetcher { DedicatedServer dedicatedserver = craftserver.getServer(); return dedicatedserver .registryAccess() - .registryOrThrow(key); + .get(key) + .orElseThrow() + .value(); } public static Registry biomeRegistry() { From a70738eda5e0686733cf9b790452717c6280d07c Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Fri, 25 Oct 2024 13:58:33 -0600 Subject: [PATCH 113/136] Version updates --- buildSrc/src/main/kotlin/Versions.kt | 17 ++++++++--------- .../fabric/src/main/resources/fabric.mod.json | 2 +- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 25021e9c1..3abbd6368 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -15,21 +15,20 @@ object Versions { const val slf4j = "2.0.16" object Internal { - const val shadow = "8.3.1" + const val shadow = "8.3.3" const val apacheText = "1.12.0" - const val apacheIO = "2.16.1" - const val guava = "33.3.0-jre" - const val asm = "9.7" + const val apacheIO = "2.17.0" + const val guava = "33.3.1-jre" + const val asm = "9.7.1" const val snakeYml = "2.3" - const val jetBrainsAnnotations = "24.1.0" - const val junit = "5.11.0" + const val jetBrainsAnnotations = "26.0.1" + const val junit = "5.11.3" const val nbt = "6.1" } } object Fabric { -// const val fabricAPI = "0.104.0+${Mod.minecraft}" - const val fabricAPI = "0.105.4+1.21.2" + const val fabricAPI = "0.106.1+${Mod.minecraft}" const val cloud = "2.0.0-beta.9" } // @@ -41,7 +40,7 @@ object Versions { object Mod { const val mixin = "0.15.3+mixin.0.8.7" - const val minecraft = "1.21.2-pre3" + const val minecraft = "1.21.3-pre3" const val yarn = "$minecraft+build.2" const val fabricLoader = "0.16.7" diff --git a/platforms/fabric/src/main/resources/fabric.mod.json b/platforms/fabric/src/main/resources/fabric.mod.json index 3eb944413..4a70bb873 100644 --- a/platforms/fabric/src/main/resources/fabric.mod.json +++ b/platforms/fabric/src/main/resources/fabric.mod.json @@ -34,7 +34,7 @@ "depends": { "fabricloader": ">=0.16.7", "java": ">=21", - "minecraft": ">=1.21.2-beta.2", + "minecraft": ">=1.21.3", "fabric": "*" } } \ No newline at end of file From 640645b96b6f816e7cc30bb81cd49700276b2294 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Fri, 25 Oct 2024 14:03:27 -0600 Subject: [PATCH 114/136] fix version --- buildSrc/src/main/kotlin/Versions.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 3abbd6368..a876d93e4 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -40,7 +40,7 @@ object Versions { object Mod { const val mixin = "0.15.3+mixin.0.8.7" - const val minecraft = "1.21.3-pre3" + const val minecraft = "1.21.3" const val yarn = "$minecraft+build.2" const val fabricLoader = "0.16.7" From 144c932703ae250e949e58b5058c484df43ead97 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Fri, 25 Oct 2024 16:09:42 -0600 Subject: [PATCH 115/136] mixin tweak --- .../mod/mixin/implementations/terra/entity/EntityMixin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/entity/EntityMixin.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/entity/EntityMixin.java index 0b2f47017..e6f62a6bf 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/entity/EntityMixin.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/implementations/terra/entity/EntityMixin.java @@ -33,7 +33,7 @@ import com.dfsek.terra.mod.util.MinecraftAdapter; @Implements(@Interface(iface = com.dfsek.terra.api.entity.Entity.class, prefix = "terra$")) public abstract class EntityMixin { @Shadow - public net.minecraft.world.World world; + private net.minecraft.world.World world; @Shadow private BlockPos blockPos; From 8de4f1198a584201351159c869fad01452ca38ab Mon Sep 17 00:00:00 2001 From: OakLoaf Date: Sat, 26 Oct 2024 10:02:32 +0100 Subject: [PATCH 116/136] Started adding more biome settings to bukkit --- .../com/dfsek/terra/bukkit/BukkitAddon.java | 15 +- .../bukkit/config/VanillaBiomeProperties.java | 58 ------- .../dfsek/terra/bukkit/nms/Initializer.java | 4 +- .../terra/bukkit/nms/v1_21/NMSAddon.java | 31 ++++ .../bukkit/nms/v1_21/NMSBiomeInjector.java | 70 +++++--- .../bukkit/nms/v1_21/RegistryFetcher.java | 5 + .../v1_21/config/VanillaBiomeProperties.java | 164 ++++++++++++++++++ 7 files changed, 250 insertions(+), 97 deletions(-) delete mode 100644 platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/config/VanillaBiomeProperties.java create mode 100644 platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSAddon.java create mode 100644 platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VanillaBiomeProperties.java diff --git a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/BukkitAddon.java b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/BukkitAddon.java index c8a59100d..1fba7bda8 100644 --- a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/BukkitAddon.java +++ b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/BukkitAddon.java @@ -4,18 +4,15 @@ import ca.solostudios.strata.Versions; import ca.solostudios.strata.version.Version; import com.dfsek.terra.api.addon.BaseAddon; -import com.dfsek.terra.api.event.events.config.ConfigurationLoadEvent; import com.dfsek.terra.api.event.events.config.pack.ConfigPackPreLoadEvent; import com.dfsek.terra.api.event.functional.FunctionalEventHandler; -import com.dfsek.terra.api.world.biome.Biome; import com.dfsek.terra.bukkit.config.PreLoadCompatibilityOptions; -import com.dfsek.terra.bukkit.config.VanillaBiomeProperties; public class BukkitAddon implements BaseAddon { private static final Version VERSION = Versions.getVersion(1, 0, 0); - private final PlatformImpl terraBukkitPlugin; + protected final PlatformImpl terraBukkitPlugin; public BukkitAddon(PlatformImpl terraBukkitPlugin) { this.terraBukkitPlugin = terraBukkitPlugin; @@ -28,16 +25,6 @@ public class BukkitAddon implements BaseAddon { .register(this, ConfigPackPreLoadEvent.class) .then(event -> event.getPack().getContext().put(event.loadTemplate(new PreLoadCompatibilityOptions()))) .global(); - - terraBukkitPlugin.getEventManager() - .getHandler(FunctionalEventHandler.class) - .register(this, ConfigurationLoadEvent.class) - .then(event -> { - if(event.is(Biome.class)) { - event.getLoadedObject(Biome.class).getContext().put(event.load(new VanillaBiomeProperties())); - } - }) - .global(); } @Override diff --git a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/config/VanillaBiomeProperties.java b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/config/VanillaBiomeProperties.java deleted file mode 100644 index 628f329d5..000000000 --- a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/config/VanillaBiomeProperties.java +++ /dev/null @@ -1,58 +0,0 @@ -package com.dfsek.terra.bukkit.config; - -import com.dfsek.tectonic.api.config.template.ConfigTemplate; -import com.dfsek.tectonic.api.config.template.annotations.Default; -import com.dfsek.tectonic.api.config.template.annotations.Value; - -import com.dfsek.terra.api.properties.Properties; - - -public class VanillaBiomeProperties implements ConfigTemplate, Properties { - @Value("colors.grass") - @Default - private Integer grassColor = null; - - @Value("colors.fog") - @Default - private Integer fogColor = null; - - @Value("colors.water") - @Default - private Integer waterColor = null; - - @Value("colors.water-fog") - @Default - private Integer waterFogColor = null; - - @Value("colors.foliage") - @Default - private Integer foliageColor = null; - - @Value("colors.sky") - @Default - private Integer skyColor = null; - - public Integer getFogColor() { - return fogColor; - } - - public Integer getFoliageColor() { - return foliageColor; - } - - public Integer getGrassColor() { - return grassColor; - } - - public Integer getWaterColor() { - return waterColor; - } - - public Integer getWaterFogColor() { - return waterFogColor; - } - - public Integer getSkyColor() { - return skyColor; - } -} diff --git a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/nms/Initializer.java b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/nms/Initializer.java index fc28e4bc3..b39b67d6b 100644 --- a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/nms/Initializer.java +++ b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/nms/Initializer.java @@ -15,8 +15,8 @@ public interface Initializer { Logger logger = LoggerFactory.getLogger(Initializer.class); try { String packageVersion = NMS; - if(NMS.equals("v1_21_1")) { - packageVersion = "v1_21"; + if(NMS.equals("v1_21_3")) { + packageVersion = "v1_21"; // TODO: Refactor nms package to v1_21_3 } Class initializerClass = Class.forName(TERRA_PACKAGE + "." + packageVersion + ".NMSInitializer"); diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSAddon.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSAddon.java new file mode 100644 index 000000000..2c7944d12 --- /dev/null +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSAddon.java @@ -0,0 +1,31 @@ +package com.dfsek.terra.bukkit.nms.v1_21; + +import com.dfsek.terra.api.event.events.config.ConfigurationLoadEvent; +import com.dfsek.terra.api.event.functional.FunctionalEventHandler; +import com.dfsek.terra.api.world.biome.Biome; +import com.dfsek.terra.bukkit.BukkitAddon; +import com.dfsek.terra.bukkit.PlatformImpl; +import com.dfsek.terra.bukkit.nms.v1_21.config.VanillaBiomeProperties; + + +public class NMSAddon extends BukkitAddon { + + public NMSAddon(PlatformImpl terraBukkitPlugin) { + super(terraBukkitPlugin); + } + + @Override + public void initialize() { + super.initialize(); + + terraBukkitPlugin.getEventManager() + .getHandler(FunctionalEventHandler.class) + .register(this, ConfigurationLoadEvent.class) + .then(event -> { + if(event.is(Biome.class)) { + event.getLoadedObject(Biome.class).getContext().put(event.load(new VanillaBiomeProperties())); + } + }) + .global(); + } +} diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java index 8dea43a32..fbe937127 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java @@ -11,7 +11,7 @@ import java.util.Objects; import java.util.Optional; import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.bukkit.config.VanillaBiomeProperties; +import com.dfsek.terra.bukkit.nms.v1_21.config.VanillaBiomeProperties; public class NMSBiomeInjector { @@ -26,17 +26,8 @@ public class NMSBiomeInjector { throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException { Biome.BiomeBuilder builder = new Biome.BiomeBuilder(); - builder - .downfall(vanilla.climateSettings.downfall()) - .temperature(vanilla.getBaseTemperature()) - .mobSpawnSettings(vanilla.getMobSettings()) - .generationSettings(vanilla.getGenerationSettings()); - - BiomeSpecialEffects.Builder effects = new BiomeSpecialEffects.Builder(); - effects.grassColorModifier(vanilla.getSpecialEffects().getGrassColorModifier()); - VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); effects.fogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFogColor(), vanilla.getFogColor())) @@ -45,13 +36,11 @@ public class NMSBiomeInjector { .waterFogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterFogColor(), vanilla.getWaterFogColor())) - .skyColor(Objects.requireNonNullElse(vanillaBiomeProperties.getSkyColor(), vanilla.getSkyColor())); + .skyColor(Objects.requireNonNullElse(vanillaBiomeProperties.getSkyColor(), vanilla.getSkyColor())) - if(vanillaBiomeProperties.getFoliageColor() == null) { - vanilla.getSpecialEffects().getFoliageColorOverride().ifPresent(effects::foliageColorOverride); - } else { - effects.foliageColorOverride(vanillaBiomeProperties.getFoliageColor()); - } + .grassColorModifier(Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColorModifier(), vanilla.getSpecialEffects().getGrassColorModifier())) + + .foliageColorOverride(Objects.requireNonNullElse(vanillaBiomeProperties.getFoliageColor(), vanilla.getFoliageColor())); if(vanillaBiomeProperties.getGrassColor() == null) { vanilla.getSpecialEffects().getGrassColorOverride().ifPresent(effects::grassColorOverride); @@ -60,15 +49,50 @@ public class NMSBiomeInjector { effects.grassColorOverride(vanillaBiomeProperties.getGrassColor()); } - vanilla.getAmbientLoop().ifPresent(effects::ambientLoopSound); - vanilla.getAmbientAdditions().ifPresent(effects::ambientAdditionsSound); - vanilla.getAmbientMood().ifPresent(effects::ambientMoodSound); - vanilla.getBackgroundMusic().ifPresent(effects::backgroundMusic); - vanilla.getAmbientParticle().ifPresent(effects::ambientParticle); + if(vanillaBiomeProperties.getParticleConfig() == null) { + vanilla.getSpecialEffects().getAmbientParticleSettings().ifPresent(effects::ambientParticle); + } else { + effects.ambientParticle(vanillaBiomeProperties.getParticleConfig()); + } - builder.specialEffects(effects.build()); + if(vanillaBiomeProperties.getLoopSound() == null) { + vanilla.getSpecialEffects().getAmbientLoopSoundEvent().ifPresent(effects::ambientLoopSound); + } else { + RegistryFetcher.soundEventRegistry().get(vanillaBiomeProperties.getLoopSound().location()).ifPresent(effects::ambientLoopSound); + } - return builder.build(); + if(vanillaBiomeProperties.getMoodSound() == null) { + vanilla.getSpecialEffects().getAmbientMoodSettings().ifPresent(effects::ambientMoodSound); + } else { + effects.ambientMoodSound(vanillaBiomeProperties.getMoodSound()); + } + + if(vanillaBiomeProperties.getAdditionsSound() == null) { + vanilla.getSpecialEffects().getAmbientAdditionsSettings().ifPresent(effects::ambientAdditionsSound); + } else { + effects.ambientAdditionsSound(vanillaBiomeProperties.getAdditionsSound()); + } + + if(vanillaBiomeProperties.getMusic() == null) { + vanilla.getSpecialEffects().getBackgroundMusic().ifPresent(effects::backgroundMusic); + } else { + effects.backgroundMusic(vanillaBiomeProperties.getMusic()); + } + + builder.hasPrecipitation(Objects.requireNonNullElse(vanillaBiomeProperties.getPrecipitation(), vanilla.hasPrecipitation())); + + builder.temperature(Objects.requireNonNullElse(vanillaBiomeProperties.getTemperature(), vanilla.getBaseTemperature())); + + builder.downfall(Objects.requireNonNullElse(vanillaBiomeProperties.getDownfall(), vanilla.climateSettings.downfall())); + + builder.temperatureAdjustment(Objects.requireNonNullElse(vanillaBiomeProperties.getTemperatureModifier(), vanilla.climateSettings.temperatureModifier())); + + builder.mobSpawnSettings(Objects.requireNonNullElse(vanillaBiomeProperties.getSpawnSettings(), vanilla.getMobSettings())); + + return builder + .specialEffects(effects.build()) + .generationSettings(vanilla.getGenerationSettings()) + .build(); } public static String createBiomeID(ConfigPack pack, com.dfsek.terra.api.registry.key.RegistryKey biomeID) { diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/RegistryFetcher.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/RegistryFetcher.java index eecc28047..249703ca8 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/RegistryFetcher.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/RegistryFetcher.java @@ -4,6 +4,7 @@ import net.minecraft.core.Registry; import net.minecraft.core.registries.Registries; import net.minecraft.resources.ResourceKey; import net.minecraft.server.dedicated.DedicatedServer; +import net.minecraft.sounds.SoundEvent; import net.minecraft.world.level.biome.Biome; import org.bukkit.Bukkit; import org.bukkit.craftbukkit.CraftServer; @@ -23,4 +24,8 @@ public class RegistryFetcher { public static Registry biomeRegistry() { return getRegistry(Registries.BIOME); } + + public static Registry soundEventRegistry() { + return getRegistry(Registries.SOUND_EVENT); + } } diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VanillaBiomeProperties.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VanillaBiomeProperties.java new file mode 100644 index 000000000..2fbf119a8 --- /dev/null +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VanillaBiomeProperties.java @@ -0,0 +1,164 @@ +package com.dfsek.terra.bukkit.nms.v1_21.config; + +import com.dfsek.tectonic.api.config.template.ConfigTemplate; +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; + +import com.dfsek.terra.api.properties.Properties; + +import net.minecraft.sounds.Music; +import net.minecraft.sounds.SoundEvent; +import net.minecraft.world.entity.npc.VillagerType; +import net.minecraft.world.level.biome.AmbientAdditionsSettings; +import net.minecraft.world.level.biome.AmbientMoodSettings; +import net.minecraft.world.level.biome.AmbientParticleSettings; +import net.minecraft.world.level.biome.Biome.TemperatureModifier; +import net.minecraft.world.level.biome.BiomeSpecialEffects.GrassColorModifier; +import net.minecraft.world.level.biome.MobSpawnSettings; + + +public class VanillaBiomeProperties implements ConfigTemplate, Properties { + @Value("colors.grass") + @Default + private Integer grassColor = null; + + @Value("colors.fog") + @Default + private Integer fogColor = null; + + @Value("colors.water") + @Default + private Integer waterColor = null; + + @Value("colors.water-fog") + @Default + private Integer waterFogColor = null; + + @Value("colors.foliage") + @Default + private Integer foliageColor = null; + + @Value("colors.sky") + @Default + private Integer skyColor = null; + + @Value("colors.modifier") + @Default + private GrassColorModifier grassColorModifier = null; + + @Value("particles") + @Default + private AmbientParticleSettings particleConfig = null; + + @Value("climate.precipitation") + @Default + private Boolean precipitation = true; + + @Value("climate.temperature") + @Default + private Float temperature = null; + + @Value("climate.temperature-modifier") + @Default + private TemperatureModifier temperatureModifier = null; + + @Value("climate.downfall") + @Default + private Float downfall = null; + + @Value("sound.loop-sound.sound") + @Default + private SoundEvent loopSound = null; + + @Value("sound.mood-sound") + @Default + private AmbientMoodSettings moodSound = null; + + @Value("sound.additions-sound") + @Default + private AmbientAdditionsSettings additionsSound = null; + + @Value("sound.music") + @Default + private Music music = null; + + @Value("spawning") + @Default + private MobSpawnSettings spawnSettings = null; + + @Value("villager-type") + @Default + private VillagerType villagerType = null; + + public Integer getFogColor() { + return fogColor; + } + + public Integer getFoliageColor() { + return foliageColor; + } + + public Integer getGrassColor() { + return grassColor; + } + + public Integer getWaterColor() { + return waterColor; + } + + public Integer getWaterFogColor() { + return waterFogColor; + } + + public Integer getSkyColor() { + return skyColor; + } + + public GrassColorModifier getGrassColorModifier() { + return grassColorModifier; + } + + public AmbientParticleSettings getParticleConfig() { + return particleConfig; + } + + public Boolean getPrecipitation() { + return precipitation; + } + + public Float getTemperature() { + return temperature; + } + + public TemperatureModifier getTemperatureModifier() { + return temperatureModifier; + } + + public Float getDownfall() { + return downfall; + } + + public SoundEvent getLoopSound() { + return loopSound; + } + + public AmbientMoodSettings getMoodSound() { + return moodSound; + } + + public AmbientAdditionsSettings getAdditionsSound() { + return additionsSound; + } + + public Music getMusic() { + return music; + } + + public MobSpawnSettings getSpawnSettings() { + return spawnSettings; + } + + public VillagerType getVillagerType() { + return villagerType; + } +} From 16c951838be6b76dd42979d4c5adecbe392b1e82 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Mon, 28 Oct 2024 17:39:25 +0800 Subject: [PATCH 117/136] feat: support world unloading --- buildSrc/src/main/kotlin/Versions.kt | 2 +- .../com/dfsek/terra/allay/TerraAllayPlugin.java | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 7ddbe4e32..e0c342bea 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -79,6 +79,6 @@ object Versions { } object Allay { - const val api = "1cb3bb69c6" + const val api = "0114e0b290" } } \ No newline at end of file diff --git a/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java b/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java index 330d6c377..b1bcc7eab 100644 --- a/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java +++ b/platforms/allay/src/main/java/com/dfsek/terra/allay/TerraAllayPlugin.java @@ -1,11 +1,15 @@ package com.dfsek.terra.allay; +import org.allaymc.api.eventbus.EventHandler; +import org.allaymc.api.eventbus.event.world.WorldUnloadEvent; import org.allaymc.api.plugin.Plugin; import org.allaymc.api.registry.Registries; +import org.allaymc.api.server.Server; import com.dfsek.terra.allay.generator.AllayGeneratorWrapper; import com.dfsek.terra.api.event.events.platform.PlatformInitializationEvent; + /** * @author daoge_cmd */ @@ -46,6 +50,11 @@ public class TerraAllayPlugin extends Plugin { pluginLogger.info("Terra started"); } + @Override + public void onEnable() { + Server.getInstance().getEventBus().registerListener(this); + } + @Override public boolean isReloadable() { return true; @@ -59,4 +68,9 @@ public class TerraAllayPlugin extends Plugin { pluginLogger.error("Terra failed to reload."); } } + + @EventHandler + private void onWorldUnload(WorldUnloadEvent event) { + AllayPlatform.GENERATOR_WRAPPERS.removeIf(wrapper -> wrapper.getAllayWorldGenerator().getDimension().getWorld() == event.getWorld()); + } } From afd2c81b1909151c8de16e6dd7b58a839ddc9c31 Mon Sep 17 00:00:00 2001 From: OakLoaf Date: Tue, 29 Oct 2024 18:31:37 +0000 Subject: [PATCH 118/136] Made grass colour use default if none is defined --- .../terra/bukkit/nms/v1_21/NMSBiomeInjector.java | 13 +------------ .../dfsek/terra/bukkit/nms/v1_21/Reflection.java | 10 ++++++++++ .../com/dfsek/terra/mod/util/MinecraftUtil.java | 6 +++--- 3 files changed, 14 insertions(+), 15 deletions(-) diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java index fbe937127..d525f591e 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java @@ -31,24 +31,13 @@ public class NMSBiomeInjector { VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); effects.fogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFogColor(), vanilla.getFogColor())) - .waterColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterColor(), vanilla.getWaterColor())) - .waterFogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterFogColor(), vanilla.getWaterFogColor())) - .skyColor(Objects.requireNonNullElse(vanillaBiomeProperties.getSkyColor(), vanilla.getSkyColor())) - .grassColorModifier(Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColorModifier(), vanilla.getSpecialEffects().getGrassColorModifier())) - + .grassColorOverride(Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColor(), vanilla.getSpecialEffects().getGrassColorOverride().orElseGet(() -> Reflection.BIOME.invokeGrassColorFromTexture(vanilla)))) .foliageColorOverride(Objects.requireNonNullElse(vanillaBiomeProperties.getFoliageColor(), vanilla.getFoliageColor())); - if(vanillaBiomeProperties.getGrassColor() == null) { - vanilla.getSpecialEffects().getGrassColorOverride().ifPresent(effects::grassColorOverride); - } else { - // grass - effects.grassColorOverride(vanillaBiomeProperties.getGrassColor()); - } - if(vanillaBiomeProperties.getParticleConfig() == null) { vanilla.getSpecialEffects().getAmbientParticleSettings().ifPresent(effects::ambientParticle); } else { diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/Reflection.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/Reflection.java index 13078e94d..8d29b5158 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/Reflection.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/Reflection.java @@ -7,6 +7,7 @@ import net.minecraft.core.MappedRegistry; import net.minecraft.server.level.ChunkMap; import net.minecraft.world.level.LevelAccessor; import net.minecraft.world.level.StructureManager; +import net.minecraft.world.level.biome.Biome; import net.minecraft.world.level.chunk.status.WorldGenContext; import xyz.jpenilla.reflectionremapper.ReflectionRemapper; import xyz.jpenilla.reflectionremapper.proxy.ReflectionProxyFactory; @@ -24,8 +25,10 @@ public class Reflection { public static final ReferenceProxy REFERENCE; + public static final ChunkMapProxy CHUNKMAP; public static final HolderSetProxy HOLDER_SET; + public static final BiomeProxy BIOME; static { ReflectionRemapper reflectionRemapper = ReflectionRemapper.forReobfMappingsInPaperJar(); @@ -37,6 +40,7 @@ public class Reflection { REFERENCE = reflectionProxyFactory.reflectionProxy(ReferenceProxy.class); CHUNKMAP = reflectionProxyFactory.reflectionProxy(ChunkMapProxy.class); HOLDER_SET = reflectionProxyFactory.reflectionProxy(HolderSetProxy.class); + BIOME = reflectionProxyFactory.reflectionProxy(BiomeProxy.class); } @@ -74,4 +78,10 @@ public class Reflection { @MethodName("contents") List> invokeContents(HolderSet instance); } + + @Proxies(Biome.class) + public interface BiomeProxy { + @MethodName("getGrassColorFromTexture") + int invokeGrassColorFromTexture(Biome instance); + } } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java index 7351eea9b..cf40eecd5 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/MinecraftUtil.java @@ -107,9 +107,9 @@ public final class MinecraftUtil { .waterFogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterFogColor(), vanilla.getWaterFogColor())) .fogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFogColor(), vanilla.getFogColor())) .skyColor(Objects.requireNonNullElse(vanillaBiomeProperties.getSkyColor(), vanilla.getSkyColor())) - .grassColorModifier( - Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColorModifier(), - vanilla.getEffects().getGrassColorModifier())); + .grassColorModifier(Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColorModifier(), vanilla.getEffects().getGrassColorModifier())) + .grassColor(Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColor(), vanilla.getEffects().getGrassColor().orElseGet(vanilla.getDefaultGrassColor()))) + .foliageColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFoliageColor(), vanilla.getFoliageColor())); if(vanillaBiomeProperties.getFoliageColor() == null) { vanilla.getEffects().getFoliageColor().ifPresent(effects::foliageColor); From 8df3a4dd029c3195923b5be4986e409a42ec0a73 Mon Sep 17 00:00:00 2001 From: OakLoaf Date: Tue, 29 Oct 2024 19:38:59 +0000 Subject: [PATCH 119/136] Added NMSAddon override for BukkitAddon --- .../com/dfsek/terra/bukkit/PlatformImpl.java | 5 ++- .../dfsek/terra/bukkit/nms/Initializer.java | 45 +++++++++++++------ .../terra/bukkit/nms/v1_21/NMSAddon.java | 4 +- .../bukkit/nms/v1_21/NMSInitializer.java | 7 +++ 4 files changed, 45 insertions(+), 16 deletions(-) diff --git a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/PlatformImpl.java b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/PlatformImpl.java index f26698b39..68ba921ad 100644 --- a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/PlatformImpl.java +++ b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/PlatformImpl.java @@ -20,6 +20,9 @@ package com.dfsek.terra.bukkit; import com.dfsek.tectonic.api.TypeRegistry; import com.dfsek.tectonic.api.depth.DepthTracker; import com.dfsek.tectonic.api.exception.LoadException; + +import com.dfsek.terra.bukkit.nms.Initializer; + import org.bukkit.Bukkit; import org.bukkit.entity.EntityType; import org.jetbrains.annotations.NotNull; @@ -96,7 +99,7 @@ public class PlatformImpl extends AbstractPlatform { @Override protected Iterable platformAddon() { - return List.of(new BukkitAddon(this)); + return List.of(Initializer.nmsAddon(this)); } @Override diff --git a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/nms/Initializer.java b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/nms/Initializer.java index b39b67d6b..c29fa1e1b 100644 --- a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/nms/Initializer.java +++ b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/nms/Initializer.java @@ -1,5 +1,7 @@ package com.dfsek.terra.bukkit.nms; +import com.dfsek.terra.bukkit.BukkitAddon; + import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -13,20 +15,11 @@ public interface Initializer { static boolean init(PlatformImpl platform) { Logger logger = LoggerFactory.getLogger(Initializer.class); - try { - String packageVersion = NMS; - if(NMS.equals("v1_21_3")) { - packageVersion = "v1_21"; // TODO: Refactor nms package to v1_21_3 - } - Class initializerClass = Class.forName(TERRA_PACKAGE + "." + packageVersion + ".NMSInitializer"); - try { - Initializer initializer = (Initializer) initializerClass.getConstructor().newInstance(); - initializer.initialize(platform); - } catch(ReflectiveOperationException e) { - throw new RuntimeException("Error initializing NMS bindings. Report this to Terra.", e); - } - } catch(ClassNotFoundException e) { + Initializer initializer = constructInitializer(); + if(initializer != null) { + initializer.initialize(platform); + } else { logger.error("NMS bindings for version {} do not exist. Support for this version is limited.", NMS); logger.error("This is usually due to running Terra on an unsupported Minecraft version."); String bypassKey = "IKnowThereAreNoNMSBindingsFor" + NMS + "ButIWillProceedAnyway"; @@ -49,8 +42,34 @@ public interface Initializer { logger.error("Since you enabled the \"{}\" flag, we won't disable Terra. But be warned.", bypassKey); } } + return true; } + static BukkitAddon nmsAddon(PlatformImpl platform) { + Initializer initializer = constructInitializer(); + return initializer != null ? initializer.getNMSAddon(platform) : new BukkitAddon(platform); + } + + private static Initializer constructInitializer() { + try { + String packageVersion = NMS; + if(NMS.equals("v1_21_3")) { + packageVersion = "v1_21"; // TODO: Refactor nms package to v1_21_3 + } + + Class initializerClass = Class.forName(TERRA_PACKAGE + "." + packageVersion + ".NMSInitializer"); + try { + return (Initializer) initializerClass.getConstructor().newInstance(); + } catch(ReflectiveOperationException e) { + throw new RuntimeException("Error initializing NMS bindings. Report this to Terra.", e); + } + } catch(ClassNotFoundException e) { + return null; + } + } + void initialize(PlatformImpl plugin); + + BukkitAddon getNMSAddon(PlatformImpl plugin); } diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSAddon.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSAddon.java index 2c7944d12..55be58c3b 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSAddon.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSAddon.java @@ -10,8 +10,8 @@ import com.dfsek.terra.bukkit.nms.v1_21.config.VanillaBiomeProperties; public class NMSAddon extends BukkitAddon { - public NMSAddon(PlatformImpl terraBukkitPlugin) { - super(terraBukkitPlugin); + public NMSAddon(PlatformImpl platform) { + super(platform); } @Override diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSInitializer.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSInitializer.java index 18f1a058f..9e9ed7499 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSInitializer.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSInitializer.java @@ -1,5 +1,7 @@ package com.dfsek.terra.bukkit.nms.v1_21; +import com.dfsek.terra.bukkit.BukkitAddon; + import org.bukkit.Bukkit; import com.dfsek.terra.bukkit.PlatformImpl; @@ -12,4 +14,9 @@ public class NMSInitializer implements Initializer { AwfulBukkitHacks.registerBiomes(platform.getRawConfigRegistry()); Bukkit.getPluginManager().registerEvents(new NMSInjectListener(), platform.getPlugin()); } + + @Override + public BukkitAddon getNMSAddon(PlatformImpl plugin) { + return new NMSAddon(plugin); + } } From 9d91440997133d06dd2ad9647456a103a4d9bc43 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Tue, 29 Oct 2024 14:14:25 -0600 Subject: [PATCH 120/136] fixup --- .../terra/mod/mixin/invoke/BiomeInvoker.java | 12 ++++++ .../com/dfsek/terra/mod/util/BiomeUtil.java | 37 +++++++------------ 2 files changed, 26 insertions(+), 23 deletions(-) create mode 100644 platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/invoke/BiomeInvoker.java diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/invoke/BiomeInvoker.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/invoke/BiomeInvoker.java new file mode 100644 index 000000000..b3aa4792b --- /dev/null +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/mixin/invoke/BiomeInvoker.java @@ -0,0 +1,12 @@ +package com.dfsek.terra.mod.mixin.invoke; + +import net.minecraft.world.biome.Biome; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.gen.Invoker; + + +@Mixin(Biome.class) +public interface BiomeInvoker { + @Invoker("getDefaultGrassColor") + int invokeGetDefaultGrassColor(); +} diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/BiomeUtil.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/BiomeUtil.java index 0352e3089..44e6ddaf4 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/BiomeUtil.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/BiomeUtil.java @@ -1,15 +1,10 @@ package com.dfsek.terra.mod.util; -import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.mod.config.VanillaBiomeProperties; -import com.dfsek.terra.mod.mixin.access.BiomeAccessor; - import net.minecraft.registry.Registries; import net.minecraft.util.Identifier; import net.minecraft.world.biome.Biome; import net.minecraft.world.biome.Biome.Builder; import net.minecraft.world.biome.BiomeEffects; -import net.minecraft.world.biome.GenerationSettings; import java.util.HashMap; import java.util.List; @@ -17,37 +12,33 @@ import java.util.Locale; import java.util.Map; import java.util.Objects; +import com.dfsek.terra.api.config.ConfigPack; +import com.dfsek.terra.mod.config.VanillaBiomeProperties; +import com.dfsek.terra.mod.mixin.access.BiomeAccessor; +import com.dfsek.terra.mod.mixin.invoke.BiomeInvoker; + public class BiomeUtil { public static final Map> TERRA_BIOME_MAP = new HashMap<>(); - public static Biome createBiome(com.dfsek.terra.api.world.biome.Biome biome, Biome vanilla, - VanillaBiomeProperties vanillaBiomeProperties) { - GenerationSettings.Builder generationSettings = new GenerationSettings.Builder(); + + public static Biome createBiome(com.dfsek.terra.api.world.biome.Biome biome, Biome vanilla) { BiomeEffects.Builder effects = new BiomeEffects.Builder(); net.minecraft.world.biome.Biome.Builder builder = new Builder(); + VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); + effects.waterColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterColor(), vanilla.getWaterColor())) .waterFogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterFogColor(), vanilla.getWaterFogColor())) .fogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFogColor(), vanilla.getFogColor())) .skyColor(Objects.requireNonNullElse(vanillaBiomeProperties.getSkyColor(), vanilla.getSkyColor())) .grassColorModifier( - Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColorModifier(), - vanilla.getEffects().getGrassColorModifier())); - - if(vanillaBiomeProperties.getFoliageColor() == null) { - vanilla.getEffects().getFoliageColor().ifPresent(effects::foliageColor); - } else { - effects.foliageColor(vanillaBiomeProperties.getFoliageColor()); - } - - if(vanillaBiomeProperties.getGrassColor() == null) { - vanilla.getEffects().getGrassColor().ifPresent(effects::grassColor); - } else { - effects.grassColor(vanillaBiomeProperties.getGrassColor()); - } + Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColorModifier(), vanilla.getEffects().getGrassColorModifier())) + .grassColor(Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColor(), + vanilla.getEffects().getGrassColor().orElseGet(() -> ((BiomeInvoker) ((Object) vanilla)).invokeGetDefaultGrassColor()))) + .foliageColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFoliageColor(), vanilla.getFoliageColor())); if(vanillaBiomeProperties.getParticleConfig() == null) { vanilla.getEffects().getParticleConfig().ifPresent(effects::particleConfig); @@ -93,7 +84,7 @@ public class BiomeUtil { return builder .effects(effects.build()) - .generationSettings(generationSettings.build()) + .generationSettings(vanilla.getGenerationSettings()) .build(); } From 3ca90808f0a447f6716060c192692049aee56044 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Tue, 29 Oct 2024 14:23:45 -0600 Subject: [PATCH 121/136] Fix up --- .../com/dfsek/terra/bukkit/nms/v1_21/AwfulBukkitHacks.java | 7 ++++++- .../com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java | 4 +--- .../nms/v1_21/config/BiomeParticleConfigTemplate.java | 2 +- .../terra/bukkit/nms/v1_21/config/EntityTypeTemplate.java | 2 +- .../bukkit/nms/v1_21/config/VillagerTypeTemplate.java | 2 +- .../src/main/java/com/dfsek/terra/mod/util/BiomeUtil.java | 5 +---- .../java/com/dfsek/terra/lifecycle/LifecyclePlatform.java | 2 +- .../com/dfsek/terra/lifecycle/util/LifecycleBiomeUtil.java | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/AwfulBukkitHacks.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/AwfulBukkitHacks.java index 2523e534e..adb0e21ee 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/AwfulBukkitHacks.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/AwfulBukkitHacks.java @@ -1,5 +1,7 @@ package com.dfsek.terra.bukkit.nms.v1_21; +import com.dfsek.terra.bukkit.nms.v1_21.config.VanillaBiomeProperties; + import com.google.common.collect.ImmutableMap; import net.minecraft.core.Holder; import net.minecraft.core.Holder.Reference; @@ -42,7 +44,10 @@ public class AwfulBukkitHacks { NamespacedKey vanillaBukkitKey = platformBiome.getHandle().getKey(); ResourceLocation vanillaMinecraftKey = ResourceLocation.fromNamespaceAndPath(vanillaBukkitKey.getNamespace(), vanillaBukkitKey.getKey()); - Biome platform = NMSBiomeInjector.createBiome(biome, biomeRegistry.get(vanillaMinecraftKey).orElseThrow().value()); + + VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); + + Biome platform = NMSBiomeInjector.createBiome(biomeRegistry.get(vanillaMinecraftKey).orElseThrow().value(), vanillaBiomeProperties); ResourceKey delegateKey = ResourceKey.create( Registries.BIOME, diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java index d525f591e..a428cee14 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java @@ -22,14 +22,12 @@ public class NMSBiomeInjector { .flatMap(registry::get); } - public static Biome createBiome(com.dfsek.terra.api.world.biome.Biome biome, Biome vanilla) + public static Biome createBiome(Biome vanilla, VanillaBiomeProperties vanillaBiomeProperties) throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException { Biome.BiomeBuilder builder = new Biome.BiomeBuilder(); BiomeSpecialEffects.Builder effects = new BiomeSpecialEffects.Builder(); - VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); - effects.fogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFogColor(), vanilla.getFogColor())) .waterColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterColor(), vanilla.getWaterColor())) .waterFogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterFogColor(), vanilla.getWaterFogColor())) diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeParticleConfigTemplate.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeParticleConfigTemplate.java index f707e0565..1b5a93f8b 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeParticleConfigTemplate.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeParticleConfigTemplate.java @@ -28,7 +28,7 @@ public class BiomeParticleConfigTemplate implements ObjectTemplate> { @Override public EntityType get() { - return BuiltInRegistries.ENTITY_TYPE.get(id); + return BuiltInRegistries.ENTITY_TYPE.get(id).orElseThrow().value(); } } diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VillagerTypeTemplate.java b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VillagerTypeTemplate.java index a5dd41b14..aca928812 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VillagerTypeTemplate.java +++ b/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VillagerTypeTemplate.java @@ -18,6 +18,6 @@ public class VillagerTypeTemplate implements ObjectTemplate { @Override public VillagerType get() { - return BuiltInRegistries.VILLAGER_TYPE.get(id); + return BuiltInRegistries.VILLAGER_TYPE.get(id).orElseThrow().value(); } } diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/BiomeUtil.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/BiomeUtil.java index 44e6ddaf4..f40744278 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/BiomeUtil.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/util/BiomeUtil.java @@ -22,14 +22,11 @@ public class BiomeUtil { public static final Map> TERRA_BIOME_MAP = new HashMap<>(); - public static Biome createBiome(com.dfsek.terra.api.world.biome.Biome biome, Biome vanilla) { - + public static Biome createBiome(Biome vanilla, VanillaBiomeProperties vanillaBiomeProperties) { BiomeEffects.Builder effects = new BiomeEffects.Builder(); net.minecraft.world.biome.Biome.Builder builder = new Builder(); - VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); - effects.waterColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterColor(), vanilla.getWaterColor())) .waterFogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterFogColor(), vanilla.getWaterFogColor())) .fogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getFogColor(), vanilla.getFogColor())) diff --git a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java index 058ae364e..a7828ef11 100644 --- a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java +++ b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/LifecyclePlatform.java @@ -84,7 +84,7 @@ public abstract class LifecyclePlatform extends ModPlatform { if(server != null) { - LifecycleBiomeUtil.registerBiomes(server.getRegistryManager().get(RegistryKeys.BIOME)); + LifecycleBiomeUtil.registerBiomes(server.getRegistryManager().getOrThrow(RegistryKeys.BIOME)); server.reloadResources(server.getDataPackManager().getEnabledIds()).exceptionally(throwable -> { LOGGER.warn("Failed to execute reload", throwable); return null; diff --git a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/LifecycleBiomeUtil.java b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/LifecycleBiomeUtil.java index a77a7bbb5..c86e71165 100644 --- a/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/LifecycleBiomeUtil.java +++ b/platforms/mixin-lifecycle/src/main/java/com/dfsek/terra/lifecycle/util/LifecycleBiomeUtil.java @@ -57,7 +57,7 @@ public final class LifecycleBiomeUtil { } else { VanillaBiomeProperties vanillaBiomeProperties = biome.getContext().get(VanillaBiomeProperties.class); - net.minecraft.world.biome.Biome minecraftBiome = BiomeUtil.createBiome(biome, Objects.requireNonNull(registry.get(vanilla)), + net.minecraft.world.biome.Biome minecraftBiome = BiomeUtil.createBiome(Objects.requireNonNull(registry.get(vanilla)), vanillaBiomeProperties); Identifier identifier = Identifier.of("terra", BiomeUtil.createBiomeID(pack, id)); From 710bbc33c9db42d7e2ffac11e0bcc21822b65545 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Tue, 29 Oct 2024 15:49:45 -0600 Subject: [PATCH 122/136] Refractor bukkit to v1_21_3 --- platforms/bukkit/build.gradle.kts | 2 +- .../main/java/com/dfsek/terra/bukkit/TerraBukkitPlugin.java | 2 +- .../main/java/com/dfsek/terra/bukkit/nms/Initializer.java | 3 --- platforms/bukkit/nms/{v1_21 => v1_21_3}/build.gradle.kts | 0 .../dfsek/terra/bukkit/nms/v1_21_3}/AwfulBukkitHacks.java | 4 ++-- .../java/com/dfsek/terra/bukkit/nms/v1_21_3}/NMSAddon.java | 4 ++-- .../com/dfsek/terra/bukkit/nms/v1_21_3}/NMSBiomeInfo.java | 2 +- .../dfsek/terra/bukkit/nms/v1_21_3}/NMSBiomeInjector.java | 4 ++-- .../dfsek/terra/bukkit/nms/v1_21_3}/NMSBiomeProvider.java | 2 +- .../terra/bukkit/nms/v1_21_3}/NMSChunkGeneratorDelegate.java | 2 +- .../com/dfsek/terra/bukkit/nms/v1_21_3}/NMSInitializer.java | 2 +- .../dfsek/terra/bukkit/nms/v1_21_3}/NMSInjectListener.java | 3 +-- .../dfsek/terra/bukkit/nms/v1_21_3}/NMSWorldProperties.java | 2 +- .../java/com/dfsek/terra/bukkit/nms/v1_21_3}/Reflection.java | 2 +- .../com/dfsek/terra/bukkit/nms/v1_21_3}/RegistryFetcher.java | 2 +- .../nms/v1_21_3}/config/BiomeAdditionsSoundTemplate.java | 2 +- .../bukkit/nms/v1_21_3}/config/BiomeMoodSoundTemplate.java | 2 +- .../nms/v1_21_3}/config/BiomeParticleConfigTemplate.java | 2 +- .../terra/bukkit/nms/v1_21_3}/config/EntityTypeTemplate.java | 3 +-- .../terra/bukkit/nms/v1_21_3}/config/MusicSoundTemplate.java | 2 +- .../terra/bukkit/nms/v1_21_3}/config/SoundEventTemplate.java | 2 +- .../terra/bukkit/nms/v1_21_3}/config/SpawnCostConfig.java | 2 +- .../terra/bukkit/nms/v1_21_3}/config/SpawnEntryTemplate.java | 2 +- .../bukkit/nms/v1_21_3}/config/SpawnSettingsTemplate.java | 2 +- .../terra/bukkit/nms/v1_21_3}/config/SpawnTypeConfig.java | 2 +- .../bukkit/nms/v1_21_3}/config/VanillaBiomeProperties.java | 2 +- .../bukkit/nms/v1_21_3}/config/VillagerTypeTemplate.java | 5 +---- 27 files changed, 28 insertions(+), 36 deletions(-) rename platforms/bukkit/nms/{v1_21 => v1_21_3}/build.gradle.kts (100%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/AwfulBukkitHacks.java (97%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/NMSAddon.java (88%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/NMSBiomeInfo.java (83%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/NMSBiomeInjector.java (97%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/NMSBiomeProvider.java (97%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/NMSChunkGeneratorDelegate.java (99%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/NMSInitializer.java (92%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/NMSInjectListener.java (96%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/NMSWorldProperties.java (94%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/Reflection.java (98%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/RegistryFetcher.java (95%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/config/BiomeAdditionsSoundTemplate.java (94%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/config/BiomeMoodSoundTemplate.java (95%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/config/BiomeParticleConfigTemplate.java (96%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/config/EntityTypeTemplate.java (88%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/config/MusicSoundTemplate.java (95%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/config/SoundEventTemplate.java (94%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/config/SpawnCostConfig.java (94%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/config/SpawnEntryTemplate.java (94%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/config/SpawnSettingsTemplate.java (96%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/config/SpawnTypeConfig.java (93%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/config/VanillaBiomeProperties.java (98%) rename platforms/bukkit/nms/{v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21 => v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3}/config/VillagerTypeTemplate.java (78%) diff --git a/platforms/bukkit/build.gradle.kts b/platforms/bukkit/build.gradle.kts index 08a75dc12..8af6d00c3 100644 --- a/platforms/bukkit/build.gradle.kts +++ b/platforms/bukkit/build.gradle.kts @@ -4,7 +4,7 @@ plugins { dependencies { shaded(project(":platforms:bukkit:common")) - shaded(project(":platforms:bukkit:nms:v1_21", configuration = "reobf")) + shaded(project(":platforms:bukkit:nms:v1_21_3", configuration = "reobf")) shaded("xyz.jpenilla", "reflection-remapper", Versions.Bukkit.reflectionRemapper) } diff --git a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/TerraBukkitPlugin.java b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/TerraBukkitPlugin.java index e3bc1d837..1ebd8de52 100644 --- a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/TerraBukkitPlugin.java +++ b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/TerraBukkitPlugin.java @@ -194,7 +194,7 @@ public class TerraBukkitPlugin extends JavaPlugin { @Override public @Nullable ChunkGenerator getDefaultWorldGenerator(@NotNull String worldName, String id) { - if(id == null || id.trim().equals("")) { return null; } + if(id == null || id.trim().isEmpty()) { return null; } return new BukkitChunkGeneratorWrapper(generatorMap.computeIfAbsent(worldName, name -> { ConfigPack pack = platform.getConfigRegistry().getByID(id).orElseThrow( () -> new IllegalArgumentException("No such config pack \"" + id + "\"")); diff --git a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/nms/Initializer.java b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/nms/Initializer.java index c29fa1e1b..6e241d3d6 100644 --- a/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/nms/Initializer.java +++ b/platforms/bukkit/common/src/main/java/com/dfsek/terra/bukkit/nms/Initializer.java @@ -54,9 +54,6 @@ public interface Initializer { private static Initializer constructInitializer() { try { String packageVersion = NMS; - if(NMS.equals("v1_21_3")) { - packageVersion = "v1_21"; // TODO: Refactor nms package to v1_21_3 - } Class initializerClass = Class.forName(TERRA_PACKAGE + "." + packageVersion + ".NMSInitializer"); try { diff --git a/platforms/bukkit/nms/v1_21/build.gradle.kts b/platforms/bukkit/nms/v1_21_3/build.gradle.kts similarity index 100% rename from platforms/bukkit/nms/v1_21/build.gradle.kts rename to platforms/bukkit/nms/v1_21_3/build.gradle.kts diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/AwfulBukkitHacks.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java similarity index 97% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/AwfulBukkitHacks.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java index adb0e21ee..993dd2114 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/AwfulBukkitHacks.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java @@ -1,6 +1,6 @@ -package com.dfsek.terra.bukkit.nms.v1_21; +package com.dfsek.terra.bukkit.nms.v1_21_3; -import com.dfsek.terra.bukkit.nms.v1_21.config.VanillaBiomeProperties; +import com.dfsek.terra.bukkit.nms.v1_21_3.config.VanillaBiomeProperties; import com.google.common.collect.ImmutableMap; import net.minecraft.core.Holder; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSAddon.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSAddon.java similarity index 88% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSAddon.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSAddon.java index 55be58c3b..539b7f97b 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSAddon.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSAddon.java @@ -1,11 +1,11 @@ -package com.dfsek.terra.bukkit.nms.v1_21; +package com.dfsek.terra.bukkit.nms.v1_21_3; import com.dfsek.terra.api.event.events.config.ConfigurationLoadEvent; import com.dfsek.terra.api.event.functional.FunctionalEventHandler; import com.dfsek.terra.api.world.biome.Biome; import com.dfsek.terra.bukkit.BukkitAddon; import com.dfsek.terra.bukkit.PlatformImpl; -import com.dfsek.terra.bukkit.nms.v1_21.config.VanillaBiomeProperties; +import com.dfsek.terra.bukkit.nms.v1_21_3.config.VanillaBiomeProperties; public class NMSAddon extends BukkitAddon { diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInfo.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSBiomeInfo.java similarity index 83% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInfo.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSBiomeInfo.java index 5bf85aa6d..de6e7a3ff 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInfo.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSBiomeInfo.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21; +package com.dfsek.terra.bukkit.nms.v1_21_3; import net.minecraft.resources.ResourceKey; import net.minecraft.world.level.biome.Biome; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSBiomeInjector.java similarity index 97% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSBiomeInjector.java index a428cee14..3304b3c65 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeInjector.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSBiomeInjector.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21; +package com.dfsek.terra.bukkit.nms.v1_21_3; import net.minecraft.core.Holder; import net.minecraft.core.Registry; @@ -11,7 +11,7 @@ import java.util.Objects; import java.util.Optional; import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.bukkit.nms.v1_21.config.VanillaBiomeProperties; +import com.dfsek.terra.bukkit.nms.v1_21_3.config.VanillaBiomeProperties; public class NMSBiomeInjector { diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeProvider.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSBiomeProvider.java similarity index 97% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeProvider.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSBiomeProvider.java index ca2b0e8da..9cb08b61a 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSBiomeProvider.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSBiomeProvider.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21; +package com.dfsek.terra.bukkit.nms.v1_21_3; import com.mojang.serialization.MapCodec; import net.minecraft.core.Holder; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSChunkGeneratorDelegate.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSChunkGeneratorDelegate.java similarity index 99% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSChunkGeneratorDelegate.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSChunkGeneratorDelegate.java index fe4fa6a59..4df28da50 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSChunkGeneratorDelegate.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSChunkGeneratorDelegate.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21; +package com.dfsek.terra.bukkit.nms.v1_21_3; import com.mojang.serialization.MapCodec; import net.minecraft.core.BlockPos; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSInitializer.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSInitializer.java similarity index 92% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSInitializer.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSInitializer.java index 9e9ed7499..2ee41e82a 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSInitializer.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSInitializer.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21; +package com.dfsek.terra.bukkit.nms.v1_21_3; import com.dfsek.terra.bukkit.BukkitAddon; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSInjectListener.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSInjectListener.java similarity index 96% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSInjectListener.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSInjectListener.java index 9d73a9e98..95b041552 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSInjectListener.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSInjectListener.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21; +package com.dfsek.terra.bukkit.nms.v1_21_3; import net.minecraft.server.level.ChunkMap; import net.minecraft.server.level.ServerLevel; @@ -17,7 +17,6 @@ import java.util.Set; import java.util.concurrent.locks.ReentrantLock; import com.dfsek.terra.api.config.ConfigPack; -import com.dfsek.terra.api.util.reflection.ReflectionUtil; import com.dfsek.terra.bukkit.generator.BukkitChunkGeneratorWrapper; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSWorldProperties.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSWorldProperties.java similarity index 94% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSWorldProperties.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSWorldProperties.java index f0651cc54..0626c4e3d 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/NMSWorldProperties.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSWorldProperties.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21; +package com.dfsek.terra.bukkit.nms.v1_21_3; import net.minecraft.world.level.LevelHeightAccessor; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/Reflection.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java similarity index 98% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/Reflection.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java index 8d29b5158..79bf59372 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/Reflection.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21; +package com.dfsek.terra.bukkit.nms.v1_21_3; import net.minecraft.core.Holder; import net.minecraft.core.Holder.Reference; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/RegistryFetcher.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/RegistryFetcher.java similarity index 95% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/RegistryFetcher.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/RegistryFetcher.java index 249703ca8..b317f7c93 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/RegistryFetcher.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/RegistryFetcher.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21; +package com.dfsek.terra.bukkit.nms.v1_21_3; import net.minecraft.core.Registry; import net.minecraft.core.registries.Registries; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeAdditionsSoundTemplate.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/BiomeAdditionsSoundTemplate.java similarity index 94% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeAdditionsSoundTemplate.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/BiomeAdditionsSoundTemplate.java index 3f91d4a26..ee5781784 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeAdditionsSoundTemplate.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/BiomeAdditionsSoundTemplate.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21.config; +package com.dfsek.terra.bukkit.nms.v1_21_3.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeMoodSoundTemplate.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/BiomeMoodSoundTemplate.java similarity index 95% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeMoodSoundTemplate.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/BiomeMoodSoundTemplate.java index cf9e5ee76..1c67c7052 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeMoodSoundTemplate.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/BiomeMoodSoundTemplate.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21.config; +package com.dfsek.terra.bukkit.nms.v1_21_3.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeParticleConfigTemplate.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/BiomeParticleConfigTemplate.java similarity index 96% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeParticleConfigTemplate.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/BiomeParticleConfigTemplate.java index 1b5a93f8b..f62bd344d 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/BiomeParticleConfigTemplate.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/BiomeParticleConfigTemplate.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21.config; +package com.dfsek.terra.bukkit.nms.v1_21_3.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/EntityTypeTemplate.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/EntityTypeTemplate.java similarity index 88% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/EntityTypeTemplate.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/EntityTypeTemplate.java index f23dca692..ea9d002a4 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/EntityTypeTemplate.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/EntityTypeTemplate.java @@ -1,9 +1,8 @@ -package com.dfsek.terra.bukkit.nms.v1_21.config; +package com.dfsek.terra.bukkit.nms.v1_21_3.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; -import net.minecraft.core.Registry; import net.minecraft.core.registries.BuiltInRegistries; import net.minecraft.resources.ResourceLocation; import net.minecraft.world.entity.EntityType; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/MusicSoundTemplate.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/MusicSoundTemplate.java similarity index 95% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/MusicSoundTemplate.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/MusicSoundTemplate.java index 9fd0ce4c5..9342aec45 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/MusicSoundTemplate.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/MusicSoundTemplate.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21.config; +package com.dfsek.terra.bukkit.nms.v1_21_3.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SoundEventTemplate.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SoundEventTemplate.java similarity index 94% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SoundEventTemplate.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SoundEventTemplate.java index 9c266e45e..0c4052f87 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SoundEventTemplate.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SoundEventTemplate.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21.config; +package com.dfsek.terra.bukkit.nms.v1_21_3.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnCostConfig.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SpawnCostConfig.java similarity index 94% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnCostConfig.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SpawnCostConfig.java index 2df98194e..e14305d42 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnCostConfig.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SpawnCostConfig.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21.config; +package com.dfsek.terra.bukkit.nms.v1_21_3.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnEntryTemplate.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SpawnEntryTemplate.java similarity index 94% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnEntryTemplate.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SpawnEntryTemplate.java index 4ac181401..4b730f00f 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnEntryTemplate.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SpawnEntryTemplate.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21.config; +package com.dfsek.terra.bukkit.nms.v1_21_3.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnSettingsTemplate.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SpawnSettingsTemplate.java similarity index 96% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnSettingsTemplate.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SpawnSettingsTemplate.java index d22f4dbdf..7613d3205 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnSettingsTemplate.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SpawnSettingsTemplate.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21.config; +package com.dfsek.terra.bukkit.nms.v1_21_3.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnTypeConfig.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SpawnTypeConfig.java similarity index 93% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnTypeConfig.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SpawnTypeConfig.java index 835853236..4755a3a45 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/SpawnTypeConfig.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/SpawnTypeConfig.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21.config; +package com.dfsek.terra.bukkit.nms.v1_21_3.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VanillaBiomeProperties.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/VanillaBiomeProperties.java similarity index 98% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VanillaBiomeProperties.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/VanillaBiomeProperties.java index 2fbf119a8..5df5decf4 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VanillaBiomeProperties.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/VanillaBiomeProperties.java @@ -1,4 +1,4 @@ -package com.dfsek.terra.bukkit.nms.v1_21.config; +package com.dfsek.terra.bukkit.nms.v1_21_3.config; import com.dfsek.tectonic.api.config.template.ConfigTemplate; import com.dfsek.tectonic.api.config.template.annotations.Default; diff --git a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VillagerTypeTemplate.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/VillagerTypeTemplate.java similarity index 78% rename from platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VillagerTypeTemplate.java rename to platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/VillagerTypeTemplate.java index aca928812..cde3b531d 100644 --- a/platforms/bukkit/nms/v1_21/src/main/java/com/dfsek/terra/bukkit/nms/v1_21/config/VillagerTypeTemplate.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/config/VillagerTypeTemplate.java @@ -1,12 +1,9 @@ -package com.dfsek.terra.bukkit.nms.v1_21.config; +package com.dfsek.terra.bukkit.nms.v1_21_3.config; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; -import net.minecraft.core.Registry; -import net.minecraft.core.RegistryCodecs; import net.minecraft.core.registries.BuiltInRegistries; -import net.minecraft.core.registries.Registries; import net.minecraft.resources.ResourceLocation; import net.minecraft.world.entity.npc.VillagerType; From 4165224c51ac0262ed5c1c2dfd700f3b91d8133e Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Tue, 29 Oct 2024 16:04:55 -0600 Subject: [PATCH 123/136] Mark Cache Sampler Experimental --- .../addons/noise/config/templates/CacheSamplerTemplate.java | 3 +++ .../com/dfsek/terra/addons/noise/samplers/CacheSampler.java | 2 ++ 2 files changed, 5 insertions(+) diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java index 492f9ad5a..ba6f73bce 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/CacheSamplerTemplate.java @@ -7,7 +7,10 @@ import com.dfsek.terra.addons.noise.samplers.CacheSampler; import com.dfsek.terra.addons.noise.samplers.LinearHeightmapSampler; import com.dfsek.terra.api.noise.NoiseSampler; +import org.jetbrains.annotations.ApiStatus.Experimental; + +@Experimental public class CacheSamplerTemplate extends SamplerTemplate { @Value("sampler") @Default diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java index 59ff6a75a..169a3a807 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/CacheSampler.java @@ -11,10 +11,12 @@ import com.dfsek.terra.api.util.generic.pair.Pair.Mutable; import com.github.benmanes.caffeine.cache.Caffeine; import com.github.benmanes.caffeine.cache.LoadingCache; import com.github.benmanes.caffeine.cache.Scheduler; +import org.jetbrains.annotations.ApiStatus.Experimental; import static com.dfsek.terra.api.util.cache.CacheUtils.CACHE_EXECUTOR; +@Experimental public class CacheSampler implements NoiseSampler { private final NoiseSampler sampler; From 02fdcee705cfd9a4a0bec77a391b37cee62330a2 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Tue, 29 Oct 2024 20:24:32 -0600 Subject: [PATCH 124/136] Fix fabric --- .../mixin-common/src/main/resources/terra.common.mixins.json | 1 + 1 file changed, 1 insertion(+) diff --git a/platforms/mixin-common/src/main/resources/terra.common.mixins.json b/platforms/mixin-common/src/main/resources/terra.common.mixins.json index e25cb7da4..6cfe1161c 100644 --- a/platforms/mixin-common/src/main/resources/terra.common.mixins.json +++ b/platforms/mixin-common/src/main/resources/terra.common.mixins.json @@ -36,6 +36,7 @@ "implementations.terra.inventory.meta.ItemStackMetaMixin", "implementations.terra.world.ChunkRegionMixin", "implementations.terra.world.ServerWorldMixin", + "invoke.BiomeInvoker", "invoke.FluidBlockInvoker", "lifecycle.DataPackContentsMixin" ], From 5e43f0afef73b37387c1807a2b8e62a5a0c2a45f Mon Sep 17 00:00:00 2001 From: Astrash Date: Wed, 30 Oct 2024 12:34:47 +1100 Subject: [PATCH 125/136] Add support for Paralithic let expressions --- buildSrc/src/main/kotlin/Versions.kt | 2 +- .../dfsek/terra/addons/noise/NoiseAddon.java | 9 +++++--- .../config/templates/FunctionTemplate.java | 11 ++++++++++ .../noise/ExpressionFunctionTemplate.java | 8 +++++-- .../ExpressionNormalizerTemplate.java | 8 +++++-- .../normalizer/ExpressionNormalizer.java | 20 +++++++++++++++--- .../defined/UserDefinedFunction.java | 2 +- .../samplers/noise/ExpressionFunction.java | 5 +++-- .../DoublePredicateLoader.java | 10 ++++++++- .../numberpredicate/NumberPredicateAddon.java | 2 +- common/api/build.gradle.kts | 1 + .../dfsek/terra/api/config/ConfigPack.java | 4 ++++ .../dfsek/terra/config/GenericLoaders.java | 5 ++++- .../ExpressionParserOptionsTemplate.java | 21 +++++++++++++++++++ .../ConfigPackExpressionOptionsTemplate.java | 17 +++++++++++++++ .../terra/config/pack/ConfigPackImpl.java | 14 ++++++++++++- .../preprocessor/MetaNumberPreprocessor.java | 7 +++++-- .../base/src/test/java/MetaTest.java | 9 ++++---- 18 files changed, 131 insertions(+), 24 deletions(-) create mode 100644 common/implementation/base/src/main/java/com/dfsek/terra/config/loaders/ExpressionParserOptionsTemplate.java create mode 100644 common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackExpressionOptionsTemplate.java diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index e0c342bea..e3aaa3280 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -5,7 +5,7 @@ object Versions { object Libraries { const val tectonic = "4.2.1" - const val paralithic = "0.7.1" + const val paralithic = "0.8.1" const val strata = "1.3.2" const val cloud = "2.0.0" diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java index 24691d38f..0edaf9d17 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/NoiseAddon.java @@ -7,6 +7,7 @@ package com.dfsek.terra.addons.noise; +import com.dfsek.paralithic.eval.parser.Parser.ParseOptions; import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; import java.util.LinkedHashMap; @@ -88,6 +89,8 @@ public class NoiseAddon implements AddonInitializer { .getHandler(FunctionalEventHandler.class) .register(addon, ConfigPackPreLoadEvent.class) .then(event -> { + ParseOptions expressionParseOptions = event.getPack().getExpressionParseOptions(); + CheckedRegistry>> noiseRegistry = event.getPack().getOrCreateRegistry( NOISE_SAMPLER_TOKEN); event.getPack() @@ -98,7 +101,7 @@ public class NoiseAddon implements AddonInitializer { .applyLoader(DistanceSampler.DistanceFunction.class, (type, o, loader, depthTracker) -> DistanceSampler.DistanceFunction.valueOf((String) o)) .applyLoader(DimensionApplicableNoiseSampler.class, DimensionApplicableNoiseSampler::new) - .applyLoader(FunctionTemplate.class, FunctionTemplate::new) + .applyLoader(FunctionTemplate.class, () -> new FunctionTemplate(expressionParseOptions)) .applyLoader(CubicSpline.Point.class, CubicSplinePointTemplate::new) .applyLoader(DerivativeNoiseSampler.class, DerivativeNoiseSamplerTemplate::new); @@ -156,9 +159,9 @@ public class NoiseAddon implements AddonInitializer { Map packSamplers = new LinkedHashMap<>(); Map packFunctions = new LinkedHashMap<>(); - noiseRegistry.register(addon.key("EXPRESSION"), () -> new ExpressionFunctionTemplate(packSamplers, packFunctions)); + noiseRegistry.register(addon.key("EXPRESSION"), () -> new ExpressionFunctionTemplate(packSamplers, packFunctions, expressionParseOptions)); noiseRegistry.register(addon.key("EXPRESSION_NORMALIZER"), - () -> new ExpressionNormalizerTemplate(packSamplers, packFunctions)); + () -> new ExpressionNormalizerTemplate(packSamplers, packFunctions, expressionParseOptions)); NoiseConfigPackTemplate template = event.loadTemplate(new NoiseConfigPackTemplate()); packSamplers.putAll(template.getSamplers()); diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/FunctionTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/FunctionTemplate.java index 95005043a..1bed3f512 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/FunctionTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/FunctionTemplate.java @@ -7,6 +7,7 @@ package com.dfsek.terra.addons.noise.config.templates; +import com.dfsek.paralithic.eval.parser.Parser.ParseOptions; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; @@ -20,6 +21,8 @@ import com.dfsek.terra.api.config.meta.Meta; @SuppressWarnings("unused") public class FunctionTemplate implements ObjectTemplate { + private final ParseOptions parseOptions; + @Value("arguments") private List args; @@ -30,6 +33,10 @@ public class FunctionTemplate implements ObjectTemplate { @Default private @Meta LinkedHashMap functions = new LinkedHashMap<>(); + public FunctionTemplate(ParseOptions parseOptions) { + this.parseOptions = parseOptions; + } + @Override public FunctionTemplate get() { return this; @@ -47,6 +54,10 @@ public class FunctionTemplate implements ObjectTemplate { return functions; } + public ParseOptions getParseOptions() { + return parseOptions; + } + @Override public boolean equals(Object o) { if(this == o) return true; diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/ExpressionFunctionTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/ExpressionFunctionTemplate.java index 56a84f663..b9983dfe3 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/ExpressionFunctionTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/noise/ExpressionFunctionTemplate.java @@ -7,6 +7,7 @@ package com.dfsek.terra.addons.noise.config.templates.noise; +import com.dfsek.paralithic.eval.parser.Parser.ParseOptions; import com.dfsek.paralithic.eval.tokenizer.ParseException; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; @@ -29,6 +30,7 @@ import static com.dfsek.terra.addons.noise.paralithic.FunctionUtil.convertFuncti public class ExpressionFunctionTemplate extends SamplerTemplate { private final Map globalSamplers; private final Map globalFunctions; + private final ParseOptions parseOptions; @Value("variables") @Default private @Meta Map vars = new HashMap<>(); @@ -42,9 +44,11 @@ public class ExpressionFunctionTemplate extends SamplerTemplate functions = new LinkedHashMap<>(); public ExpressionFunctionTemplate(Map globalSamplers, - Map globalFunctions) { + Map globalFunctions, + ParseOptions parseOptions) { this.globalSamplers = globalSamplers; this.globalFunctions = globalFunctions; + this.parseOptions = parseOptions; } @Override @@ -54,7 +58,7 @@ public class ExpressionFunctionTemplate extends SamplerTemplate(globalSamplers); mergedSamplers.putAll(samplers); try { - return new ExpressionFunction(convertFunctionsAndSamplers(mergedFunctions, mergedSamplers), expression, vars); + return new ExpressionFunction(convertFunctionsAndSamplers(mergedFunctions, mergedSamplers), expression, vars, parseOptions); } catch(ParseException e) { throw new RuntimeException("Failed to parse expression.", e); } diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/ExpressionNormalizerTemplate.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/ExpressionNormalizerTemplate.java index 264c50f81..7f4d98d13 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/ExpressionNormalizerTemplate.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/config/templates/normalizer/ExpressionNormalizerTemplate.java @@ -7,6 +7,7 @@ package com.dfsek.terra.addons.noise.config.templates.normalizer; +import com.dfsek.paralithic.eval.parser.Parser.ParseOptions; import com.dfsek.paralithic.eval.tokenizer.ParseException; import com.dfsek.tectonic.api.config.template.annotations.Default; import com.dfsek.tectonic.api.config.template.annotations.Value; @@ -29,6 +30,7 @@ public class ExpressionNormalizerTemplate extends NormalizerTemplate globalSamplers; private final Map globalFunctions; + private final ParseOptions parseOptions; @Value("expression") private @Meta String expression; @@ -46,9 +48,11 @@ public class ExpressionNormalizerTemplate extends NormalizerTemplate functions = new LinkedHashMap<>(); public ExpressionNormalizerTemplate(Map globalSamplers, - Map globalFunctions) { + Map globalFunctions, + ParseOptions parseOptions) { this.globalSamplers = globalSamplers; this.globalFunctions = globalFunctions; + this.parseOptions = parseOptions; } @Override @@ -58,7 +62,7 @@ public class ExpressionNormalizerTemplate extends NormalizerTemplate(globalSamplers); mergedSamplers.putAll(samplers); try { - return new ExpressionNormalizer(function, convertFunctionsAndSamplers(mergedFunctions, mergedSamplers), expression, vars); + return new ExpressionNormalizer(function, convertFunctionsAndSamplers(mergedFunctions, mergedSamplers), expression, vars, parseOptions); } catch(ParseException e) { throw new RuntimeException("Failed to parse expression.", e); } diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/ExpressionNormalizer.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/ExpressionNormalizer.java index 68a5dc2d0..e6d25f2d5 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/ExpressionNormalizer.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/normalizer/ExpressionNormalizer.java @@ -2,10 +2,12 @@ package com.dfsek.terra.addons.noise.normalizer; import com.dfsek.paralithic.Expression; import com.dfsek.paralithic.eval.parser.Parser; +import com.dfsek.paralithic.eval.parser.Parser.ParseOptions; import com.dfsek.paralithic.eval.parser.Scope; import com.dfsek.paralithic.eval.tokenizer.ParseException; import com.dfsek.paralithic.functions.Function; +import java.util.Arrays; import java.util.Map; import com.dfsek.terra.api.noise.NoiseSampler; @@ -15,12 +17,24 @@ public class ExpressionNormalizer extends Normalizer { private final Expression expression; - public ExpressionNormalizer(NoiseSampler sampler, Map functions, String eq, Map vars) + public ExpressionNormalizer(NoiseSampler sampler, Map functions, String eq, Map vars, ParseOptions parseOptions) throws ParseException { super(sampler); - Parser p = new Parser(); + + Parser p = new Parser(parseOptions); Scope scope = new Scope(); - scope.addInvocationVariable("in"); + + // 'in' was used as the invocation variable but conflicts with + // the new 'in' keyword in Paralithic used to denote the end of a let + // expression. To maintain backwards compatibility but also enable the use + // of let expressions, if they're enabled then use the longer 'input' + // invocation variable instead. + if (parseOptions.useLetExpressions()) { + scope.addInvocationVariable("input"); + } else { + scope.addInvocationVariable("in"); + } + vars.forEach(scope::create); functions.forEach(p::registerFunction); expression = p.parse(eq, scope); diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/defined/UserDefinedFunction.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/defined/UserDefinedFunction.java index 638af0473..e3d496f58 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/defined/UserDefinedFunction.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/paralithic/defined/UserDefinedFunction.java @@ -35,7 +35,7 @@ public class UserDefinedFunction implements DynamicFunction { public static UserDefinedFunction newInstance(FunctionTemplate template) throws ParseException { UserDefinedFunction function = CACHE.get(template); if(function == null) { - Parser parser = new Parser(); + Parser parser = new Parser(template.getParseOptions()); Scope parent = new Scope(); Scope functionScope = new Scope().withParent(parent); diff --git a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/ExpressionFunction.java b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/ExpressionFunction.java index 0b70933eb..3a7b71f6e 100644 --- a/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/ExpressionFunction.java +++ b/common/addons/config-noise-function/src/main/java/com/dfsek/terra/addons/noise/samplers/noise/ExpressionFunction.java @@ -9,6 +9,7 @@ package com.dfsek.terra.addons.noise.samplers.noise; import com.dfsek.paralithic.Expression; import com.dfsek.paralithic.eval.parser.Parser; +import com.dfsek.paralithic.eval.parser.Parser.ParseOptions; import com.dfsek.paralithic.eval.parser.Scope; import com.dfsek.paralithic.eval.tokenizer.ParseException; import com.dfsek.paralithic.functions.Function; @@ -24,8 +25,8 @@ import com.dfsek.terra.addons.noise.paralithic.noise.SeedContext; public class ExpressionFunction extends NoiseFunction { private final Expression expression; - public ExpressionFunction(Map functions, String eq, Map vars) throws ParseException { - Parser p = new Parser(); + public ExpressionFunction(Map functions, String eq, Map vars, ParseOptions parseOptions) throws ParseException { + Parser p = new Parser(parseOptions); Scope scope = new Scope(); scope.addInvocationVariable("x"); diff --git a/common/addons/config-number-predicate/src/main/java/com/dfsek/terra/addons/numberpredicate/DoublePredicateLoader.java b/common/addons/config-number-predicate/src/main/java/com/dfsek/terra/addons/numberpredicate/DoublePredicateLoader.java index a9528d31b..f3ba0231b 100644 --- a/common/addons/config-number-predicate/src/main/java/com/dfsek/terra/addons/numberpredicate/DoublePredicateLoader.java +++ b/common/addons/config-number-predicate/src/main/java/com/dfsek/terra/addons/numberpredicate/DoublePredicateLoader.java @@ -2,6 +2,7 @@ package com.dfsek.terra.addons.numberpredicate; import com.dfsek.paralithic.Expression; import com.dfsek.paralithic.eval.parser.Parser; +import com.dfsek.paralithic.eval.parser.Parser.ParseOptions; import com.dfsek.paralithic.eval.parser.Scope; import com.dfsek.paralithic.eval.tokenizer.ParseException; import com.dfsek.tectonic.api.depth.DepthTracker; @@ -15,6 +16,13 @@ import java.util.function.DoublePredicate; public class DoublePredicateLoader implements TypeLoader { + + private final ParseOptions parseOptions; + + public DoublePredicateLoader(ParseOptions parseOptions) { + this.parseOptions = parseOptions; + } + @Override public DoublePredicate load(@NotNull AnnotatedType annotatedType, @NotNull Object o, @NotNull ConfigLoader configLoader, DepthTracker depthTracker) throws LoadException { @@ -22,7 +30,7 @@ public class DoublePredicateLoader implements TypeLoader { Scope scope = new Scope(); scope.addInvocationVariable("value"); try { - Expression expression = new Parser().parse(expressionString, scope); + Expression expression = new Parser(parseOptions).parse(expressionString, scope); return d -> expression.evaluate(d) != 0; // Paralithic expressions treat '!= 0' as true } catch(ParseException e) { throw new LoadException("Failed to parse double predicate expression", e, depthTracker); diff --git a/common/addons/config-number-predicate/src/main/java/com/dfsek/terra/addons/numberpredicate/NumberPredicateAddon.java b/common/addons/config-number-predicate/src/main/java/com/dfsek/terra/addons/numberpredicate/NumberPredicateAddon.java index f14c6fc9a..b9c2957d2 100644 --- a/common/addons/config-number-predicate/src/main/java/com/dfsek/terra/addons/numberpredicate/NumberPredicateAddon.java +++ b/common/addons/config-number-predicate/src/main/java/com/dfsek/terra/addons/numberpredicate/NumberPredicateAddon.java @@ -30,7 +30,7 @@ public class NumberPredicateAddon implements AddonInitializer { plugin.getEventManager() .getHandler(FunctionalEventHandler.class) .register(addon, ConfigPackPreLoadEvent.class) - .then(event -> event.getPack().applyLoader(DoublePredicate.class, new DoublePredicateLoader())) + .then(event -> event.getPack().applyLoader(DoublePredicate.class, new DoublePredicateLoader(event.getPack().getExpressionParseOptions()))) .priority(50) .failThrough(); } diff --git a/common/api/build.gradle.kts b/common/api/build.gradle.kts index 898f8bdcd..1f99839bd 100644 --- a/common/api/build.gradle.kts +++ b/common/api/build.gradle.kts @@ -8,4 +8,5 @@ dependencies { api("com.github.ben-manes.caffeine", "caffeine", Versions.Libraries.caffeine) + api("com.dfsek", "paralithic", Versions.Libraries.paralithic) } \ No newline at end of file diff --git a/common/api/src/main/java/com/dfsek/terra/api/config/ConfigPack.java b/common/api/src/main/java/com/dfsek/terra/api/config/ConfigPack.java index b3edb2c9c..c9d2e2d68 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/config/ConfigPack.java +++ b/common/api/src/main/java/com/dfsek/terra/api/config/ConfigPack.java @@ -13,6 +13,8 @@ import ca.solostudios.strata.version.VersionRange; import java.util.List; import java.util.Map; +import com.dfsek.paralithic.eval.parser.Parser.ParseOptions; + import com.dfsek.terra.api.addon.BaseAddon; import com.dfsek.terra.api.properties.PropertyHolder; import com.dfsek.terra.api.registry.key.Keyed; @@ -49,6 +51,8 @@ public interface ConfigPack extends LoaderRegistrar, Version getVersion(); + ParseOptions getExpressionParseOptions(); + ConfigPack registerShortcut(TypeKey clazz, String shortcut, ShortcutLoader loader); default ConfigPack registerShortcut(Class clazz, String shortcut, ShortcutLoader loader) { diff --git a/common/implementation/base/src/main/java/com/dfsek/terra/config/GenericLoaders.java b/common/implementation/base/src/main/java/com/dfsek/terra/config/GenericLoaders.java index 948db5f18..25ddf62ec 100644 --- a/common/implementation/base/src/main/java/com/dfsek/terra/config/GenericLoaders.java +++ b/common/implementation/base/src/main/java/com/dfsek/terra/config/GenericLoaders.java @@ -19,6 +19,7 @@ package com.dfsek.terra.config; import ca.solostudios.strata.version.Version; import ca.solostudios.strata.version.VersionRange; +import com.dfsek.paralithic.eval.parser.Parser.ParseOptions; import com.dfsek.tectonic.api.TypeRegistry; import java.util.LinkedHashMap; @@ -31,6 +32,7 @@ import com.dfsek.terra.api.tectonic.LoaderRegistrar; import com.dfsek.terra.api.util.Range; import com.dfsek.terra.api.util.collection.MaterialSet; import com.dfsek.terra.api.util.collection.ProbabilityCollection; +import com.dfsek.terra.config.loaders.ExpressionParserOptionsTemplate; import com.dfsek.terra.config.loaders.LinkedHashMapLoader; import com.dfsek.terra.config.loaders.MaterialSetLoader; import com.dfsek.terra.config.loaders.ProbabilityCollectionLoader; @@ -53,7 +55,8 @@ public class GenericLoaders implements LoaderRegistrar { .registerLoader(Version.class, new VersionLoader()) .registerLoader(MaterialSet.class, new MaterialSetLoader()) .registerLoader(VersionRange.class, new VersionRangeLoader()) - .registerLoader(LinkedHashMap.class, new LinkedHashMapLoader()); + .registerLoader(LinkedHashMap.class, new LinkedHashMapLoader()) + .registerLoader(ParseOptions.class, ExpressionParserOptionsTemplate::new); if(platform != null) { registry.registerLoader(BaseAddon.class, platform.getAddons()) diff --git a/common/implementation/base/src/main/java/com/dfsek/terra/config/loaders/ExpressionParserOptionsTemplate.java b/common/implementation/base/src/main/java/com/dfsek/terra/config/loaders/ExpressionParserOptionsTemplate.java new file mode 100644 index 000000000..caa74e402 --- /dev/null +++ b/common/implementation/base/src/main/java/com/dfsek/terra/config/loaders/ExpressionParserOptionsTemplate.java @@ -0,0 +1,21 @@ +package com.dfsek.terra.config.loaders; + +import com.dfsek.paralithic.eval.parser.Parser.ParseOptions; +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; +import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; + + +public class ExpressionParserOptionsTemplate implements ObjectTemplate { + + private static final ParseOptions DEFAULT_PARSE_OPTIONS = new ParseOptions(); + + @Value("use-let-expressions") + @Default + private boolean useLetExpressions = DEFAULT_PARSE_OPTIONS.useLetExpressions(); + + @Override + public ParseOptions get() { + return new ParseOptions(useLetExpressions); + } +} diff --git a/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackExpressionOptionsTemplate.java b/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackExpressionOptionsTemplate.java new file mode 100644 index 000000000..a4dcf2155 --- /dev/null +++ b/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackExpressionOptionsTemplate.java @@ -0,0 +1,17 @@ +package com.dfsek.terra.config.pack; + +import com.dfsek.paralithic.eval.parser.Parser.ParseOptions; +import com.dfsek.tectonic.api.config.template.ConfigTemplate; +import com.dfsek.tectonic.api.config.template.annotations.Default; +import com.dfsek.tectonic.api.config.template.annotations.Value; + + +public class ConfigPackExpressionOptionsTemplate implements ConfigTemplate { + @Value("expressions.options") + @Default + private ParseOptions parseOptions = new ParseOptions(); + + public ParseOptions getParseOptions() { + return parseOptions; + } +} diff --git a/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackImpl.java b/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackImpl.java index a03584e3f..50e0ad154 100644 --- a/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackImpl.java +++ b/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackImpl.java @@ -19,6 +19,7 @@ package com.dfsek.terra.config.pack; import ca.solostudios.strata.version.Version; import ca.solostudios.strata.version.VersionRange; +import com.dfsek.paralithic.eval.parser.Parser.ParseOptions; import com.dfsek.tectonic.api.TypeRegistry; import com.dfsek.tectonic.api.config.Configuration; import com.dfsek.tectonic.api.config.template.object.ObjectTemplate; @@ -121,6 +122,8 @@ public class ConfigPackImpl implements ConfigPack { private final RegistryKey key; + private final ParseOptions parseOptions; + public ConfigPackImpl(File folder, Platform platform) { this(new FolderLoader(folder.toPath()), Construct.construct(() -> { try { @@ -176,6 +179,10 @@ public class ConfigPackImpl implements ConfigPack { selfLoader.load(template, packManifest); + ConfigPackExpressionOptionsTemplate expressionOptionsTemplate = new ConfigPackExpressionOptionsTemplate(); + selfLoader.load(expressionOptionsTemplate, packManifest); + this.parseOptions = expressionOptionsTemplate.getParseOptions(); + String namespace; String id; if(template.getID().contains(":")) { @@ -261,7 +268,7 @@ public class ConfigPackImpl implements ConfigPack { selfLoader.registerPreprocessor(Meta.class, valuePreprocessor); abstractConfigLoader.registerPreprocessor(Meta.class, valuePreprocessor); - MetaNumberPreprocessor numberPreprocessor = new MetaNumberPreprocessor(configurations); + MetaNumberPreprocessor numberPreprocessor = new MetaNumberPreprocessor(configurations, parseOptions); selfLoader.registerPreprocessor(Meta.class, numberPreprocessor); abstractConfigLoader.registerPreprocessor(Meta.class, numberPreprocessor); } @@ -362,6 +369,11 @@ public class ConfigPackImpl implements ConfigPack { return template.getVersion(); } + @Override + public ParseOptions getExpressionParseOptions() { + return parseOptions; + } + @SuppressWarnings("unchecked,rawtypes") @Override public ConfigPack registerShortcut(TypeKey clazz, String shortcut, ShortcutLoader loader) { diff --git a/common/implementation/base/src/main/java/com/dfsek/terra/config/preprocessor/MetaNumberPreprocessor.java b/common/implementation/base/src/main/java/com/dfsek/terra/config/preprocessor/MetaNumberPreprocessor.java index c823d7ec4..6a7c94763 100644 --- a/common/implementation/base/src/main/java/com/dfsek/terra/config/preprocessor/MetaNumberPreprocessor.java +++ b/common/implementation/base/src/main/java/com/dfsek/terra/config/preprocessor/MetaNumberPreprocessor.java @@ -18,6 +18,7 @@ package com.dfsek.terra.config.preprocessor; import com.dfsek.paralithic.eval.parser.Parser; +import com.dfsek.paralithic.eval.parser.Parser.ParseOptions; import com.dfsek.paralithic.eval.tokenizer.ParseException; import com.dfsek.tectonic.api.config.Configuration; import com.dfsek.tectonic.api.depth.DepthTracker; @@ -37,9 +38,11 @@ import java.util.Map; public class MetaNumberPreprocessor extends MetaPreprocessor { public static final TypeKey META_STRING_KEY = new TypeKey<@Meta String>() { }; + private final ParseOptions parseOptions; - public MetaNumberPreprocessor(Map configs) { + public MetaNumberPreprocessor(Map configs, ParseOptions parseOptions) { super(configs); + this.parseOptions = parseOptions; } private static boolean isNumber(Class clazz) { @@ -57,7 +60,7 @@ public class MetaNumberPreprocessor extends MetaPreprocessor { if(t.getType() instanceof Class && isNumber((Class) t.getType()) && c instanceof String) { String expression = (String) loader.loadType(META_STRING_KEY.getAnnotatedType(), c, depthTracker); try { - return (Result) Result.overwrite(new Parser().eval(expression), depthTracker); + return (Result) Result.overwrite(new Parser(parseOptions).eval(expression), depthTracker); } catch(ParseException e) { throw new LoadException("Invalid expression: ", e, depthTracker); } diff --git a/common/implementation/base/src/test/java/MetaTest.java b/common/implementation/base/src/test/java/MetaTest.java index 92ad15de1..b4e630d9b 100644 --- a/common/implementation/base/src/test/java/MetaTest.java +++ b/common/implementation/base/src/test/java/MetaTest.java @@ -1,3 +1,4 @@ +import com.dfsek.paralithic.eval.parser.Parser.ParseOptions; import com.dfsek.tectonic.api.config.Configuration; import com.dfsek.tectonic.api.config.template.ConfigTemplate; import com.dfsek.tectonic.api.config.template.annotations.Value; @@ -32,7 +33,7 @@ public class MetaTest { loader.registerPreprocessor(Meta.class, new MetaStringPreprocessor(configurationMap)); loader.registerPreprocessor(Meta.class, new MetaListLikePreprocessor(configurationMap)); loader.registerPreprocessor(Meta.class, new MetaMapPreprocessor(configurationMap)); - loader.registerPreprocessor(Meta.class, new MetaNumberPreprocessor(configurationMap)); + loader.registerPreprocessor(Meta.class, new MetaNumberPreprocessor(configurationMap, new ParseOptions())); loader.registerPreprocessor(Meta.class, new MetaValuePreprocessor(configurationMap)); @@ -53,7 +54,7 @@ public class MetaTest { loader.registerPreprocessor(Meta.class, new MetaStringPreprocessor(configurationMap)); loader.registerPreprocessor(Meta.class, new MetaListLikePreprocessor(configurationMap)); loader.registerPreprocessor(Meta.class, new MetaMapPreprocessor(configurationMap)); - loader.registerPreprocessor(Meta.class, new MetaNumberPreprocessor(configurationMap)); + loader.registerPreprocessor(Meta.class, new MetaNumberPreprocessor(configurationMap, new ParseOptions())); loader.registerPreprocessor(Meta.class, new MetaValuePreprocessor(configurationMap)); @@ -75,7 +76,7 @@ public class MetaTest { loader.registerPreprocessor(Meta.class, new MetaStringPreprocessor(configurationMap)); loader.registerPreprocessor(Meta.class, new MetaListLikePreprocessor(configurationMap)); loader.registerPreprocessor(Meta.class, new MetaMapPreprocessor(configurationMap)); - loader.registerPreprocessor(Meta.class, new MetaNumberPreprocessor(configurationMap)); + loader.registerPreprocessor(Meta.class, new MetaNumberPreprocessor(configurationMap, new ParseOptions())); loader.registerPreprocessor(Meta.class, new MetaValuePreprocessor(configurationMap)); @@ -96,7 +97,7 @@ public class MetaTest { loader.registerPreprocessor(Meta.class, new MetaStringPreprocessor(configurationMap)); loader.registerPreprocessor(Meta.class, new MetaListLikePreprocessor(configurationMap)); loader.registerPreprocessor(Meta.class, new MetaMapPreprocessor(configurationMap)); - loader.registerPreprocessor(Meta.class, new MetaNumberPreprocessor(configurationMap)); + loader.registerPreprocessor(Meta.class, new MetaNumberPreprocessor(configurationMap, new ParseOptions())); loader.registerPreprocessor(Meta.class, new MetaValuePreprocessor(configurationMap)); From 2c8d3416abbf7c5fe3f4561de5fe2b0e6a8bc244 Mon Sep 17 00:00:00 2001 From: Astrash Date: Wed, 30 Oct 2024 12:39:05 +1100 Subject: [PATCH 126/136] Load parse options before registering metaconfig --- .../java/com/dfsek/terra/config/pack/ConfigPackImpl.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackImpl.java b/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackImpl.java index 50e0ad154..8aa12c790 100644 --- a/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackImpl.java +++ b/common/implementation/base/src/main/java/com/dfsek/terra/config/pack/ConfigPackImpl.java @@ -171,6 +171,11 @@ public class ConfigPackImpl implements ConfigPack { selfLoader.load(addonsTemplate, packManifest); this.addons = addonsTemplate.getAddons(); + ConfigPackExpressionOptionsTemplate expressionOptionsTemplate = new ConfigPackExpressionOptionsTemplate(); + selfLoader.load(expressionOptionsTemplate, packManifest); + this.parseOptions = expressionOptionsTemplate.getParseOptions(); + + Map configurations = discoverConfigurations(); registerMeta(configurations); @@ -179,10 +184,6 @@ public class ConfigPackImpl implements ConfigPack { selfLoader.load(template, packManifest); - ConfigPackExpressionOptionsTemplate expressionOptionsTemplate = new ConfigPackExpressionOptionsTemplate(); - selfLoader.load(expressionOptionsTemplate, packManifest); - this.parseOptions = expressionOptionsTemplate.getParseOptions(); - String namespace; String id; if(template.getID().contains(":")) { From 4fd84a3f2d3bf57c4f0a690e780f46fa8ec31493 Mon Sep 17 00:00:00 2001 From: Zoe Gidiere Date: Thu, 31 Oct 2024 13:42:41 -0600 Subject: [PATCH 127/136] Fix paralithic relocating --- buildSrc/src/main/kotlin/DistributionConfig.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/buildSrc/src/main/kotlin/DistributionConfig.kt b/buildSrc/src/main/kotlin/DistributionConfig.kt index 0a1c2d060..a31588a51 100644 --- a/buildSrc/src/main/kotlin/DistributionConfig.kt +++ b/buildSrc/src/main/kotlin/DistributionConfig.kt @@ -133,7 +133,6 @@ fun Project.configureDistribution() { version = project.version relocate("org.apache.commons", "com.dfsek.terra.lib.commons") relocate("org.objectweb.asm", "com.dfsek.terra.lib.asm") - relocate("com.dfsek.paralithic", "com.dfsek.terra.lib.paralithic") relocate("org.json", "com.dfsek.terra.lib.json") relocate("org.yaml", "com.dfsek.terra.lib.yaml") From f5bbaa3c3a17f624e8deb33973bad854341d47c0 Mon Sep 17 00:00:00 2001 From: OakLoaf Date: Fri, 1 Nov 2024 11:57:35 +0000 Subject: [PATCH 128/136] Corrected class proxy --- .../com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java index 79bf59372..2da0011fd 100644 --- a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java @@ -27,7 +27,7 @@ public class Reflection { public static final ChunkMapProxy CHUNKMAP; - public static final HolderSetProxy HOLDER_SET; + public static final HolderSetNamedProxy HOLDER_SET; public static final BiomeProxy BIOME; static { @@ -39,7 +39,7 @@ public class Reflection { STRUCTURE_MANAGER = reflectionProxyFactory.reflectionProxy(StructureManagerProxy.class); REFERENCE = reflectionProxyFactory.reflectionProxy(ReferenceProxy.class); CHUNKMAP = reflectionProxyFactory.reflectionProxy(ChunkMapProxy.class); - HOLDER_SET = reflectionProxyFactory.reflectionProxy(HolderSetProxy.class); + HOLDER_SET = reflectionProxyFactory.reflectionProxy(HolderSetNamedProxy.class); BIOME = reflectionProxyFactory.reflectionProxy(BiomeProxy.class); } @@ -73,10 +73,10 @@ public class Reflection { void setWorldGenContext(ChunkMap instance, WorldGenContext worldGenContext); } - @Proxies(HolderSet.class) - public interface HolderSetProxy { + @Proxies(HolderSet.Named.class) + public interface HolderSetNamedProxy { @MethodName("contents") - List> invokeContents(HolderSet instance); + List> invokeContents(HolderSet.Named instance); } @Proxies(Biome.class) From 4f33b1182871dc881f8bbdb04a0a48dcb546e70b Mon Sep 17 00:00:00 2001 From: OakLoaf Date: Fri, 1 Nov 2024 12:02:09 +0000 Subject: [PATCH 129/136] Fixed issue with RegistryFetcher --- .../terra/bukkit/nms/v1_21_3/RegistryFetcher.java | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/RegistryFetcher.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/RegistryFetcher.java index b317f7c93..9266d4102 100644 --- a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/RegistryFetcher.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/RegistryFetcher.java @@ -3,22 +3,16 @@ package com.dfsek.terra.bukkit.nms.v1_21_3; import net.minecraft.core.Registry; import net.minecraft.core.registries.Registries; import net.minecraft.resources.ResourceKey; -import net.minecraft.server.dedicated.DedicatedServer; +import net.minecraft.server.MinecraftServer; import net.minecraft.sounds.SoundEvent; import net.minecraft.world.level.biome.Biome; -import org.bukkit.Bukkit; -import org.bukkit.craftbukkit.CraftServer; public class RegistryFetcher { private static Registry getRegistry(ResourceKey> key) { - CraftServer craftserver = (CraftServer) Bukkit.getServer(); - DedicatedServer dedicatedserver = craftserver.getServer(); - return dedicatedserver + return MinecraftServer.getServer() .registryAccess() - .get(key) - .orElseThrow() - .value(); + .lookupOrThrow(key); } public static Registry biomeRegistry() { From 3cd6aead64023e069c52bc5ddd3efbddfe52c35f Mon Sep 17 00:00:00 2001 From: OakLoaf Date: Fri, 1 Nov 2024 12:02:32 +0000 Subject: [PATCH 130/136] Changed biome registry casting --- .../dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java index 993dd2114..b8e256675 100644 --- a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java @@ -7,7 +7,6 @@ import net.minecraft.core.Holder; import net.minecraft.core.Holder.Reference; import net.minecraft.core.MappedRegistry; import net.minecraft.core.RegistrationInfo; -import net.minecraft.core.WritableRegistry; import net.minecraft.core.registries.Registries; import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; @@ -34,9 +33,9 @@ public class AwfulBukkitHacks { public static void registerBiomes(ConfigRegistry configRegistry) { try { LOGGER.info("Hacking biome registry..."); - WritableRegistry biomeRegistry = (WritableRegistry) RegistryFetcher.biomeRegistry(); + MappedRegistry biomeRegistry = (MappedRegistry) RegistryFetcher.biomeRegistry(); - Reflection.MAPPED_REGISTRY.setFrozen((MappedRegistry) biomeRegistry, false); + Reflection.MAPPED_REGISTRY.setFrozen(biomeRegistry, false); configRegistry.forEach(pack -> pack.getRegistry(com.dfsek.terra.api.world.biome.Biome.class).forEach((key, biome) -> { try { @@ -95,7 +94,7 @@ public class AwfulBukkitHacks { () -> LOGGER.error("No such biome: {}", tb))), () -> LOGGER.error("No vanilla biome: {}", vb))); - ((MappedRegistry) biomeRegistry).bindAllTagsToEmpty(); + biomeRegistry.bindAllTagsToEmpty(); ImmutableMap.copyOf(collect).forEach(biomeRegistry::bindTag); } catch(SecurityException | IllegalArgumentException exception) { From a385a432509ae38e383ccf6bff8cff85db47f107 Mon Sep 17 00:00:00 2001 From: OakLoaf Date: Fri, 1 Nov 2024 12:02:49 +0000 Subject: [PATCH 131/136] Moved registry unfreeze --- .../com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java index b8e256675..813d1768b 100644 --- a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java @@ -66,8 +66,6 @@ public class AwfulBukkitHacks { } })); - Reflection.MAPPED_REGISTRY.setFrozen((MappedRegistry) biomeRegistry, true); // freeze registry again :) - LOGGER.info("Doing tag garbage...."); Map, List>> collect = biomeRegistry .getTags() // streamKeysAndEntries @@ -97,6 +95,8 @@ public class AwfulBukkitHacks { biomeRegistry.bindAllTagsToEmpty(); ImmutableMap.copyOf(collect).forEach(biomeRegistry::bindTag); + Reflection.MAPPED_REGISTRY.setFrozen(biomeRegistry, true); // freeze registry again :) + } catch(SecurityException | IllegalArgumentException exception) { throw new RuntimeException(exception); } From 153f6e5a8707737dd5f1023f23e23400105504d7 Mon Sep 17 00:00:00 2001 From: OakLoaf Date: Fri, 1 Nov 2024 13:36:41 +0000 Subject: [PATCH 132/136] Recreated old reset tags method --- .../bukkit/nms/v1_21_3/AwfulBukkitHacks.java | 14 +++++++++++--- .../terra/bukkit/nms/v1_21_3/Reflection.java | 18 ++++++++++++++++++ 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java index 813d1768b..676c404eb 100644 --- a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java @@ -20,6 +20,7 @@ import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; +import java.util.Set; import com.dfsek.terra.bukkit.world.BukkitPlatformBiome; import com.dfsek.terra.registry.master.ConfigRegistry; @@ -35,8 +36,10 @@ public class AwfulBukkitHacks { LOGGER.info("Hacking biome registry..."); MappedRegistry biomeRegistry = (MappedRegistry) RegistryFetcher.biomeRegistry(); + // Unfreeze the biome registry to allow modification Reflection.MAPPED_REGISTRY.setFrozen(biomeRegistry, false); + // Register the terra biomes to the registry configRegistry.forEach(pack -> pack.getRegistry(com.dfsek.terra.api.world.biome.Biome.class).forEach((key, biome) -> { try { BukkitPlatformBiome platformBiome = (BukkitPlatformBiome) biome.getPlatformBiome(); @@ -66,6 +69,8 @@ public class AwfulBukkitHacks { } })); + Reflection.MAPPED_REGISTRY.setFrozen(biomeRegistry, true); // freeze registry again :) + LOGGER.info("Doing tag garbage...."); Map, List>> collect = biomeRegistry .getTags() // streamKeysAndEntries @@ -92,14 +97,17 @@ public class AwfulBukkitHacks { () -> LOGGER.error("No such biome: {}", tb))), () -> LOGGER.error("No vanilla biome: {}", vb))); - biomeRegistry.bindAllTagsToEmpty(); + resetTags(biomeRegistry); ImmutableMap.copyOf(collect).forEach(biomeRegistry::bindTag); - Reflection.MAPPED_REGISTRY.setFrozen(biomeRegistry, true); // freeze registry again :) - } catch(SecurityException | IllegalArgumentException exception) { throw new RuntimeException(exception); } } + + private static void resetTags(MappedRegistry registry) { + registry.getTags().forEach(entryList -> Reflection.HOLDER_SET.invokeBind(entryList, List.of())); + Reflection.MAPPED_REGISTRY.getByKey(registry).values().forEach(entry -> Reflection.HOLDER_REFERENCE.invokeBindTags(entry, Set.of())); + } } diff --git a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java index 2da0011fd..044fb479f 100644 --- a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java @@ -4,7 +4,9 @@ import net.minecraft.core.Holder; import net.minecraft.core.Holder.Reference; import net.minecraft.core.HolderSet; import net.minecraft.core.MappedRegistry; +import net.minecraft.resources.ResourceKey; import net.minecraft.server.level.ChunkMap; +import net.minecraft.tags.TagKey; import net.minecraft.world.level.LevelAccessor; import net.minecraft.world.level.StructureManager; import net.minecraft.world.level.biome.Biome; @@ -16,7 +18,9 @@ import xyz.jpenilla.reflectionremapper.proxy.annotation.FieldSetter; import xyz.jpenilla.reflectionremapper.proxy.annotation.MethodName; import xyz.jpenilla.reflectionremapper.proxy.annotation.Proxies; +import java.util.Collection; import java.util.List; +import java.util.Map; public class Reflection { @@ -27,6 +31,7 @@ public class Reflection { public static final ChunkMapProxy CHUNKMAP; + public static final HolderReferenceProxy HOLDER_REFERENCE; public static final HolderSetNamedProxy HOLDER_SET; public static final BiomeProxy BIOME; @@ -39,6 +44,7 @@ public class Reflection { STRUCTURE_MANAGER = reflectionProxyFactory.reflectionProxy(StructureManagerProxy.class); REFERENCE = reflectionProxyFactory.reflectionProxy(ReferenceProxy.class); CHUNKMAP = reflectionProxyFactory.reflectionProxy(ChunkMapProxy.class); + HOLDER_REFERENCE = reflectionProxyFactory.reflectionProxy(HolderReferenceProxy.class); HOLDER_SET = reflectionProxyFactory.reflectionProxy(HolderSetNamedProxy.class); BIOME = reflectionProxyFactory.reflectionProxy(BiomeProxy.class); } @@ -46,6 +52,9 @@ public class Reflection { @Proxies(MappedRegistry.class) public interface MappedRegistryProxy { + @FieldGetter("byKey") + Map, Reference> getByKey(MappedRegistry instance); + @FieldSetter("frozen") void setFrozen(MappedRegistry instance, boolean frozen); } @@ -73,8 +82,17 @@ public class Reflection { void setWorldGenContext(ChunkMap instance, WorldGenContext worldGenContext); } + @Proxies(Holder.Reference.class) + public interface HolderReferenceProxy { + @MethodName("bindTags") + void invokeBindTags(Holder.Reference instance, Collection> tags); + } + @Proxies(HolderSet.Named.class) public interface HolderSetNamedProxy { + @MethodName("bind") + void invokeBind(HolderSet.Named instance, List> entries); + @MethodName("contents") List> invokeContents(HolderSet.Named instance); } From a87ad8c966685bc50eb4ffe8c7c6bca706546444 Mon Sep 17 00:00:00 2001 From: OakLoaf Date: Fri, 1 Nov 2024 16:10:36 +0000 Subject: [PATCH 133/136] Bumped Paper version --- buildSrc/src/main/kotlin/Versions.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index e3aaa3280..1f1552512 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -56,7 +56,7 @@ object Versions { object Bukkit { const val minecraft = "1.21.3" - const val paperBuild = "$minecraft-R0.1-20241025.163321-1" + const val paperBuild = "$minecraft-R0.1-20241101.150401-13" const val paper = paperBuild const val paperLib = "1.0.8" const val reflectionRemapper = "0.1.1" From d4549643fcdbeefbe5e149c474e410d127f7877e Mon Sep 17 00:00:00 2001 From: OakLoaf Date: Fri, 1 Nov 2024 16:46:33 +0000 Subject: [PATCH 134/136] The definition of AwfulBukkitHacks --- .../bukkit/nms/v1_21_3/AwfulBukkitHacks.java | 42 ++++++++++++++++++- .../terra/bukkit/nms/v1_21_3/Reflection.java | 19 +++++++++ 2 files changed, 59 insertions(+), 2 deletions(-) diff --git a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java index 676c404eb..57a992670 100644 --- a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java @@ -2,9 +2,10 @@ package com.dfsek.terra.bukkit.nms.v1_21_3; import com.dfsek.terra.bukkit.nms.v1_21_3.config.VanillaBiomeProperties; -import com.google.common.collect.ImmutableMap; import net.minecraft.core.Holder; import net.minecraft.core.Holder.Reference; +import net.minecraft.core.HolderSet; +import net.minecraft.core.HolderSet.Named; import net.minecraft.core.MappedRegistry; import net.minecraft.core.RegistrationInfo; import net.minecraft.core.registries.Registries; @@ -18,9 +19,11 @@ import org.slf4j.LoggerFactory; import java.util.ArrayList; import java.util.HashMap; +import java.util.IdentityHashMap; import java.util.List; import java.util.Map; import java.util.Set; +import java.util.stream.Collectors; import com.dfsek.terra.bukkit.world.BukkitPlatformBiome; import com.dfsek.terra.registry.master.ConfigRegistry; @@ -98,13 +101,48 @@ public class AwfulBukkitHacks { () -> LOGGER.error("No vanilla biome: {}", vb))); resetTags(biomeRegistry); - ImmutableMap.copyOf(collect).forEach(biomeRegistry::bindTag); + bindTags(biomeRegistry, collect); +// ImmutableMap.copyOf(collect).forEach(biomeRegistry::bindTag); } catch(SecurityException | IllegalArgumentException exception) { throw new RuntimeException(exception); } } + private static void bindTags(MappedRegistry registry, Map, List>> tagEntries) { + Map, List>> map = new IdentityHashMap<>(); + Reflection.MAPPED_REGISTRY.getByKey(registry).values().forEach(entry -> map.put(entry, new ArrayList<>())); + tagEntries.forEach((tag, entries) -> { + for (Holder holder : entries) { +// if (!holder.canSerializeIn(registry.asLookup())) { +// throw new IllegalStateException("Can't create named set " + tag + " containing value " + holder + " from outside registry " + this); +// } + + if (!(holder instanceof Holder.Reference reference)) { + throw new IllegalStateException("Found direct holder " + holder + " value in tag " + tag); + } + + map.get(reference).add(tag); + } + }); +// Set> set = Sets.difference(registry.tags.keySet(), tagEntries.keySet()); +// if (!set.isEmpty()) { +// LOGGER.warn( +// "Not all defined tags for registry {} are present in data pack: {}", +// registry.key(), +// set.stream().map(tag -> tag.location().toString()).sorted().collect(Collectors.joining(", ")) +// ); +// } + + Map, HolderSet.Named> map2 = new IdentityHashMap<>(registry.getTags().collect(Collectors.toMap( + Named::key, + (named) -> named + ))); + tagEntries.forEach((tag, entries) -> Reflection.HOLDER_SET.invokeBind(map2.computeIfAbsent(tag, key -> Reflection.MAPPED_REGISTRY.invokeCreateTag(registry, key)), entries)); + map.forEach(Reflection.HOLDER_REFERENCE::invokeBindTags); + Reflection.MAPPED_REGISTRY.setAllTags(registry, Reflection.MAPPED_REGISTRY_TAG_SET.invokeFromMap(map2)); + } + private static void resetTags(MappedRegistry registry) { registry.getTags().forEach(entryList -> Reflection.HOLDER_SET.invokeBind(entryList, List.of())); Reflection.MAPPED_REGISTRY.getByKey(registry).values().forEach(entry -> Reflection.HOLDER_REFERENCE.invokeBindTags(entry, Set.of())); diff --git a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java index 044fb479f..8be29690c 100644 --- a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/Reflection.java @@ -17,6 +17,7 @@ import xyz.jpenilla.reflectionremapper.proxy.annotation.FieldGetter; import xyz.jpenilla.reflectionremapper.proxy.annotation.FieldSetter; import xyz.jpenilla.reflectionremapper.proxy.annotation.MethodName; import xyz.jpenilla.reflectionremapper.proxy.annotation.Proxies; +import xyz.jpenilla.reflectionremapper.proxy.annotation.Static; import java.util.Collection; import java.util.List; @@ -25,6 +26,7 @@ import java.util.Map; public class Reflection { public static final MappedRegistryProxy MAPPED_REGISTRY; + public static final MappedRegistryTagSetProxy MAPPED_REGISTRY_TAG_SET; public static final StructureManagerProxy STRUCTURE_MANAGER; public static final ReferenceProxy REFERENCE; @@ -41,6 +43,7 @@ public class Reflection { Reflection.class.getClassLoader()); MAPPED_REGISTRY = reflectionProxyFactory.reflectionProxy(MappedRegistryProxy.class); + MAPPED_REGISTRY_TAG_SET = reflectionProxyFactory.reflectionProxy(MappedRegistryTagSetProxy.class); STRUCTURE_MANAGER = reflectionProxyFactory.reflectionProxy(StructureManagerProxy.class); REFERENCE = reflectionProxyFactory.reflectionProxy(ReferenceProxy.class); CHUNKMAP = reflectionProxyFactory.reflectionProxy(ChunkMapProxy.class); @@ -55,8 +58,21 @@ public class Reflection { @FieldGetter("byKey") Map, Reference> getByKey(MappedRegistry instance); + @FieldSetter("allTags") + void setAllTags(MappedRegistry instance, Object obj); + @FieldSetter("frozen") void setFrozen(MappedRegistry instance, boolean frozen); + + @MethodName("createTag") + HolderSet.Named invokeCreateTag(MappedRegistry instance, TagKey tag); + } + + @Proxies(className = "net.minecraft.core.MappedRegistry$TagSet") + public interface MappedRegistryTagSetProxy { + @MethodName("fromMap") + @Static + Object invokeFromMap(Map, HolderSet.Named> map); } @@ -71,6 +87,9 @@ public class Reflection { public interface ReferenceProxy { @MethodName("bindValue") void invokeBindValue(Reference instance, T value); + + @MethodName("bindTags") + void invokeBindTags(Reference instance, Collection> tags); } @Proxies(ChunkMap.class) From 65e4c9a14971d48b942b7b5cbf97b5d80ae86765 Mon Sep 17 00:00:00 2001 From: OakLoaf Date: Fri, 1 Nov 2024 19:46:34 +0000 Subject: [PATCH 135/136] Removed comment --- .../com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java | 1 - 1 file changed, 1 deletion(-) diff --git a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java index 57a992670..c98037f07 100644 --- a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/AwfulBukkitHacks.java @@ -102,7 +102,6 @@ public class AwfulBukkitHacks { resetTags(biomeRegistry); bindTags(biomeRegistry, collect); -// ImmutableMap.copyOf(collect).forEach(biomeRegistry::bindTag); } catch(SecurityException | IllegalArgumentException exception) { throw new RuntimeException(exception); From 1d3c3807847a3c8569bb5cd3b1f3c15b41ddfa08 Mon Sep 17 00:00:00 2001 From: OakLoaf Date: Tue, 5 Nov 2024 16:50:04 +0000 Subject: [PATCH 136/136] Reverted to old methods grass and foliage color methods --- .../bukkit/nms/v1_21_3/NMSBiomeInjector.java | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSBiomeInjector.java b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSBiomeInjector.java index 3304b3c65..37848431a 100644 --- a/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSBiomeInjector.java +++ b/platforms/bukkit/nms/v1_21_3/src/main/java/com/dfsek/terra/bukkit/nms/v1_21_3/NMSBiomeInjector.java @@ -32,9 +32,21 @@ public class NMSBiomeInjector { .waterColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterColor(), vanilla.getWaterColor())) .waterFogColor(Objects.requireNonNullElse(vanillaBiomeProperties.getWaterFogColor(), vanilla.getWaterFogColor())) .skyColor(Objects.requireNonNullElse(vanillaBiomeProperties.getSkyColor(), vanilla.getSkyColor())) - .grassColorModifier(Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColorModifier(), vanilla.getSpecialEffects().getGrassColorModifier())) - .grassColorOverride(Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColor(), vanilla.getSpecialEffects().getGrassColorOverride().orElseGet(() -> Reflection.BIOME.invokeGrassColorFromTexture(vanilla)))) - .foliageColorOverride(Objects.requireNonNullElse(vanillaBiomeProperties.getFoliageColor(), vanilla.getFoliageColor())); + .grassColorModifier(Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColorModifier(), vanilla.getSpecialEffects().getGrassColorModifier())); +// .grassColorOverride(Objects.requireNonNullElse(vanillaBiomeProperties.getGrassColor(), vanilla.getSpecialEffects().getGrassColorOverride().orElseGet(() -> Reflection.BIOME.invokeGrassColorFromTexture(vanilla)))) +// .foliageColorOverride(Objects.requireNonNullElse(vanillaBiomeProperties.getFoliageColor(), vanilla.getFoliageColor())); + + if(vanillaBiomeProperties.getGrassColor() == null) { + vanilla.getSpecialEffects().getGrassColorOverride().ifPresent(effects::grassColorOverride); + } else { + effects.grassColorOverride(vanillaBiomeProperties.getGrassColor()); + } + + if(vanillaBiomeProperties.getFoliageColor() == null) { + vanilla.getSpecialEffects().getFoliageColorOverride().ifPresent(effects::foliageColorOverride); + } else { + effects.foliageColorOverride(vanillaBiomeProperties.getFoliageColor()); + } if(vanillaBiomeProperties.getParticleConfig() == null) { vanilla.getSpecialEffects().getAmbientParticleSettings().ifPresent(effects::ambientParticle);